7) Write a python program to scrape mentioned news details from https://www.cnbc.com/world/?region=world : i) Headline ii) Time iii) News Link
from bs4 import BeautifulSoup
import requests
import re
url=requests.get("https://www.cnbc.com/world/?region=world")
url
<Response [200]>
soup=BeautifulSoup(url.text,'html.parser')
soup
<!DOCTYPE html>
<html itemscope="" itemtype="https://schema.org/WebPage" lang="en" prefix="og=https://ogp.me/ns#"><head><link as="font" crossorigin="anonymous" href="https://static-redesign.cnbcfm.com/dist/icomoon.ttf" rel="preload" type="font/ttf"/><link as="font" crossorigin="anonymous" href="https://static-redesign.cnbcfm.com/dist/351C86_0_0.woff2" rel="preload" type="font/woff2"/><link as="font" crossorigin="anonymous" href="https://static-redesign.cnbcfm.com/dist/351C86_1_0.woff2" rel="preload" type="font/woff2"/><link as="font" crossorigin="anonymous" href="https://static-redesign.cnbcfm.com/dist/351C86_2_0.woff2" rel="preload" type="font/woff2"/><link as="font" crossorigin="anonymous" href="https://static-redesign.cnbcfm.com/dist/351C86_3_0.woff2" rel="preload" type="font/woff2"/><link as="font" crossorigin="anonymous" href="https://static-redesign.cnbcfm.com/dist/351C86_4_0.woff2" rel="preload" type="font/woff2"/><link as="font" crossorigin="anonymous" href="https://static-redesign.cnbcfm.com/dist/LyonText-Bold-Web.woff2" rel="preload" type="font/woff2"/><link as="font" crossorigin="anonymous" href="https://static-redesign.cnbcfm.com/dist/LyonText-Regular-Web.woff2" rel="preload" type="font/woff2"/><meta content="telephone=no" name="format-detection"/><style type="text/css">@charset "UTF-8";.RecaptchaAcknowledgement-acknowledgement{color:#747474;flex:1;font-size:11px;font-weight:600;line-height:15px;margin-bottom:7px;margin-top:24px;width:100%}.RecaptchaAcknowledgement-acknowledgement a{color:#747474;font-weight:500;text-decoration:none}.RecaptchaAcknowledgement-acknowledgement a:hover{color:#747474;text-decoration:underline}.RecaptchaAcknowledgement-acknowledgement a:active{color:#747474}.RecaptchaAcknowledgement-reCaptchaPadding{margin-top:15px}.RecaptchaAcknowledgement-centerAligned{text-align:center}.RecaptchaAcknowledgement-leftAligned{text-align:left}.RecaptchaAcknowledgement-rightAligned{text-align:right}.AuthForms-container{margin:0 auto;padding:0 10px;width:458px}@media (max-width:759px){.AuthForms-container{max-width:458px;padding:20px 0 0;width:100%}}.AuthForms-container .AuthForms-signupContainer{margin:0 auto;padding:0 41px;text-align:center;width:458px}@media (max-width:759px){.AuthForms-container .AuthForms-signupContainer{padding:20px 0 0;width:100%}}.AuthForms-container .AuthForms-header{color:#171717;margin-bottom:20px}.AuthForms-container .AuthForms-createAccountHeader{color:#171717;margin-bottom:20px;text-align:center}.AuthForms-container .AuthForms-headerTitle{color:#071d39;font-size:20px;font-weight:700;text-align:center}.AuthForms-container .AuthForms-signinContent{font-size:14px;font-weight:450;padding-top:20px}.AuthForms-container .AuthForms-toggleCta{color:#424242;font-size:12px;font-weight:500;text-align:right}.AuthForms-container .AuthForms-instructions{margin-bottom:20px;text-align:left}.AuthForms-container .AuthForms-instructions p{color:#171717;font-size:14px;line-height:16px}.AuthForms-container .AuthForms-instructions p a{color:#005594;text-decoration:none}.AuthForms-container .AuthForms-instructions p a:hover{color:#002f6c}.AuthForms-container .AuthForms-formInputContainer{margin:0 auto 10px;max-width:350px}.AuthForms-container .AuthForms-formInputContainer.AuthForms-withErrors{margin:0 auto 25px}.AuthForms-container .AuthForms-formInput{width:100%}.AuthForms-container input::-ms-clear,.AuthForms-container input::-ms-reveal{display:none}.AuthForms-container .AuthForms-loginWaitMsg{word-wrap:break-word;border-radius:3px;color:#071d39;font-size:14px;font-weight:500;margin:10px 0;padding:10px;text-align:center}.AuthForms-container .AuthForms-accountButton,.AuthForms-container .AuthForms-submitButton{align-items:center;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#005594;border:1px solid #002f6c;border-radius:3px;color:#fff;cursor:pointer;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;height:50px!important;justify-content:center;letter-spacing:1px;margin:0 auto;max-width:260px!important;padding:0 20px;padding:0!important;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%;width:100%!important}.AuthForms-container .AuthForms-accountButton>span,.AuthForms-container .AuthForms-submitButton>span{display:block;line-height:12px}.AuthForms-container .AuthForms-accountButton [class*=" icon-"],.AuthForms-container .AuthForms-accountButton [class^=icon-],.AuthForms-container .AuthForms-submitButton [class*=" icon-"],.AuthForms-container .AuthForms-submitButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AuthForms-container .AuthForms-accountButton [class*=" icon-"]:before,.AuthForms-container .AuthForms-accountButton [class^=icon-]:before,.AuthForms-container .AuthForms-submitButton [class*=" icon-"]:before,.AuthForms-container .AuthForms-submitButton [class^=icon-]:before{line-height:12px}.AuthForms-container .AuthForms-accountButton:focus,.AuthForms-container .AuthForms-accountButton:hover,.AuthForms-container .AuthForms-submitButton:focus,.AuthForms-container .AuthForms-submitButton:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}.AuthForms-container .AuthForms-accountButton[class*=touchButton]:hover,.AuthForms-container .AuthForms-submitButton[class*=touchButton]:hover{background-color:#005594;border-color:#002f6c;color:#fff}@media (hover:hover){.AuthForms-container .AuthForms-accountButton[class*=touchButton]:hover,.AuthForms-container .AuthForms-submitButton[class*=touchButton]:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}}@media (min-width:760px){.AuthForms-container .AuthForms-accountButton,.AuthForms-container .AuthForms-submitButton{padding:0 30px;width:auto}}.AuthForms-container .AuthForms-accountButton:last-child,.AuthForms-container .AuthForms-submitButton:last-child{clear:both;margin-bottom:7px}.AuthForms-container .AuthForms-accountButton.AuthForms-disableButton,.AuthForms-container .AuthForms-accountButton.AuthForms-disableButton:hover,.AuthForms-container .AuthForms-submitButton.AuthForms-disableButton,.AuthForms-container .AuthForms-submitButton.AuthForms-disableButton:hover{background-color:#d9d9d9;border:#d9d9d9}.AuthForms-container.AuthForms-disableButton{background-color:#d9d9d9;border:none}.AuthForms-container.AuthForms-disableButton:hover{background-color:#d9d9d9}.AuthForms-container .AuthForms-accountButton{border-radius:3px;cursor:pointer;height:40px!important;margin:0 auto;padding:0!important}@media (min-width:760px){.AuthForms-container .AuthForms-accountButton{width:200px!important}}.AuthForms-container .AuthForms-accountButton:last-child{clear:both;margin-bottom:7px}.AuthForms-container .AuthForms-accountButton{align-items:center;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;border:1px solid #002f6c;color:#005594;display:flex;flex-direction:row;font-size:14px;font-size:12px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.AuthForms-container .AuthForms-accountButton>span{display:block;line-height:12px}.AuthForms-container .AuthForms-accountButton [class*=" icon-"],.AuthForms-container .AuthForms-accountButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AuthForms-container .AuthForms-accountButton [class*=" icon-"]:before,.AuthForms-container .AuthForms-accountButton [class^=icon-]:before{line-height:12px}.AuthForms-container .AuthForms-accountButton:focus,.AuthForms-container .AuthForms-accountButton:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}.AuthForms-container .AuthForms-accountButton[class*=touchButton]:hover{background-color:#fff;border-color:#002f6c;color:#005594}@media (hover:hover){.AuthForms-container .AuthForms-accountButton[class*=touchButton]:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}}@media (min-width:760px){.AuthForms-container .AuthForms-accountButton{padding:0 30px;width:auto}}.AuthForms-container .AuthForms-ctaButton{color:#005594;font-size:12px;font-weight:500}.AuthForms-container .AuthForms-ctaButton:hover{color:#002f6c}.AuthForms-container.AuthForms-forgotPassword{padding:0 21px}@media (min-width:760px){.AuthForms-container.AuthForms-forgotPassword{padding:0 60px}}.AuthForms-container.AuthForms-forgotPassword .AuthForms-formInputContainer{margin:15px 0 26px}.AuthForms-container .AuthForms-forgotPwdButton{color:#005594;display:block;font-size:14px;font-weight:500;margin:15px auto 0}.AuthForms-container .AuthForms-forgotPwdButton:hover{color:#002f6c}.AuthForms-formContainer{padding-bottom:25px}.AuthForms-containerRight{margin:0;padding:0;width:500px}@media (max-width:1019px){.AuthForms-containerRight{margin-top:24px;padding:0 20px;width:100%}}@media (max-width:759px){.AuthForms-containerRight{margin-top:10px;padding:0 14px}}.AuthForms-unlockButton{align-items:center;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#00a857;border:1px solid #00a857;border-radius:3px;box-shadow:-2px 2px 2px hsla(0,0%,9%,.25);color:#fff;cursor:pointer;display:flex;flex-direction:row;font-size:14px;font-size:22px;font-weight:600;font-weight:700;height:40px;height:50px;justify-content:center;letter-spacing:1px;letter-spacing:.2px;margin-bottom:7px;outline:.5px solid #333;padding:0 30px;text-align:center;text-transform:uppercase;text-transform:none;transition:all .15s linear;width:100%}.AuthForms-unlockButton>span{display:block;line-height:12px}.AuthForms-unlockButton [class*=" icon-"],.AuthForms-unlockButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AuthForms-unlockButton [class*=" icon-"]:before,.AuthForms-unlockButton [class^=icon-]:before{line-height:12px}.AuthForms-unlockButton:focus,.AuthForms-unlockButton:hover{background-color:#008456;border-color:#008456;color:#fff}.AuthForms-unlockButton[class*=touchButton]:hover{background-color:#00a857;border-color:#00a857;color:#fff}@media (hover:hover){.AuthForms-unlockButton[class*=touchButton]:hover{background-color:#008456;border-color:#008456;color:#fff}}@media (min-width:760px){.AuthForms-unlockButton{padding:0 30px;width:auto;width:100%}}.AuthForms-unlockIcon{margin-right:8px}.AuthForms-proFlow .AuthForms-submitButton{align-items:center;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#00a857;border:1px solid #00a857;border-radius:3px;color:#fff;cursor:pointer;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;height:50px!important;justify-content:center;letter-spacing:1px;margin:0 auto;padding:0 20px;padding:0!important;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.AuthForms-proFlow .AuthForms-submitButton>span{display:block;line-height:12px}.AuthForms-proFlow .AuthForms-submitButton [class*=" icon-"],.AuthForms-proFlow .AuthForms-submitButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AuthForms-proFlow .AuthForms-submitButton [class*=" icon-"]:before,.AuthForms-proFlow .AuthForms-submitButton [class^=icon-]:before{line-height:12px}.AuthForms-proFlow .AuthForms-submitButton:focus,.AuthForms-proFlow .AuthForms-submitButton:hover{background-color:#008456;border-color:#008456;color:#fff}.AuthForms-proFlow .AuthForms-submitButton[class*=touchButton]:hover{background-color:#00a857;border-color:#00a857;color:#fff}@media (hover:hover){.AuthForms-proFlow .AuthForms-submitButton[class*=touchButton]:hover{background-color:#008456;border-color:#008456;color:#fff}}@media (min-width:760px){.AuthForms-proFlow .AuthForms-submitButton{padding:0 30px;width:auto}}.AuthForms-proFlow .AuthForms-submitButton:last-child{margin-bottom:7px}.AuthForms-proFlow .AuthForms-submitButton.AuthForms-disableButton,.AuthForms-proFlow .AuthForms-submitButton.AuthForms-disableButton:hover{background-color:#d9d9d9;border:#d9d9d9}.AuthForms-proFlow .AuthForms-ctaButton{color:#00a857}.AuthForms-proFlow .AuthForms-ctaButton:hover{color:#008456}.AuthForms-proFlow .AuthForms-forgotPwdButton{color:#00a857}.AuthForms-proFlow .AuthForms-forgotPwdButton:hover{color:#008456}.AuthForms-proFlow .AuthForms-instructions a{color:#00a857}.AuthForms-proFlow .AuthForms-instructions a:hover,.AuthForms-proFlow .AuthForms-loginWaitMsg{color:#008456}.AuthForms-investingClubFlow{display:flex;flex-direction:column}.AuthForms-investingClubFlow .AuthForms-header{margin-bottom:15px}.AuthForms-investingClubFlow .AuthForms-submitButton{align-items:center;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#071d39;border:1px solid #071d39;border-radius:3px;color:#fff;cursor:pointer;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;height:50px!important;justify-content:center;letter-spacing:1px;margin:0 auto;padding:0 20px;padding:0 56px!important;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.AuthForms-investingClubFlow .AuthForms-submitButton>span{display:block;line-height:12px}.AuthForms-investingClubFlow .AuthForms-submitButton [class*=" icon-"],.AuthForms-investingClubFlow .AuthForms-submitButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AuthForms-investingClubFlow .AuthForms-submitButton [class*=" icon-"]:before,.AuthForms-investingClubFlow .AuthForms-submitButton [class^=icon-]:before{line-height:12px}.AuthForms-investingClubFlow .AuthForms-submitButton:focus,.AuthForms-investingClubFlow .AuthForms-submitButton:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}.AuthForms-investingClubFlow .AuthForms-submitButton[class*=touchButton]:hover{background-color:#071d39;border-color:#071d39;color:#fff}@media (hover:hover){.AuthForms-investingClubFlow .AuthForms-submitButton[class*=touchButton]:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}}@media (min-width:760px){.AuthForms-investingClubFlow .AuthForms-submitButton{padding:0 30px;width:auto}}.AuthForms-investingClubFlow .AuthForms-submitButton:last-child{margin-bottom:7px}.AuthForms-investingClubFlow .AuthForms-submitButton.AuthForms-disableButton,.AuthForms-investingClubFlow .AuthForms-submitButton.AuthForms-disableButton:hover{background-color:#d9d9d9;border:#d9d9d9}.AuthForms-investingClubFlow .AuthForms-toggleCta{color:#171717;font-size:18px;font-weight:600;margin-bottom:25px;text-align:center}.AuthForms-investingClubFlow .AuthForms-ctaButton{color:#336aa0;font-size:18px;font-weight:600}.AuthForms-investingClubFlow .AuthForms-ctaButton:hover{color:#1896ff}.AuthForms-investingClubFlow .AuthForms-forgotPwdButton{color:#071d39;font-weight:600}.AuthForms-investingClubFlow .AuthForms-forgotPwdButton:hover{color:#002f6c}.AuthForms-investingClubFlow .AuthForms-instructions a{color:#336aa0}.AuthForms-investingClubFlow .AuthForms-instructions a:hover{color:#1896ff}.AuthForms-investingClubFlow.AuthForms-forgotPassword{align-items:center;margin:20px 0 78px;padding:0}.AuthForms-investingClubFlow.AuthForms-forgotPassword .AuthForms-header{max-width:100%;width:100%}@media (min-width:760px){.AuthForms-investingClubFlow.AuthForms-forgotPassword .AuthForms-header{max-width:335px}}.AuthForms-investingClubFlow.AuthForms-forgotPassword .AuthForms-headerTitle{color:#071d39;font-size:20px;font-weight:700;text-align:left;width:100%}.AuthForms-investingClubFlow.AuthForms-forgotPassword .AuthForms-toggleCta{font-size:16px;font-weight:700;margin-bottom:47px;order:-1;text-align:right;width:100%}.AuthForms-investingClubFlow.AuthForms-forgotPassword .AuthForms-ctaButton{font-size:16px;font-weight:700}.AuthForms-investingClubFlow.AuthForms-forgotPassword .AuthForms-instructions{font-size:14px;margin:0 0 28px;max-width:100%;text-align:left;width:100%}@media (min-width:760px){.AuthForms-investingClubFlow.AuthForms-forgotPassword .AuthForms-instructions{max-width:335px}}.AuthForms-investingClubFlow.AuthForms-forgotPassword .AuthForms-formInputContainer{max-width:100%;width:100%}@media (min-width:760px){.AuthForms-investingClubFlow.AuthForms-forgotPassword .AuthForms-formInputContainer{max-width:335px}}.AuthForms-investingClubFlow.AuthForms-forgotPasswordConfirmation{margin-bottom:48px}.AuthForms-investingClubFlow.AuthForms-forgotPasswordConfirmation .AuthForms-instructions{font-size:14px;font-weight:600;margin:36px 0;max-width:100%;text-align:center;width:100%}.AuthForms-investingClubFlow.AuthForms-forgotPasswordConfirmation .AuthForms-instructions p{display:inline}.AuthForms-investingClubFlow.AuthForms-forgotPasswordConfirmation .AuthForms-instructions p:after{content:" "}@media (min-width:760px){.AuthForms-investingClubFlow.AuthForms-forgotPasswordConfirmation .AuthForms-instructions{max-width:335px}}.AuthForms-investingClubFlow.AuthForms-forgotPasswordConfirmation .AuthForms-submitButton{padding:0 71px!important}.AuthForms-resetPasswordAccountInfo{color:#424242;font-size:14px;font-weight:700;margin-bottom:20px;margin-top:20px;text-align:left}.AuthForms-resetPasswordAccountInfo span{color:#747474}.AuthForms-miscellaneousError{word-wrap:break-word;border-radius:3px;color:#f44336;font-size:14px;margin:10px 0;padding:10px;text-align:center}.AuthForms-newtocnbc{color:#071d39;font-size:15px;font-weight:700;margin-top:25px;padding:0 0 15px;text-align:center}.Checkboxes-checkboxContainer.Checkboxes-checkboxes{padding:0}.Checkboxes-errorText{color:#ce2b2b;font-size:11px;height:12px;margin:0 auto 5px;overflow:visible;text-align:left}.Checkboxes-checkboxLabel{cursor:pointer;display:block;overflow:hidden;padding-left:16px;position:relative;-webkit-user-select:none;-moz-user-select:none;user-select:none}.Checkboxes-checkboxLabel input{cursor:pointer;height:0;opacity:0;position:absolute;right:0;width:0}.Checkboxes-checkmark{border:1px solid #424242;border-radius:3px;height:13px;left:0;position:absolute;top:3px;width:13px}.Checkboxes-checkmark.Checkboxes-checkmarkError{border:1px solid #ce2b2b}.Checkboxes-checkboxLabel input:checked~.Checkboxes-checkmark{background-color:#171717}.Checkboxes-checkmark:after{content:"";display:none;position:absolute}.Checkboxes-checkboxLabel input:checked~.Checkboxes-checkmark:after{display:block}.Checkboxes-checkboxLabel .Checkboxes-checkmark:after{border:solid #fff;border-width:0 2px 2px 0;height:6px;left:3px;top:0;transform:rotate(45deg);width:3px}.Checkboxes-checkboxDP{margin-bottom:0!important}.Checkboxes-checkboxLabelText,.Checkboxes-checkboxLabelTextBold{color:#424242;flex:1;font-size:11px;margin:0 0 26px 6px}.Checkboxes-checkboxLabelText.Checkboxes-staySignedIn,.Checkboxes-staySignedIn.Checkboxes-checkboxLabelTextBold{font-size:14px;margin-top:2px}.Checkboxes-checkboxLabelText a,.Checkboxes-checkboxLabelTextBold a{color:#171717;text-decoration:none}.Checkboxes-checkboxLabelText a:hover,.Checkboxes-checkboxLabelTextBold a:hover{color:#171717;text-decoration:underline}.Checkboxes-checkboxLabelText p,.Checkboxes-checkboxLabelTextBold p{color:#424242;margin-bottom:0}.Checkboxes-checkboxLabelTextBold{font-weight:600;line-height:18px;margin:-2px 0 26px 6px;text-align:start;text-transform:uppercase}.Checkboxes-checkboxLink{color:#005594!important}.SubscriptionsUpsell-upsell{color:#424242;font-size:14px;font-weight:600;line-height:normal;margin:0}.SubscriptionsUpsell-upsell a.SubscriptionsUpsell-upsellLink{color:#00a857;font-size:14px;font-weight:600}.SubscriptionsUpsell-upsell a.SubscriptionsUpsell-upsellLink:hover{color:#008456}.SubscriptionsUpsell-upsell.SubscriptionsUpsell-subscriptionFlow{font-size:18px;text-align:center}.SubscriptionsUpsell-upsell.SubscriptionsUpsell-subscriptionFlow a.SubscriptionsUpsell-upsellLink{color:#005594;font-size:18px}.SubscriptionsUpsell-upsell.SubscriptionsUpsell-subscriptionFlow a.SubscriptionsUpsell-upsellLink:hover{color:#002f6c}.SubscriptionsUpsell-upsell.SubscriptionsUpsell-subscriptionFlow .SubscriptionsUpsell-investingClubUpsellCopy,.SubscriptionsUpsell-upsell.SubscriptionsUpsell-subscriptionFlow .SubscriptionsUpsell-investingClubUpsellCopy a.SubscriptionsUpsell-upsellLink{font-size:20px}.SubscriptionsUpsell-upsell.SubscriptionsUpsell-subscriptionFlow .SubscriptionsUpsell-investingClubUpsellCopy .SubscriptionsUpsell-icUpsellHeader{font-size:24px}.SubscriptionsUpsell-upsell .SubscriptionsUpsell-cfaContainer{color:#171717;text-align:center}.SubscriptionsUpsell-upsell .SubscriptionsUpsell-cfaContainer .SubscriptionsUpsell-cfaHeader{color:#071d39;margin:0 0 15px}.SubscriptionsUpsell-upsell .SubscriptionsUpsell-cfaContainer .SubscriptionsUpsell-cfaButton{align-items:center;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;border:1px solid #005594;border-radius:3px;color:#005594;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;height:45px;justify-content:center;letter-spacing:1px;margin:auto;max-width:260px!important;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%;width:100%!important}.SubscriptionsUpsell-upsell .SubscriptionsUpsell-cfaContainer .SubscriptionsUpsell-cfaButton>span{display:block;line-height:12px}.SubscriptionsUpsell-upsell .SubscriptionsUpsell-cfaContainer .SubscriptionsUpsell-cfaButton [class*=" icon-"],.SubscriptionsUpsell-upsell .SubscriptionsUpsell-cfaContainer .SubscriptionsUpsell-cfaButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.SubscriptionsUpsell-upsell .SubscriptionsUpsell-cfaContainer .SubscriptionsUpsell-cfaButton [class*=" icon-"]:before,.SubscriptionsUpsell-upsell .SubscriptionsUpsell-cfaContainer .SubscriptionsUpsell-cfaButton [class^=icon-]:before{line-height:12px}.SubscriptionsUpsell-upsell .SubscriptionsUpsell-cfaContainer .SubscriptionsUpsell-cfaButton:focus,.SubscriptionsUpsell-upsell .SubscriptionsUpsell-cfaContainer .SubscriptionsUpsell-cfaButton:hover{background-color:#005594;border-color:#005594;color:#fff}.SubscriptionsUpsell-upsell .SubscriptionsUpsell-cfaContainer .SubscriptionsUpsell-cfaButton[class*=touchButton]:hover{background-color:#fff;border-color:#005594;color:#005594}@media (hover:hover){.SubscriptionsUpsell-upsell .SubscriptionsUpsell-cfaContainer .SubscriptionsUpsell-cfaButton[class*=touchButton]:hover{background-color:#005594;border-color:#005594;color:#fff}}@media (min-width:760px){.SubscriptionsUpsell-upsell .SubscriptionsUpsell-cfaContainer .SubscriptionsUpsell-cfaButton{padding:0 30px;width:auto}}.SubscriptionsUpsell-upsell .SubscriptionsUpsell-cfaContainer .SubscriptionsUpsell-cfaText{font-size:14px;line-height:16px;margin:14px auto 30px;max-width:350px}.SubscriptionsUpsell-upsell.SubscriptionsUpsell-bold{font-size:21px;text-align:center}.SubscriptionsUpsell-upsell.SubscriptionsUpsell-bold a.SubscriptionsUpsell-upsellLink{font-size:21px}.SubscriptionsUpsell-upsell.SubscriptionsUpsell-bold.SubscriptionsUpsell-subscriptionFlow{font-size:24px}.SubscriptionsUpsell-upsell.SubscriptionsUpsell-bold.SubscriptionsUpsell-subscriptionFlow a.SubscriptionsUpsell-upsellLink{color:#2077b6;font-size:24px}.SubscriptionsUpsell-upsell.SubscriptionsUpsell-bold.SubscriptionsUpsell-subscriptionFlow .SubscriptionsUpsell-investingClubUpsellCopy,.SubscriptionsUpsell-upsell.SubscriptionsUpsell-bold.SubscriptionsUpsell-subscriptionFlow .SubscriptionsUpsell-investingClubUpsellCopy a.SubscriptionsUpsell-upsellLink{font-size:20px}.SubscriptionsUpsell-upsell.SubscriptionsUpsell-bold.SubscriptionsUpsell-subscriptionFlow .SubscriptionsUpsell-investingClubUpsellCopy .SubscriptionsUpsell-icUpsellHeader{font-size:24px}.AreYouSure-container{color:#171717;font-size:18px;font-weight:700;padding-top:18px;text-align:center}@media (max-width:759px){.AreYouSure-container{width:100%}}.AreYouSure-header{font-size:18px;font-weight:700;height:20px;margin-bottom:12px}.AreYouSure-subText{font-size:14px;font-weight:600;height:16px;margin-bottom:48px}.AreYouSure-buttons{padding:0 32px 7px}@media (min-width:760px){.AreYouSure-buttons{align-items:stretch;display:flex}}@media (max-width:759px){.AreYouSure-buttons{padding:0}}.AreYouSure-primaryButton{align-items:center;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#00a857;border:1px solid #00a857;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;margin:0;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.AreYouSure-primaryButton>span{display:block;line-height:12px}.AreYouSure-primaryButton [class*=" icon-"],.AreYouSure-primaryButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AreYouSure-primaryButton [class*=" icon-"]:before,.AreYouSure-primaryButton [class^=icon-]:before{line-height:12px}.AreYouSure-primaryButton:focus,.AreYouSure-primaryButton:hover{background-color:#008456;border-color:#008456;color:#fff}.AreYouSure-primaryButton[class*=touchButton]:hover{background-color:#00a857;border-color:#00a857;color:#fff}@media (hover:hover){.AreYouSure-primaryButton[class*=touchButton]:hover{background-color:#008456;border-color:#008456;color:#fff}}@media (min-width:760px){.AreYouSure-primaryButton{padding:0 30px;width:auto}}.AreYouSure-secondaryButton{align-items:center;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;border:1px solid #00a857;color:#00a857;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;margin:0 24px 0 0;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.AreYouSure-secondaryButton>span{display:block;line-height:12px}.AreYouSure-secondaryButton [class*=" icon-"],.AreYouSure-secondaryButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AreYouSure-secondaryButton [class*=" icon-"]:before,.AreYouSure-secondaryButton [class^=icon-]:before{line-height:12px}.AreYouSure-secondaryButton:focus,.AreYouSure-secondaryButton:hover{background-color:#fff;border-color:#008456;color:#008456}.AreYouSure-secondaryButton[class*=touchButton]:hover{background-color:#fff;border-color:#00a857;color:#00a857}@media (hover:hover){.AreYouSure-secondaryButton[class*=touchButton]:hover{background-color:#fff;border-color:#008456;color:#008456}}@media (min-width:760px){.AreYouSure-secondaryButton{padding:0 30px;width:auto}}@media (max-width:759px){.AreYouSure-secondaryButton{margin:0 0 28px}}.AreYouSure-primaryButton,.AreYouSure-secondaryButton{border-radius:3px;flex:1;font-size:16px;height:50px;padding:0;width:185px}@media (max-width:759px){.AreYouSure-primaryButton,.AreYouSure-secondaryButton{width:100%}}.AreYouSure-investingClubFlow .AreYouSure-header{font-weight:600}.AreYouSure-investingClubFlow .AreYouSure-subText{font-weight:500}.AreYouSure-investingClubFlow .AreYouSure-primaryButton{align-items:center;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#071d39;border:1px solid #071d39;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.AreYouSure-investingClubFlow .AreYouSure-primaryButton>span{display:block;line-height:12px}.AreYouSure-investingClubFlow .AreYouSure-primaryButton [class*=" icon-"],.AreYouSure-investingClubFlow .AreYouSure-primaryButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AreYouSure-investingClubFlow .AreYouSure-primaryButton [class*=" icon-"]:before,.AreYouSure-investingClubFlow .AreYouSure-primaryButton [class^=icon-]:before{line-height:12px}.AreYouSure-investingClubFlow .AreYouSure-primaryButton:focus,.AreYouSure-investingClubFlow .AreYouSure-primaryButton:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}.AreYouSure-investingClubFlow .AreYouSure-primaryButton[class*=touchButton]:hover{background-color:#071d39;border-color:#071d39;color:#fff}@media (hover:hover){.AreYouSure-investingClubFlow .AreYouSure-primaryButton[class*=touchButton]:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}}@media (min-width:760px){.AreYouSure-investingClubFlow .AreYouSure-primaryButton{padding:0 30px;width:auto}}.AreYouSure-investingClubFlow .AreYouSure-secondaryButton{align-items:center;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;border:1px solid #071d39;color:#071d39;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.AreYouSure-investingClubFlow .AreYouSure-secondaryButton>span{display:block;line-height:12px}.AreYouSure-investingClubFlow .AreYouSure-secondaryButton [class*=" icon-"],.AreYouSure-investingClubFlow .AreYouSure-secondaryButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AreYouSure-investingClubFlow .AreYouSure-secondaryButton [class*=" icon-"]:before,.AreYouSure-investingClubFlow .AreYouSure-secondaryButton [class^=icon-]:before{line-height:12px}.AreYouSure-investingClubFlow .AreYouSure-secondaryButton:focus,.AreYouSure-investingClubFlow .AreYouSure-secondaryButton:hover{background-color:#fff;border-color:#002f6c;color:#002f6c}.AreYouSure-investingClubFlow .AreYouSure-secondaryButton[class*=touchButton]:hover{background-color:#fff;border-color:#071d39;color:#071d39}@media (hover:hover){.AreYouSure-investingClubFlow .AreYouSure-secondaryButton[class*=touchButton]:hover{background-color:#fff;border-color:#002f6c;color:#002f6c}}@media (min-width:760px){.AreYouSure-investingClubFlow .AreYouSure-secondaryButton{padding:0 30px;width:auto}}.AreYouSure-investingClubFlow .AreYouSure-primaryButton,.AreYouSure-investingClubFlow .AreYouSure-secondaryButton{border-radius:3px;flex:1;font-size:16px;height:50px;line-height:12px;padding:0;width:185px}@media (max-width:759px){.AreYouSure-investingClubFlow .AreYouSure-primaryButton,.AreYouSure-investingClubFlow .AreYouSure-secondaryButton{width:100%}}.LogoHeader-header{margin-bottom:12px;text-align:center}.LogoHeader-logo{display:inline}.LogoHeader-proPill{display:inline;margin-left:8px}.LogoHeader-investingClubHeader{display:flex;justify-content:center;margin-bottom:28px;margin-top:11px}.LogoHeader-investingClubHeader .LogoHeader-logo{fill:#071d39;stroke:#071d39;max-width:255px}.SignedIn-container{color:#171717;font-size:18px;font-weight:700;text-align:center;width:400px}@media (max-width:759px){.SignedIn-container{width:100%}}.SignedIn-container .SignedIn-messageConfirmation{font-size:18px;font-weight:600;text-align:center}.SignedIn-container.SignedIn-blank{background-color:#f8f8f8}.SignedIn-container.SignedIn-investingClubFlow .SignedIn-messageConfirmation{font-weight:700}.SignedIn-okayButton{align-items:center;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#00a857;border:1px solid #00a857;border-radius:3px;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;height:50px;justify-content:center;letter-spacing:1px;margin:0 auto 15px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%;width:200px}.SignedIn-okayButton>span{display:block;line-height:12px}.SignedIn-okayButton [class*=" icon-"],.SignedIn-okayButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.SignedIn-okayButton [class*=" icon-"]:before,.SignedIn-okayButton [class^=icon-]:before{line-height:12px}.SignedIn-okayButton:focus,.SignedIn-okayButton:hover{background-color:#008456;border-color:#008456;color:#fff}.SignedIn-okayButton[class*=touchButton]:hover{background-color:#00a857;border-color:#00a857;color:#fff}@media (hover:hover){.SignedIn-okayButton[class*=touchButton]:hover{background-color:#008456;border-color:#008456;color:#fff}}@media (min-width:760px){.SignedIn-okayButton{padding:0 30px;width:auto}}.SignedIn-logosContainer{display:flex;justify-content:center;margin-bottom:16px}.SignedIn-logosContainer>*{align-self:baseline;height:40px;text-align:center;width:100px}.SignedIn-proPill{height:22px}.SignedIn-checkmarkContainer{align-items:center;height:40px;margin-bottom:15px}.SignedIn-checkmarkContainer .SignedIn-checkMark,.SignedIn-checkmarkContainer .SignedIn-checkmarkCNBC,.SignedIn-checkmarkContainer .SignedIn-checkmarkDefault,.SignedIn-checkmarkContainer .SignedIn-checkmarkPro{height:40px;margin:0 30px;width:40px}.SignedIn-checkmarkCNBC circle{fill:#005594;opacity:.25}.SignedIn-checkmarkCNBC path{fill:#005594}.SignedIn-checkmarkPro circle{fill:#00a857;opacity:.25}.SignedIn-checkmarkPro path{fill:#00a857}.SignedIn-checkmarkDefault circle{fill:#005594;opacity:1}.SignedIn-checkmarkDefault path{fill:#fff}.ProPill-proPillLink{display:inline-block;padding-right:4px}.ProPill-proPill{bottom:0;display:inline-block;position:relative;vertical-align:baseline;width:auto!important}.InvestingClubPill-investingClubPillLink{display:inline-block;padding-right:4px}.InvestingClubPill-investingClubPill,.InvestingClubPill-latestNews{bottom:0;display:inline-block;position:relative;vertical-align:baseline;width:auto}.InvestingClubPill-latestNews{bottom:-2px}.Modal-modalBackground{background:rgba(0,0,0,.7);height:100%;left:0;overflow-y:auto;position:fixed;top:0;transition:background-color .4s;width:100%;z-index:100001}.Modal-bottomModal.Modal-modal{background:#f8f8f8;border-radius:3px;bottom:0;box-shadow:5px 5px 20px hsla(0,0%,9%,.1);display:inline-block;height:528px;left:0;margin-top:0!important;max-width:100%;position:fixed;top:auto;transform:none;width:100%}@media (max-width:1019px){.Modal-bottomModal.Modal-modal{height:642px}}@media (max-width:759px){.Modal-bottomModal.Modal-modal{height:100%;position:relative;top:0}}.Modal-modal{background:#f8f8f8;border-radius:3px;box-shadow:5px 5px 20px hsla(0,0%,9%,.1);display:inline-block;left:50%;margin-top:10vh;max-width:100%;overflow:auto;position:relative;transform:translateX(-50%)}@media (max-width:759px){.Modal-modal{height:100%;left:auto;margin:0;transform:none;width:100%}}.Modal-modal.Modal-investingClubFlow{background:#8fd0ff}.Modal-modalContents{overflow:auto}.Modal-closeButton{color:#a9a9a9;cursor:pointer;position:absolute;right:12px;top:12px}.Confirmation-copy{color:#171717;margin-bottom:16px}.Confirmation-copy p.Confirmation-header{font-size:18px;font-weight:600;line-height:20px}.Confirmation-copy p{font-size:14px;font-weight:600;line-height:16px;margin:0 0 10px}.Confirmation-email{color:#747474;font-size:14px;font-weight:500}.Confirmation-checkMark,.Confirmation-checkmarkDefault,.Confirmation-checkmarkInvestingClub,.Confirmation-checkmarkPro{height:40px;margin-bottom:20px;width:40px}.Confirmation-checkmarkDefault circle{fill:#005594;opacity:.25}.Confirmation-checkmarkDefault path{fill:#005594}.Confirmation-checkmarkPro circle{fill:#00a857;opacity:.25}.Confirmation-checkmarkPro path{fill:#00a857}.Confirmation-confirmation{color:#424242;font-size:14px;font-weight:600;margin-bottom:24px;margin-top:0;text-align:center}.Confirmation-checkmarkInvestingClub circle{fill:#005594;opacity:1}.Confirmation-checkmarkInvestingClub path{fill:#fff}.Confirmation-confirmationCode{color:#747474;font-weight:500}.Confirmation-investingClubFlow{align-items:center;margin:20px 0 30px;padding:0}.Confirmation-investingClubFlow .Confirmation-copy{margin-bottom:10px}.Confirmation-investingClubFlow .Confirmation-copy p.Confirmation-header{margin-bottom:20px}.Confirmation-investingClubFlow .Confirmation-copy p.Confirmation-email{margin-bottom:0}.Confirmation-investingClubFlow .Confirmation-checkmarkInvestingClub{margin:10px 0}.Confirmation-investingClubFlow .Confirmation-confirmationText{margin:10px 0 38px}.Confirmation-investingClubFlow .Confirmation-confirmationText .Confirmation-confirmationCode{color:#171717;font-weight:600}.ErrorModal-copy{color:#171717;margin-bottom:16px}.ErrorModal-copy p.ErrorModal-header{font-size:18px;font-weight:600;line-height:20px}.ErrorModal-copy p{font-size:14px;font-weight:600;line-height:16px;margin:0 0 10px}.ErrorModal-email{color:#747474;font-size:14px;font-weight:500}.ErrorModal-checkMark{height:40px;margin-bottom:15px;width:40px}.ErrorModal-confirmation{color:#424242;font-weight:600;margin-bottom:24px}.ErrorModal-confirmationCode{color:#747474;font-weight:500}.ErrorModal-helpDesk{color:#171717;font-weight:600;margin-bottom:24px}.ErrorModal-helpDesk a{color:#00a857}.ErrorModal-helpDesk a:hover{color:#008456}.ErrorModal-investingClubFlow{align-items:center;margin:20px 0 30px;padding:0}.ErrorModal-investingClubFlow .ErrorModal-copy{margin-bottom:10px;padding:0 10%}.ErrorModal-investingClubFlow .ErrorModal-copy p.ErrorModal-header{margin-bottom:20px}.ErrorModal-investingClubFlow .ErrorModal-copy p.ErrorModal-email{margin-bottom:0}.ErrorModal-investingClubFlow .ErrorModal-confirmation{margin:0}.ErrorModal-investingClubFlow .ErrorModal-helpDesk{margin:20px 0 38px}.ErrorModal-investingClubFlow .ErrorModal-helpDesk a{color:#005594}.ErrorModal-investingClubFlow .ErrorModal-helpDesk a:hover{color:#1896ff}.SignupProgress-stepsLine{background-color:#d9d9d9}.SignupProgress-stepsLine.SignupProgress-stepsLineComplete{background-color:#00a857}@media (max-width:759px){.SignupProgress-stepsPianoTest{padding:20px 0}.SignupProgress-stepsPianoTest:before{background:#27313c;content:"";height:100%;left:50%;position:absolute;top:0;transform:translateX(-50%);width:100vw}.SignupProgress-stepsPianoTest .SignupProgress-stepsLine{background-color:#d9d9d9;z-index:0}.SignupProgress-stepsPianoTest .SignupProgress-stepsLine.SignupProgress-stepsLineComplete{background-color:#00a857}.SignupProgress-stepsPianoTest .SignupProgress-stepTitle{color:#9e9e9e}.SignupProgress-stepsPianoTest .SignupProgress-stepTitleActive{color:#fff}}.SignupProgress-stepTitle{color:#9e9e9e}.SignupProgress-stepTitleActive{color:#424242}.NotAvailableModal-contentWrapper{padding:40px;text-align:center}.NotAvailableModal-contentWrapper img{margin:auto}.PasswordAssistiveText-assistiveText{background-color:#f8f8f8;border:1px solid #d9d9d9;border-radius:0 0 6px 6px;border-top:0;padding:10px 5px 5px;position:absolute;width:100%;z-index:2}.PasswordAssistiveText-assistiveTextItem{color:#bababa;font-size:12px;font-weight:500;line-height:16px;margin-bottom:5px;text-align:left}.PasswordAssistiveText-assistiveTextItemComplete{color:#171717}.PasswordAssistiveText-checkMark{visibility:hidden}.PasswordAssistiveText-checkMarkDisplay{height:10px;margin-right:5px;visibility:visible}.AuthPasswordInput-assistiveTextContainer{position:relative;width:100%}.AccountHasEmailError-signIn{font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:inherit;margin-left:3px}.UserCreateAndSubmit-container{margin:0 auto;text-align:center;width:100%}@media (min-width:760px){.UserCreateAndSubmit-container{width:340px}}.UserCreateAndSubmit-loggedInAccount{color:#424242;font-size:14px;font-weight:700;margin-bottom:20px;margin-top:20px}.UserCreateAndSubmit-loggedInAccountEmail{color:#747474}.UserCreateAndSubmit-continueButton{align-items:center;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#00a857;border:1px solid #00a857;border-radius:3px;color:#fff;cursor:pointer;display:flex;flex-direction:row;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-size:16px;font-weight:600;font-weight:700;height:40px;height:50px;justify-content:center;letter-spacing:1px;margin:0 auto 24px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%;width:190px}.UserCreateAndSubmit-continueButton>span{display:block;line-height:12px}.UserCreateAndSubmit-continueButton [class*=" icon-"],.UserCreateAndSubmit-continueButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.UserCreateAndSubmit-continueButton [class*=" icon-"]:before,.UserCreateAndSubmit-continueButton [class^=icon-]:before{line-height:12px}.UserCreateAndSubmit-continueButton:focus,.UserCreateAndSubmit-continueButton:hover{background-color:#008456;border-color:#008456;color:#fff}.UserCreateAndSubmit-continueButton[class*=touchButton]:hover{background-color:#00a857;border-color:#00a857;color:#fff}@media (hover:hover){.UserCreateAndSubmit-continueButton[class*=touchButton]:hover{background-color:#008456;border-color:#008456;color:#fff}}@media (min-width:760px){.UserCreateAndSubmit-continueButton{padding:0 30px;width:auto;width:190px}}@media (max-width:759px){.UserCreateAndSubmit-continueButton{width:100%}}.UserCreateAndSubmit-cta{color:#424242;font-weight:500;margin-bottom:24px;text-align:center}.UserCreateAndSubmit-formInputContainer{margin:0 auto 30px}@media (min-width:760px){.UserCreateAndSubmit-formInputContainer{width:340px}}.UserCreateAndSubmit-formInput{width:100%}input::-ms-clear,input::-ms-reveal{display:none}.UserCreateAndSubmit-infoText{color:#424242;flex:1;font-size:11px;line-height:13px;margin:0 0 12px 12px;text-align:center}.UserCreateAndSubmit-infoText a{color:#171717;font-weight:500;text-decoration:none}.UserCreateAndSubmit-infoText p{margin-bottom:0}.UserCreateAndSubmit-questionAndCta{color:#424242;font-size:12px;font-weight:700;margin-bottom:20px}.UserCreateAndSubmit-questionAndCta button{color:#00a857;font-size:12px;font-weight:700}.UserCreateAndSubmit-questionAndCta button:hover{color:#008456}.UserCreateAndSubmit-miscellaneousError{word-wrap:break-word;border-radius:3px;color:#f44336;font-size:12px;margin:0 auto 15px;padding:10px;width:340px}@media (min-width:1020px){.UserCreateAndSubmit-investingClubError{position:relative;right:150px}.UserCreateAndSubmit-investingClubContainer{width:322px}}.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-investingClubDivider{border-bottom:1px solid #071d39;font-size:16px;font-weight:600;line-height:.1em;margin:10px auto 20px;text-align:center;width:186px}.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-investingClubDivider span{background:#fff;padding:0 10px}.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton{align-items:center;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#071d39;border:1px solid #071d39;border-radius:3px;color:#fff;cursor:pointer;display:flex;flex-direction:row;font-size:14px;font-size:16px;font-weight:600;font-weight:700;height:40px;height:50px;justify-content:center;letter-spacing:1px;margin:0 auto 24px;padding:16px 0;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%;width:190px}.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton>span{display:block;line-height:12px}.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton [class*=" icon-"],.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton [class*=" icon-"]:before,.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton [class^=icon-]:before{line-height:12px}.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton:focus,.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton[class*=touchButton]:hover{background-color:#071d39;border-color:#071d39;color:#fff}@media (hover:hover){.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton[class*=touchButton]:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}}@media (min-width:760px){.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton{padding:0 30px;width:auto}}@media (min-width:1020px){.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton{transform:translate(-77%);width:190px}}@media (max-width:759px){.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton{width:100%}}.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-cta{color:#071d39;font-size:20px;font-weight:600;margin-bottom:19px;text-align:center}@media (min-width:760px){.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-cta{margin-bottom:20px}}.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-questionAndCta{color:#071d39;font-size:18px;font-weight:400;margin-bottom:20px}.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-questionAndCta button{color:#005594;font-size:16px;font-weight:700}.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-questionAndCta button:hover{color:#0496ff}@media (min-width:1020px){.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-formInputContainer{width:322px}}.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-formInput{margin:0 auto}@media (min-width:760px) and (max-width:1019px){.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-formInput{width:100%}}@media (min-width:1020px){.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-checkBoxes,.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-recaptchaAcknowledgement{transform:translate(-45%)}.UserCreateAndSubmit-investingClubContainerLoggedIn .UserCreateAndSubmit-continueButton{transform:none}}.UserCreateAndSubmit-investingClubContainerLoggedIn .UserCreateAndSubmit-questionAndCta{color:#424242;font-size:12px;font-weight:700;margin-bottom:20px}.UserCreateAndSubmit-investingClubContainerLoggedIn .UserCreateAndSubmit-questionAndCta button{font-size:12px}.SelectPlan-container{width:670px}@media (min-width:760px) and (max-width:1019px){.SelectPlan-container{width:558px}}@media (max-width:759px){.SelectPlan-container{width:100%}}.SelectPlan-ctaPrimary{color:#171717;font-size:20px;font-weight:600;margin-bottom:5px;text-align:center}@media (max-width:759px){.SelectPlan-ctaPrimary{font-size:18px}}.SelectPlan-ctaSecondary{color:#424242;font-size:16px;font-weight:500;margin-bottom:10px;text-align:center}.SelectPlan-signedInMessage{background:#f1f1f1;border:1px solid #d9d9d9;border-radius:5px;color:#424242;font-size:14px;font-weight:600;line-height:20px;margin:10px auto;padding:5px;text-align:center;width:250px}.SelectPlan-plans{height:100%;text-align:center}@media (min-width:760px){.SelectPlan-plans{align-items:stretch;display:flex;margin:0 auto 29px;width:465px}}.SelectPlan-planDetails{background-color:#fff;border:2px solid #bababa;border-radius:3px;box-sizing:border-box;cursor:pointer;flex:1;font-size:12px;padding:17px}@media (max-width:759px){.SelectPlan-planDetails{margin-bottom:15px}}.SelectPlan-planDetails.SelectPlan-selected{border-color:#00a857;box-shadow:5px 5px 20px hsla(0,0%,9%,.1)}@media (min-width:760px){.SelectPlan-planDetails:first-child{margin-right:24px}}.SelectPlan-planHeader{background-color:#bababa;color:#fff;font-size:18px;font-weight:700;margin:-17px -17px 20px;padding:3px}.SelectPlan-planHeader.SelectPlan-selected{background-color:#00a857;margin-bottom:20px}.SelectPlan-price{color:#747474;font-size:20px;font-weight:700;line-height:14px}.SelectPlan-price.SelectPlan-selected{color:#008456}.SelectPlan-priceSubtext{color:#9e9e9e;font-size:14px;font-weight:700;margin-bottom:10px;text-transform:lowercase}.SelectPlan-perk{display:flex;margin-bottom:8px}.SelectPlan-perkBullet{margin-top:4px}.SelectPlan-perkText{flex:1;line-height:18px;padding-left:8px;text-align:left}.SelectPlan-perkText.SelectPlan-active{color:#424242;font-size:16px;font-weight:700}.SelectPlan-perkText.SelectPlan-active.SelectPlan-selected{color:#008456}.SelectPlan-planFootNote{color:#bababa;font-size:8px;line-height:9px}.SelectPlan-perksContainer{height:100%;margin:10px 0;text-align:center}@media (min-width:760px){.SelectPlan-perksContainer{align-items:stretch;margin:20px auto 29px;width:465px}}.SelectPlan-perksContainer .SelectPlan-perk{margin-bottom:15px}.SelectPlan-perksContainer .SelectPlan-perkText{color:#424242;font-size:15px;font-weight:500}@media (max-width:759px){.SelectPlan-containerPianoTest .SelectPlan-ctaPrimary{font-size:20px;margin-top:15px;padding:0 40px}.SelectPlan-containerPianoTest .SelectPlan-saveBubble{background-color:#00a857;border-radius:13px;color:#fff;font-size:12px;font-weight:700;height:24px;padding:2px 12px;position:absolute;right:-14px;top:-16px;width:80px}.SelectPlan-containerPianoTest .SelectPlan-discountPrice{color:#747474;font-size:12px;text-decoration:line-through}.SelectPlan-containerPianoTest .SelectPlan-planDetails{border:1px solid #9e9e9e;box-shadow:0 1px 4px rgba(0,0,0,.3);height:60px;margin:0 auto;max-width:203px;padding:0;position:relative}.SelectPlan-containerPianoTest .SelectPlan-selected{border:1px solid #008456;box-shadow:inset 1px 1px 6px rgba(0,0,0,.25)}.SelectPlan-containerPianoTest .SelectPlan-priceContainer{align-content:center;display:flex;flex-direction:column;font-weight:700;height:60px;justify-content:center;padding:7px 20px;text-align:right}.SelectPlan-containerPianoTest .SelectPlan-plans{padding:26px 40px 33px}.SelectPlan-containerPianoTest .SelectPlan-freeTrail{color:#424242;font-size:10px;font-weight:700;margin:9px auto 21px;max-width:203px;text-align:right}.SelectPlan-containerPianoTest .SelectPlan-frequency{font-size:10px;font-weight:700}.SelectPlan-containerPianoTest .SelectPlan-price{color:#00a857;font-size:16px;font-weight:700}.SelectPlan-containerPianoTest .SelectPlan-svgRadio{left:20px;position:absolute;top:20px}}.ProSignupModal-modalContents{padding:21px}.ProSignupModal-createAccContainer{width:670px}@media (min-width:760px) and (max-width:1019px){.ProSignupModal-createAccContainer{width:558px}}@media (max-width:759px){.ProSignupModal-createAccContainer{width:100%}}.ProSignupModal-createAccContainer .ProSignupModal-ctaPrimary{color:#171717;font-size:20px;font-weight:600;margin-bottom:5px;text-align:center}@media (max-width:759px){.ProSignupModal-createAccContainer .ProSignupModal-ctaPrimary{font-size:18px}}.SignupProgress-stepsLine{background-color:#171717;flex:1;height:1px;margin-top:9px;width:100%}.SignupProgress-steps{display:flex;margin:0 auto;padding-bottom:30px;position:relative;width:250px}.SignupProgress-step{flex:0;position:relative}.SignupProgress-stepIcon{box-shadow:5px 5px 20px hsla(0,0%,9%,.1)}.SignupProgress-stepTitle{color:#171717;font-size:11px;font-weight:600;left:-42px;position:absolute;text-align:center;width:100px}.tp-backdrop{background:rgba(0,0,0,.7)!important;transition:none!important}.tp-modal .tp-close{background:url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16 1.611 14.389 0 8 6.389 1.611 0 0 1.611 6.389 8 0 14.389 1.611 16 8 9.611 14.389 16 16 14.389 9.611 8 16 1.611Z' fill='%23747474'/%3E%3C/svg%3E") 50% no-repeat!important;border-radius:0!important;height:16px!important;right:12px!important;top:12px!important;transform:none!important;width:16px!important}.tp-modal .tp-close,.tp-modal .tp-close:focus,.tp-modal .tp-close:hover{box-shadow:none!important}.tp-iframe-wrapper{background-color:#f8f8f8!important;border-radius:4px;box-shadow:5px 5px 20px hsla(0,0%,9%,.1)!important;margin:0 auto!important;overflow:hidden;position:relative!important}@media (min-width:651px){.tp-iframe-wrapper{margin:100px auto!important}}.tp-modal{height:auto!important}.ValueProps-container{width:714px}@media (min-width:760px) and (max-width:1019px){.ValueProps-container{width:558px}}@media (max-width:759px){.ValueProps-container{width:100%}}.ValueProps-valuePropsContainer{display:flex;margin:0 auto;padding:10px 0 43px;width:620px}@media (max-width:1020px){.ValueProps-valuePropsContainer{display:block;padding-top:0;width:auto}}@media (min-width:360px) and (max-width:759px){.ValueProps-valuePropsContainer{width:90%}}.ValueProps-valuePropsContainerLoggedIn{display:block}.ValueProps-ctaSecondary{color:#424242;font-size:16px;font-weight:500;margin-bottom:10px;text-align:center}.ValueProps-signedInMessage{background:#f1f1f1;border:1px solid #d9d9d9;border-radius:5px;color:#424242;font-size:14px;font-weight:600;line-height:20px;margin:10px auto;padding:5px;text-align:center;width:250px}.ValueProps-perks{font-size:12px;line-height:14px;margin:0 10px 10px}.ValueProps-perk{display:flex;margin-bottom:8px}.ValueProps-perkBullet{margin-top:4px}.ValueProps-perkText{flex:1;line-height:18px;padding-left:8px;text-align:left}.ValueProps-investingClubPerks{height:100%;margin:10px 0 27px;text-align:center}@media (min-width:760px){.ValueProps-investingClubPerks{align-items:stretch;margin:40px 19px 20px auto;width:465px}}.ValueProps-investingClubPerks .ValueProps-perk{margin-bottom:25px}.ValueProps-investingClubPerks .ValueProps-perkText{color:#071d39;font-size:18px;font-weight:500}@media (min-width:360px) and (max-width:759px){.ValueProps-investingClubPerks .ValueProps-perkText{font-size:16px}}@media (min-width:760px){.ValueProps-investingClubPerksLoggedIn{margin:30px;width:auto}}.ValueProps-continueButton{align-items:center;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#00a857;border:1px solid #00a857;border-radius:3px;color:#fff;cursor:pointer;display:flex;flex-direction:row;font-size:14px;font-size:16px;font-weight:600;font-weight:700;height:40px;height:50px;justify-content:center;letter-spacing:1px;margin:0 auto 24px;padding:16px 0;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%;width:190px}.ValueProps-continueButton>span{display:block;line-height:12px}.ValueProps-continueButton [class*=" icon-"],.ValueProps-continueButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.ValueProps-continueButton [class*=" icon-"]:before,.ValueProps-continueButton [class^=icon-]:before{line-height:12px}.ValueProps-continueButton:focus,.ValueProps-continueButton:hover{background-color:#008456;border-color:#008456;color:#fff}.ValueProps-continueButton[class*=touchButton]:hover{background-color:#00a857;border-color:#00a857;color:#fff}@media (hover:hover){.ValueProps-continueButton[class*=touchButton]:hover{background-color:#008456;border-color:#008456;color:#fff}}@media (min-width:760px){.ValueProps-continueButton{padding:0 30px;width:auto;width:190px}}@media (max-width:759px){.ValueProps-continueButton{width:100%}}.ValueProps-valueProps{font-size:12px;letter-spacing:.5px;padding-left:8px;width:50%}@media (min-width:760px){.ValueProps-valueProps{font-size:14px}}.InvestingClubModal-modalContents{background:#fff linear-gradient(0deg,#8fd0ff,#fff 50%);padding:21px}.InvestingClubModal-modalContents.InvestingClubModal-nobackground{background:#f8f8f8}.InvestingClubModal-createAccContainer{width:670px}@media (min-width:760px) and (max-width:1019px){.InvestingClubModal-createAccContainer{width:558px}}@media (max-width:759px){.InvestingClubModal-createAccContainer{width:100%}}.InvestingClubModal-createAccContainer .InvestingClubModal-ctaPrimary{color:#171717;font-size:20px;font-weight:600;margin-bottom:5px;text-align:center}@media (max-width:759px){.InvestingClubModal-createAccContainer .InvestingClubModal-ctaPrimary{font-size:18px}}.SignInOrSignUpModal-modalContents{padding:21px}.UnlockConfirmation-modalContents{padding:40px 71px 71px}@media (max-width:759px){.UnlockConfirmation-modalContents{padding:40px 51px 51px}}.UnlockConfirmation-logoHeader{color:#333;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:28px;font-weight:700;line-height:1.05;padding-bottom:24px;text-align:center}@media (max-width:1019px){.UnlockConfirmation-logoHeader{font-size:28px;margin-bottom:12px}}@media (max-width:759px){.UnlockConfirmation-logoHeader{font-size:22px}}.UnlockConfirmation-logoProImg{display:inline-block;margin:0;padding:0;vertical-align:middle;width:204px}@media (max-width:1019px){.UnlockConfirmation-logoProImg{width:194px}}@media (max-width:759px){.UnlockConfirmation-logoProImg{width:164px}}.UnlockConfirmation-modalUnlockContainer{margin-left:auto;margin-right:auto;max-width:500px;padding:10px;text-align:center}@media (max-width:1019px){.UnlockConfirmation-modalUnlockContainer{width:100%}}.UnlockConfirmation-unlockText{color:#333;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:24px;font-weight:600;line-height:32px;padding-bottom:25px}@media (max-width:1019px){.UnlockConfirmation-unlockText{font-size:24px;line-height:26px;width:100%}}@media (max-width:759px){.UnlockConfirmation-unlockText{font-size:24px;line-height:22px}}.UnlockConfirmation-proText{color:#00a857}.UnlockConfirmation-unlockButton{align-items:center;background:rgba(0,168,87,.24);border-radius:50%;display:flex;height:40px;justify-content:center;margin-left:calc(50% - 20px);width:40px}.UnlockConfirmation-unlockIcon{height:25px;width:25px}.SignInOrSignUpConfirmationModal-modalContents{padding:21px}.LoggedInModal-modalContents{padding:40px 71px 71px}@media (max-width:759px){.LoggedInModal-modalContents{padding:40px 51px 51px}}.LoggedInModal-breaker{border:none;margin:0 -71px 24px;outline:.5px solid #cfd8e2}.LoggedInModal-logoHeader{color:#333;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:28px;font-weight:700;line-height:1.05;padding-bottom:24px;text-align:center}@media (max-width:1019px){.LoggedInModal-logoHeader{font-size:28px;margin-bottom:12px}}@media (max-width:759px){.LoggedInModal-logoHeader{font-size:22px}}.LoggedInModal-logoProImg{display:inline-block;margin:0;padding:0;vertical-align:middle;width:204px}@media (max-width:1019px){.LoggedInModal-logoProImg{width:194px}}@media (max-width:759px){.LoggedInModal-logoProImg{width:164px}}.LoggedInModal-modalUnlockContainer{margin-left:auto;margin-right:auto;max-width:500px;padding:10px;text-align:center}@media (max-width:1019px){.LoggedInModal-modalUnlockContainer{width:100%}}.LoggedInModal-unlockText{color:#333;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:24px;font-weight:600;line-height:32px;padding-bottom:25px}@media (max-width:1019px){.LoggedInModal-unlockText{font-size:24px;line-height:26px;width:100%}}@media (max-width:759px){.LoggedInModal-unlockText{font-size:24px;line-height:22px}}.LoggedInModal-headerTitle{color:#333;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:28px;font-weight:700;line-height:1.05;padding-bottom:20px}@media (max-width:1019px){.LoggedInModal-headerTitle{font-size:28px}}@media (max-width:759px){.LoggedInModal-headerTitle{font-size:24px;line-height:25px;padding-bottom:14px}}.LoggedInModal-proText{color:#00a857}.LoggedInModal-unlockButton{align-items:center;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#00a857;border:1px solid #00a857;border-radius:3px;box-shadow:-2px 2px 2px hsla(0,0%,9%,.25);color:#fff;cursor:pointer;display:flex;flex-direction:row;font-size:14px;font-size:22px;font-weight:600;height:40px;height:60px;justify-content:center;letter-spacing:1px;margin:0 auto;max-width:300px;outline:.5px solid #333;padding:0 20px;text-align:center;text-transform:uppercase;text-transform:none;transition:all .15s linear;width:100%;width:80%}.LoggedInModal-unlockButton>span{display:block;line-height:12px}.LoggedInModal-unlockButton [class*=" icon-"],.LoggedInModal-unlockButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.LoggedInModal-unlockButton [class*=" icon-"]:before,.LoggedInModal-unlockButton [class^=icon-]:before{line-height:12px}.LoggedInModal-unlockButton:focus,.LoggedInModal-unlockButton:hover{background-color:#008456;border-color:#008456;color:#fff}.LoggedInModal-unlockButton[class*=touchButton]:hover{background-color:#00a857;border-color:#00a857;color:#fff}@media (hover:hover){.LoggedInModal-unlockButton[class*=touchButton]:hover{background-color:#008456;border-color:#008456;color:#fff}}@media (min-width:760px){.LoggedInModal-unlockButton{padding:0 30px;width:auto;width:100%}}.LoggedInModal-unlockIcon{margin-right:8px}.DynamicPaywallSignUpModal-modalContents{padding-top:21px}.DynamicPaywallSignUpModal-logoHeader{border-bottom:1px solid #cfd8e2;color:#333;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:40px;font-weight:700;line-height:1.05;margin-bottom:24px;padding-bottom:24px;text-align:center}@media (max-width:1019px){.DynamicPaywallSignUpModal-logoHeader{font-size:36px;margin-bottom:12px}}@media (max-width:759px){.DynamicPaywallSignUpModal-logoHeader{font-size:24px}}.DynamicPaywallSignUpModal-logoProImg{display:inline-block;margin:0;padding:0;vertical-align:middle;width:204px}@media (max-width:1019px){.DynamicPaywallSignUpModal-logoProImg{width:194px}}@media (max-width:759px){.DynamicPaywallSignUpModal-logoProImg{width:164px}}.DynamicPaywallSignUpModal-modalSignUpContainer{margin-left:auto;margin-right:auto;max-width:824px;padding:10px}@media (max-width:1019px){.DynamicPaywallSignUpModal-modalSignUpContainer{width:100%}}.DynamicPaywallSignUpModal-signUpContainer{display:flex;flex-direction:row;justify-content:space-between}@media (max-width:1019px){.DynamicPaywallSignUpModal-signUpContainer{display:block}}.DynamicPaywallSignUpModal-previewContainer{padding-right:10px;padding-top:20px;position:relative}@media (max-width:1019px){.DynamicPaywallSignUpModal-previewContainer{padding:20px;width:100%}}@media (max-width:759px){.DynamicPaywallSignUpModal-previewContainer{padding:15px}}.DynamicPaywallSignUpModal-signupText{color:#333;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:24px;font-weight:600;line-height:32px;padding-bottom:25px;width:84%}@media (max-width:1019px){.DynamicPaywallSignUpModal-signupText{font-size:19px;line-height:26px;padding-bottom:15px;width:100%}}@media (max-width:759px){.DynamicPaywallSignUpModal-signupText{font-size:16px;line-height:22px}}.DynamicPaywallSignUpModal-headerTitle{color:#333;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:34px;font-weight:700;line-height:1.05;padding-bottom:20px}@media (max-width:1019px){.DynamicPaywallSignUpModal-headerTitle{font-size:36px;padding-bottom:10px}}@media (max-width:759px){.DynamicPaywallSignUpModal-headerTitle{font-size:24px;line-height:25px;padding-bottom:14px}}.DynamicPaywallSignUpModal-proText{color:#00a857}.DynamicPaywallSignUpModal-ctaText{color:#333;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:20px;font-weight:600}@media (max-width:1019px){.DynamicPaywallSignUpModal-ctaText{font-size:17px}}@media (max-width:759px){.DynamicPaywallSignUpModal-ctaText{font-size:14px}}.DynamicPaywallSignUpModal-ctaButton{color:#00a857;cursor:pointer;font-size:20px;font-weight:600}@media (max-width:1019px){.DynamicPaywallSignUpModal-ctaButton{font-size:17px}}@media (max-width:759px){.DynamicPaywallSignUpModal-ctaButton{font-size:14px}}.DynamicPaywallSignUpModal-createAccContainer{width:670px}@media (min-width:760px) and (max-width:1019px){.DynamicPaywallSignUpModal-createAccContainer{width:558px}}@media (max-width:759px){.DynamicPaywallSignUpModal-createAccContainer{width:100%}}.DynamicPaywallSignUpModal-createAccContainer .DynamicPaywallSignUpModal-ctaPrimary{color:#171717;font-size:20px;font-weight:600;margin-bottom:5px;text-align:center}@media (max-width:759px){.DynamicPaywallSignUpModal-createAccContainer .DynamicPaywallSignUpModal-ctaPrimary{font-size:18px}}.ResetPasswordModal-modalContents{padding:20px}@media (min-width:760px){.ResetPasswordModal-modalContents{width:500px}}.ResetPasswordModal-container{color:#171717;font-weight:700;padding:20px 50px;text-align:center;width:500px}.ResetPasswordModal-boundedContainer{max-width:350px}.ResetPasswordModal-confirmationHeader{font-size:18px;margin-top:10px}.ResetPasswordModal-email{color:#9e9e9e}.ResetPasswordModal-checkmark{height:50px;width:50px}.ResetPasswordModal-okayButton{align-items:center;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#002f6c;border:1px solid #002f6c;border-radius:3px;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;height:50px;justify-content:center;letter-spacing:1px;margin:20px auto 15px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%;width:200px}.ResetPasswordModal-okayButton>span{display:block;line-height:12px}.ResetPasswordModal-okayButton [class*=" icon-"],.ResetPasswordModal-okayButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.ResetPasswordModal-okayButton [class*=" icon-"]:before,.ResetPasswordModal-okayButton [class^=icon-]:before{line-height:12px}.ResetPasswordModal-okayButton:focus,.ResetPasswordModal-okayButton:hover,.ResetPasswordModal-okayButton[class*=touchButton]:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}@media (hover:hover){.ResetPasswordModal-okayButton[class*=touchButton]:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}}@media (min-width:760px){.ResetPasswordModal-okayButton{padding:0 30px;width:auto}}.ResetPasswordModal-okayButtonPro{align-items:center;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#00a857;border:1px solid #00a857;border-radius:3px;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;height:50px;justify-content:center;letter-spacing:1px;margin:20px auto 15px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%;width:200px}.ResetPasswordModal-okayButtonPro>span{display:block;line-height:12px}.ResetPasswordModal-okayButtonPro [class*=" icon-"],.ResetPasswordModal-okayButtonPro [class^=icon-]{height:12px;margin-left:5px;position:relative}.ResetPasswordModal-okayButtonPro [class*=" icon-"]:before,.ResetPasswordModal-okayButtonPro [class^=icon-]:before{line-height:12px}.ResetPasswordModal-okayButtonPro:focus,.ResetPasswordModal-okayButtonPro:hover{background-color:#008456;border-color:#008456;color:#fff}.ResetPasswordModal-okayButtonPro[class*=touchButton]:hover{background-color:#00a857;border-color:#00a857;color:#fff}@media (hover:hover){.ResetPasswordModal-okayButtonPro[class*=touchButton]:hover{background-color:#008456;border-color:#008456;color:#fff}}@media (min-width:760px){.ResetPasswordModal-okayButtonPro{padding:0 30px;width:auto}.ResetPasswordModal-okayButton{width:200px}}.UniversalVideoPlayer-videoContainer{opacity:1;position:absolute;z-index:10}.DynamicLoadingIndicator-spinnerParent{display:block;padding:10px}.DynamicLoadingIndicator-spinner{-webkit-animation:DynamicLoadingIndicator-spin 2s linear infinite;animation:DynamicLoadingIndicator-spin 2s linear infinite;border:3px solid #f3f3f3;border-radius:50%;border-top-color:#666;display:block;margin:0 auto}@-webkit-keyframes DynamicLoadingIndicator-spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}@keyframes DynamicLoadingIndicator-spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.ErrorHandler-container{background:#ff5053;height:100%;position:relative;width:100%;word-break:break-word}.hfsf{z-index:100}.NavSpacer-navSpacer{display:block;height:45px}.NavSpacer-navSpacer.NavSpacer-navSpacerCountDownClock,.NavSpacer-navSpacer.NavSpacer-navSpacerFiveThings{height:112px}@media (min-width:760px){.NavSpacer-navSpacer{height:70px}.NavSpacer-navSpacer.NavSpacer-navSpacerCountDownClock,.NavSpacer-navSpacer.NavSpacer-navSpacerFiveThings{height:112px}}.NavSpacer-navSpacer.NavSpacer-navSpacerNewsAlert{height:85px}.NavSpacer-navSpacer.NavSpacer-navSpacerNewsAlert.NavSpacer-navSpacerLiveAlert{height:125px}.NavSpacer-navSpacer.NavSpacer-navSpacerNewsAlert.NavSpacer-navSpacerCountDownClock,.NavSpacer-navSpacer.NavSpacer-navSpacerNewsAlert.NavSpacer-navSpacerFiveThings{height:192px}@media (min-width:760px){.NavSpacer-navSpacer.NavSpacer-navSpacerNewsAlert{height:110px}.NavSpacer-navSpacer.NavSpacer-navSpacerNewsAlert.NavSpacer-navSpacerLiveAlert{height:150px}.NavSpacer-navSpacer.NavSpacer-navSpacerNewsAlert.NavSpacer-navSpacerCountDownClock{height:152px}.NavSpacer-navSpacer.NavSpacer-navSpacerNewsAlert.NavSpacer-navSpacerFiveThings{height:185px}}.NavSpacer-navSpacer.NavSpacer-navSpacerLiveAlert{height:85px}@media (min-width:360px){.NavSpacer-navSpacer.NavSpacer-navSpacerLiveAlert.NavSpacer-navSpacerNewsAlert{height:125px}.NavSpacer-navSpacer.NavSpacer-navSpacerLiveAlert.NavSpacer-navSpacerNewsAlert.NavSpacer-NavSpacer-navSpacerFiveThings{height:162px}}@media (min-width:760px){.NavSpacer-navSpacer.NavSpacer-navSpacerLiveAlert.NavSpacer-navSpacerNewsAlert{height:150px}}@media (min-width:1020px){.NavSpacer-navSpacer.NavSpacer-navSpacerLiveAlert.NavSpacer-navSpacerNewsAlert{height:150px}}@media (min-width:1340px){.NavSpacer-navSpacer.NavSpacer-navSpacerLiveAlert.NavSpacer-navSpacerNewsAlert{height:150px}}.NavSpacer-navSpacer.NavSpacer-navSpacerLiveAlert.NavSpacer-navSpacerNewsAlert.NavSpacer-navSpacerFiveThings{height:185px}.NavSpacer-navSpacer.NavSpacer-navSpacerLiveAlert.NavSpacer-navSpacerNewsAlert.NavSpacer-navSpacerCountDownClock{height:192px}.NavSpacer-navSpacer.NavSpacer-navSpacerLiveAlert.NavSpacer-navSpacerCountDownClock,.NavSpacer-navSpacer.NavSpacer-navSpacerLiveAlert.NavSpacer-navSpacerFiveThings{height:152px}@media (min-width:760px){.NavSpacer-navSpacer.NavSpacer-navSpacerLiveAlert{height:110px}}.SelectHFSNav-container{margin-bottom:-20px;position:sticky;top:0;z-index:9999}@supports (-webkit-overflow-scrolling:touch){.hfsh .menu .inner:after{display:none!important}.menu-select__copyright:after{content:"";display:block;height:88px;width:100%}}nav.hfsh{pointer-events:auto!important}.MobileAdhesion-container{display:none;margin:10px auto;overflow:hidden;text-align:center}.JumpLink-container{margin:0 auto;position:relative;width:100%;z-index:1000}@media (min-width:1020px){.JumpLink-container{margin:0 auto;max-width:100%}}@media (min-width:1020px) and (min-width:760px){.JumpLink-container{max-width:678px}}@media (min-width:1020px) and (min-width:1020px){.JumpLink-container{max-width:960px}}@media (min-width:1020px) and (min-width:1340px){.JumpLink-container{max-width:1290px}}.JumpLink-link{align-items:center;background-color:#e8e8e8;color:#002f6c;display:flex;font-size:14px;font-weight:700;height:1px;left:-10000px;line-height:1;overflow:hidden;padding:0 14px;position:absolute;text-transform:uppercase;top:0;width:1px}.JumpLink-link:focus-visible{height:40px;left:0;width:auto}.SidebarArticle-sidebar{position:relative}@media (min-width:1020px){.SidebarArticle-sticky{margin-bottom:20px;position:sticky}}.SidebarArticle-noSticky{position:static!important}.SidebarArticle-noSticky .SidebarArticle-sticky{position:sticky}.LazyLoaderPlaceholder-articleBody{display:flex;flex-direction:row;flex-wrap:wrap;padding:0 20px}@media (min-width:760px){.LazyLoaderPlaceholder-articleBody{padding-left:0;padding-right:0}}.LazyLoaderPlaceholder-bodyText{color:#2e2e2e;font-family:Lyon,Helvetica,Arial,sans-serif;font-size:18px;line-height:1.66;margin-bottom:30px}@media (min-width:760px){.LazyLoaderPlaceholder-bodyText{flex-grow:0;flex-shrink:0;margin-left:calc(50% + 30px);max-width:75%;min-width:75%}}@media (min-width:760px) and (min-width:760px){.LazyLoaderPlaceholder-bodyText{margin-left:calc(16.66667% + 30px)}}@media (min-width:760px) and (min-width:1020px){.LazyLoaderPlaceholder-bodyText{margin-left:calc(22.22222% + 30px)}}@media (min-width:760px) and (min-width:1340px){.LazyLoaderPlaceholder-bodyText{margin-left:calc(16.66667% + 30px)}}@media (min-width:1020px){.LazyLoaderPlaceholder-bodyText{flex-grow:0;flex-shrink:0;margin-left:calc(25% + 30px);max-width:100%;min-width:100%}}@media (min-width:1020px) and (min-width:760px){.LazyLoaderPlaceholder-bodyText{margin-left:calc(8.33333% + 30px)}}@media (min-width:1020px) and (min-width:1020px){.LazyLoaderPlaceholder-bodyText{margin-left:calc(11.11111% + 30px)}}@media (min-width:1020px) and (min-width:1340px){.LazyLoaderPlaceholder-bodyText{margin-left:calc(8.33333% + 30px)}}@media (min-width:1340px){.LazyLoaderPlaceholder-bodyText{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:100%;min-width:100%}}@media (min-width:1340px) and (min-width:760px){.LazyLoaderPlaceholder-bodyText{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1020px){.LazyLoaderPlaceholder-bodyText{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1340px){.LazyLoaderPlaceholder-bodyText{margin-left:14.28571%}}@media (min-width:760px){.LazyLoaderPlaceholder-listWrapper{flex-grow:0;flex-shrink:0;margin-left:calc(50% + 30px);max-width:75%;min-width:75%}}@media (min-width:760px) and (min-width:760px){.LazyLoaderPlaceholder-listWrapper{margin-left:calc(16.66667% + 30px)}}@media (min-width:760px) and (min-width:1020px){.LazyLoaderPlaceholder-listWrapper{margin-left:calc(22.22222% + 30px)}}@media (min-width:760px) and (min-width:1340px){.LazyLoaderPlaceholder-listWrapper{margin-left:calc(16.66667% + 30px)}}@media (min-width:1020px){.LazyLoaderPlaceholder-listWrapper{flex-grow:0;flex-shrink:0;margin-left:calc(25% + 30px);max-width:100%;min-width:100%}}@media (min-width:1020px) and (min-width:760px){.LazyLoaderPlaceholder-listWrapper{margin-left:calc(8.33333% + 30px)}}@media (min-width:1020px) and (min-width:1020px){.LazyLoaderPlaceholder-listWrapper{margin-left:calc(11.11111% + 30px)}}@media (min-width:1020px) and (min-width:1340px){.LazyLoaderPlaceholder-listWrapper{margin-left:calc(8.33333% + 30px)}}@media (min-width:1340px){.LazyLoaderPlaceholder-listWrapper{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:100%;min-width:100%}}@media (min-width:1340px) and (min-width:760px){.LazyLoaderPlaceholder-listWrapper{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1020px){.LazyLoaderPlaceholder-listWrapper{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1340px){.LazyLoaderPlaceholder-listWrapper{margin-left:14.28571%}}.LazyLoaderPlaceholder-listTitle{font-size:24px;font-weight:700;margin-bottom:15px}.LazyLoaderPlaceholder-gridContainer{grid-gap:30px;display:grid;font-size:18px;font-weight:600;grid-template-columns:auto auto auto;line-height:22px;padding:10px}@media (min-width:360px) and (max-width:759px){.LazyLoaderPlaceholder-gridContainer{display:block;padding-left:0}}.LazyLoaderPlaceholder-gridItem{border-bottom:1px dashed hsla(0,0%,55%,.5)}.LazyLoaderPlaceholder-gridItem .LazyLoaderPlaceholder-author,.LazyLoaderPlaceholder-gridItem .LazyLoaderPlaceholder-headline,.LazyLoaderPlaceholder-gridItem .LazyLoaderPlaceholder-section{color:#000;display:block;margin-bottom:12px;margin-top:12px}.LazyLoaderPlaceholder-gridItem .LazyLoaderPlaceholder-headline:hover{text-decoration:underline}.LazyLoaderPlaceholder-gridItem .LazyLoaderPlaceholder-author,.LazyLoaderPlaceholder-gridItem .LazyLoaderPlaceholder-section{font-size:12px;line-height:12px;overflow-y:hidden}@media (min-width:360px) and (max-width:759px){.LazyLoaderPlaceholder-headline{word-break:break-word}}.LazyLoaderPlaceholder-moduleTitle{color:#000;display:block;font-size:32px;font-weight:800;line-height:37px;padding:10px}.LazyLoaderPlaceholder-moduleTitle:hover{color:#2077b6}@media (min-width:360px) and (max-width:759px){.LazyLoaderPlaceholder-moduleTitle{padding-left:0}}*{box-sizing:border-box}li,ol,ul{list-style:none;margin:0;padding:0}a{color:#fff;cursor:pointer;text-decoration:none}a:focus,a:hover{color:#fcb700}button{background:none;border:none;cursor:pointer;padding:0}table{border-collapse:collapse}td,th{padding:8px 15px 8px 0;text-align:left}img{display:block}html{-ms-overflow-style:-ms-autohiding-scrollbar}body{-webkit-font-smoothing:antialiased;-webkit-text-size-adjust:100%;border:0;font-family:Proxima Nova,Helvetica,Arial,sans-serif;margin:0;padding:0}body:after{content:"mobile";display:none}@media (min-width:760px){body:after{content:"tablet"}}@media (min-width:1020px){body:after{content:"small_desktop"}}@media (min-width:1180px){body:after{content:"medium_desktop"}}@media (min-width:1340px){body:after{content:"large_desktop"}}:focus{outline:none}button{border-radius:0;font-family:Proxima Nova,Helvetica,Arial,sans-serif}button::-moz-focus-inner{border:0}.openNav{position:fixed;width:100%}@media (min-width:1020px){.openNav{overflow-y:scroll}}.App-articleBody{display:flex;flex-direction:row;flex-wrap:wrap;padding:0 20px}@media (min-width:760px){.App-articleBody{padding-left:0;padding-right:0}}.group{font-family:Lyon,Helvetica,Arial,sans-serif;font-size:18px;line-height:1.66;margin-bottom:30px}@media (min-width:760px){.group{flex-grow:0;flex-shrink:0;margin-left:calc(50% + 30px);max-width:75%;min-width:75%}}@media (min-width:760px) and (min-width:760px){.group{margin-left:calc(16.66667% + 30px)}}@media (min-width:760px) and (min-width:1020px){.group{margin-left:calc(22.22222% + 30px)}}@media (min-width:760px) and (min-width:1340px){.group{margin-left:calc(16.66667% + 30px)}}@media (min-width:1020px){.group{flex-grow:0;flex-shrink:0;margin-left:calc(25% + 30px);max-width:100%;min-width:100%}}@media (min-width:1020px) and (min-width:760px){.group{margin-left:calc(8.33333% + 30px)}}@media (min-width:1020px) and (min-width:1020px){.group{margin-left:calc(11.11111% + 30px)}}@media (min-width:1020px) and (min-width:1340px){.group{margin-left:calc(8.33333% + 30px)}}@media (min-width:1340px){.group{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:100%;min-width:100%}}@media (min-width:1340px) and (min-width:760px){.group{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1020px){.group{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1340px){.group{margin-left:14.28571%}}@media (max-width:759px){.hideOnMobile{display:none}}.App-bodyText{color:#2e2e2e;font-family:Lyon,Helvetica,Arial,sans-serif;font-size:18px;line-height:1.66;margin-bottom:30px}@media (min-width:760px){.App-bodyText{flex-grow:0;flex-shrink:0;margin-left:calc(50% + 30px);max-width:75%;min-width:75%}}@media (min-width:760px) and (min-width:760px){.App-bodyText{margin-left:calc(16.66667% + 30px)}}@media (min-width:760px) and (min-width:1020px){.App-bodyText{margin-left:calc(22.22222% + 30px)}}@media (min-width:760px) and (min-width:1340px){.App-bodyText{margin-left:calc(16.66667% + 30px)}}@media (min-width:1020px){.App-bodyText{flex-grow:0;flex-shrink:0;margin-left:calc(25% + 30px);max-width:100%;min-width:100%}}@media (min-width:1020px) and (min-width:760px){.App-bodyText{margin-left:calc(8.33333% + 30px)}}@media (min-width:1020px) and (min-width:1020px){.App-bodyText{margin-left:calc(11.11111% + 30px)}}@media (min-width:1020px) and (min-width:1340px){.App-bodyText{margin-left:calc(8.33333% + 30px)}}@media (min-width:1340px){.App-bodyText{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:100%;min-width:100%}}@media (min-width:1340px) and (min-width:760px){.App-bodyText{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1020px){.App-bodyText{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1340px){.App-bodyText{margin-left:14.28571%}}@media (min-width:760px){.App-listWrapper{flex-grow:0;flex-shrink:0;margin-left:calc(50% + 30px);max-width:75%;min-width:75%}}@media (min-width:760px) and (min-width:760px){.App-listWrapper{margin-left:calc(16.66667% + 30px)}}@media (min-width:760px) and (min-width:1020px){.App-listWrapper{margin-left:calc(22.22222% + 30px)}}@media (min-width:760px) and (min-width:1340px){.App-listWrapper{margin-left:calc(16.66667% + 30px)}}@media (min-width:1020px){.App-listWrapper{flex-grow:0;flex-shrink:0;margin-left:calc(25% + 30px);max-width:100%;min-width:100%}}@media (min-width:1020px) and (min-width:760px){.App-listWrapper{margin-left:calc(8.33333% + 30px)}}@media (min-width:1020px) and (min-width:1020px){.App-listWrapper{margin-left:calc(11.11111% + 30px)}}@media (min-width:1020px) and (min-width:1340px){.App-listWrapper{margin-left:calc(8.33333% + 30px)}}@media (min-width:1340px){.App-listWrapper{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:100%;min-width:100%}}@media (min-width:1340px) and (min-width:760px){.App-listWrapper{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1020px){.App-listWrapper{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1340px){.App-listWrapper{margin-left:14.28571%}}@media (min-width:760px){#taboolaContainer{flex-grow:0;flex-shrink:0;margin-left:calc(50% + 30px);max-width:75%;min-width:75%}}@media (min-width:760px) and (min-width:760px){#taboolaContainer{margin-left:calc(16.66667% + 30px)}}@media (min-width:760px) and (min-width:1020px){#taboolaContainer{margin-left:calc(22.22222% + 30px)}}@media (min-width:760px) and (min-width:1340px){#taboolaContainer{margin-left:calc(16.66667% + 30px)}}@media (min-width:1020px){#taboolaContainer{flex-grow:0;flex-shrink:0;margin-left:calc(25% + 30px);max-width:100%;min-width:100%}}@media (min-width:1020px) and (min-width:760px){#taboolaContainer{margin-left:calc(8.33333% + 30px)}}@media (min-width:1020px) and (min-width:1020px){#taboolaContainer{margin-left:calc(11.11111% + 30px)}}@media (min-width:1020px) and (min-width:1340px){#taboolaContainer{margin-left:calc(8.33333% + 30px)}}@media (min-width:1340px){#taboolaContainer{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:100%;min-width:100%}}@media (min-width:1340px) and (min-width:760px){#taboolaContainer{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1020px){#taboolaContainer{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1340px){#taboolaContainer{margin-left:14.28571%}}@media (min-width:760px){#taboolaContainer{flex:none}}@media (min-width:1020px){#taboolaContainer{flex-grow:0;flex-shrink:0;flex:none;margin-left:calc(16.66667% + 5px);max-width:calc(83.33333% - 5px);min-width:calc(83.33333% - 5px)}}@media (min-width:1340px){#taboolaContainer{flex-grow:0;flex-shrink:0;flex:none;margin-left:calc(14.28571% + 4.28571px);max-width:calc(85.71429% - 4.28571px);min-width:calc(85.71429% - 4.28571px)}}.App-listTitle{font-size:24px;font-weight:700;margin-bottom:15px}.numeric{text-align:right}@media (prefers-color-scheme:dark){.webview,.webview #taboola-below-article-thumbnails-Bento-Feed,.webview #taboola-below-article-thumbnails-Bento-Feed .video-title,.webview .trc_rbox_header_span{background-color:#000;color:#dce0e4}.webview #taboola-below-article-thumbnails-Bento-Feed .video-title a,.webview #taboola-below-article-thumbnails-Bento-Feed a,.webview .trc_rbox_header_span a,.webview a{color:#dce0e4}}.grecaptcha-badge{display:none}@font-face{font-display:swap;font-family:icomoon;font-style:normal;font-weight:400;src:url(https://static-redesign.cnbcfm.com/dist/icomoon.eot);src:url(https://static-redesign.cnbcfm.com/dist/icomoon.eot#iefix) format("embedded-opentype"),url(https://static-redesign.cnbcfm.com/dist/icomoon.ttf) format("truetype"),url(https://static-redesign.cnbcfm.com/dist/icomoon.woff) format("woff"),url(https://static-redesign.cnbcfm.com/dist/d231ed26aaa9397191e9.svg?xzw80u#icomoon) format("svg")}[class*=" icon-"],[class^=icon-]{speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-family:icomoon!important;font-style:normal;font-variant:normal;font-weight:400;line-height:1;text-transform:none}.icon-social_apple_news:before{content:"\e900"}.icon-close-2:before{content:"\e901"}.icon-thumbs-up:before{content:"\e902"}.icon-chat-bubble:before{content:"\e903"}.icon-chat-bubble-hover:before{content:"\e904"}.icon-thumbs-down:before{content:"\e905"}.icon-buffett-pause:before{content:"\e906"}.icon-buffett-timeline:before{content:"\e907"}.icon-buffett-backtotop:before{content:"\e908"}.icon-buffett-sync:before{content:"\e909"}.icon-buffett-arrow-right-long:before{content:"\e90a"}.icon-buffett-arrow-left-long:before{content:"\e90b"}.icon-buffett-diamond:before{content:"\e90c"}.icon-check:before{content:"\e90d"}.icon-search:before{content:"\e90e"}.icon-hamburger:before{content:"\e90f"}.icon-close:before{content:"\e910"}.icon-social_facebook:before{content:"\e911"}.icon-social_instagram:before{content:"\e912"}.icon-social_linkedin:before{content:"\e913"}.icon-social_rss:before{content:"\e914"}.icon-social_twitter:before{content:"\e915"}.icon-social_youtube:before{content:"\e916"}.icon-tumblr:before{content:"\e917"}.icon-stumbleupon:before{content:"\e918"}.icon-reddit:before{content:"\e919"}.icon-quote-mark:before{content:"\e91a"}.icon-probug:before{content:"\e91b"}.icon-play-triangle:before{content:"\e91c"}.icon-pinterest:before{content:"\e91d"}.icon-more-dots:before{content:"\e91e"}.icon-play:before{content:"\e91f"}.icon-email:before{content:"\e920"}.icon-digg:before{content:"\e921"}.icon-arrow-left:before{content:"\e922"}.icon-arrow-right:before{content:"\e923"}.icon-arrow-down-readmore:before{content:"\e924"}.icon-arrow-transporter-down:before{content:"\e925"}.icon-calendar:before{content:"\e926"}.icon-livebug:before{content:"\e927"}.icon-lock:before{content:"\e928"}.icon-sort:before{content:"\e929"}.icon-cnbctv:before{content:"\e92a"}.icon-markets:before{content:"\e92b"}.icon-menu:before{content:"\e92c"}.icon-news:before{content:"\e92d"}.icon-offsite-arrow:before{content:"\e92e"}.icon-short-arrow-left:before{content:"\e92f"}.icon-short-arrow-right:before{content:"\e930"}.icon-live:before{content:"\e931"}.icon-newsletter:before{content:"\e932"}.icon-caret-left:before{content:"\e933"}.icon-triangle-down:before{content:"\e934"}.icon-triangle-up:before{content:"\e935"}.icon-caret-right:before{content:"\e936"}.icon-buffett-arrow-left:before{content:"\e937"}.icon-buffett-arrow-right:before{content:"\e938"}.icon-buffett-chevron-down:before{content:"\e939"}.icon-buffett-chevron-left:before{content:"\e93a"}.icon-buffett-chevron-right:before{content:"\e93b"}.icon-buffett-chevron-up:before{content:"\e93c"}.icon-buffett-playlist:before{content:"\e93d"}.icon-buffett-slideshow:before{content:"\e93e"}.icon-buffett-video-fullscreen:before{content:"\e93f"}.icon-buffett-video-mute:before{content:"\e940"}.icon-buffett-video-volume:before{content:"\e941"}.icon-buffett-video:before{content:"\e91C"}.PlayButton-buffett .icon-buffett-video:before{content:"\e942"}.icon-video_back_to_top:before{content:"\e943"}.icon-video_close:before{content:"\e944"}.icon-logo-cnbc:before{content:"\e945"}.icon-minus:before{content:"\e946"}.icon-plus:before{content:"\e947"}.icon-watchlist:before{content:"\e948"}.icon-replay:before{content:"\e965"}@font-face{font-display:swap;font-family:makeit-icons;font-style:normal;font-weight:400;src:url(https://static-redesign.cnbcfm.com/dist/makeit-icons.eot);src:url(https://static-redesign.cnbcfm.com/dist/makeit-icons.woff2) format("embedded-opentype"),url(https://static-redesign.cnbcfm.com/dist/makeit-icons.ttf) format("truetype"),url(https://static-redesign.cnbcfm.com/dist/makeit-icons.woff) format("woff"),url(https://static-redesign.cnbcfm.com/dist/62140da39836672b65c3.svg?h2gve7#makeit-icons) format("svg")}[class*=" icon-makeit-"]:before,[class^=icon-makeit-]:before{display:inline-block;font-family:makeit-icons!important}.icon-makeit-arrow-down:before{content:"\e900"}.icon-makeit-arrow-left:before{content:"\e901"}.icon-makeit-arrow-right:before{content:"\e902"}.icon-makeit-arrow-up:before{content:"\e903"}.icon-makeit-backtotop:before{content:"\e904"}.icon-makeit-check:before{content:"\e905"}.icon-makeit-close:before{content:"\e906"}.icon-makeit-externallink:before{content:"\e907"}.icon-makeit-filter-closed:before{content:"\e908"}.icon-makeit-filter-open:before{content:"\e909"}.icon-makeit-fullscreen:before{content:"\e90a"}.icon-makeit-hamburger:before{content:"\e90b"}.icon-makeit-logo-cnbc:before{content:"\e90c"}.icon-makeit-mail:before{content:"\e90d"}.icon-makeit-mute:before{content:"\e90e"}.icon-makeit-pause:before{content:"\e90f"}.icon-makeit-play:before{content:"\e910"}.icon-makeit-questionnaire:before{content:"\e911"}.icon-makeit-quote:before{content:"\e912"}.icon-makeit-search:before{border-top:1px solid transparent;content:"\e913"}.icon-makeit-trending-bug:before{content:"\e914"}.icon-makeit-unmute:before{content:"\e915"}.icon-makeit-plus:before{content:"\e916"}.icon-makeit-minus:before{content:"\e917"}.icon-makeit-newsletter:before{content:"\e918"}@font-face{font-display:swap;font-family:social-icons;font-style:normal;font-weight:400;src:url(https://static-redesign.cnbcfm.com/dist/social-icons.eot);src:url(https://static-redesign.cnbcfm.com/dist/social-icons.woff2) format("embedded-opentype"),url(https://static-redesign.cnbcfm.com/dist/social-icons.ttf) format("truetype"),url(https://static-redesign.cnbcfm.com/dist/social-icons.woff) format("woff"),url(https://static-redesign.cnbcfm.com/dist/b2460f56a3dd6c592c18.svg?7b5vsl#icomoon) format("svg")}[class*=" gig-button-container-"],[class^=gig-button-container-]{speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-family:social-icons!important;font-style:normal;font-variant:normal;font-weight:400;line-height:1;text-transform:none}.gig-button-container-facebook .icon-social:before{content:"\e911"}.gig-button-container-instagram .icon-social:before{content:"\e912"}.gig-button-container-linkedin .icon-social:before{content:"\e913"}.gig-button-container-rss .icon-social:before{content:"\e914"}.gig-button-container-twitter .icon-social:before{content:"\e915"}.gig-button-container-youtube .icon-social:before{content:"\e916"}.gig-button-container-tumblr .icon-social:before{content:"\e917"}.gig-button-container-stumbleupon .icon-social:before{content:"\e918"}.gig-button-container-reddit .icon-social:before{content:"\e919"}.gig-button-container-pinterest .icon-social:before{content:"\e91d"}.gig-button-container-share .icon-social:before{content:"\e91e"}.gig-button-container-email .icon-social:before{content:"\e920"}.gig-button-container-digg .icon-social:before{content:"\e921"}.transition-fade-enter{opacity:.01!important}.transition-fade-appear{opacity:.01}.transition-fade-appear.transition-fade-appear-active{opacity:1!important;transition:opacity .5s ease-in}.transition-fade-enter.transition-fade-enter-active{opacity:1!important;transition:opacity .3s ease-in}.transition-transform-y-appear{transform:translateY(20%);transition:transform .5s ease-in}.transition-transform-y-appear.transition-transform-y-appear-active{transform:translateY(0);transition:transform .5s ease-in}.transition-top-enter{transform:translateY(-100%)}.transition-search-fade-enter{opacity:.01!important}.transition-search-fade-enter.transition-search-fade-enter-active{opacity:1!important;transition:opacity .5s ease-in}.transition-top-enter.transition-top-enter-active{transform:translateY(0);transition:transform .5s}.transition-bottom-enter{transform:translateY(100%)}.transition-bottom-enter.transition-bottom-enter-active{transform:translateY(0);transition:transform .5s}.mega-menu-enter{opacity:.01!important}.mega-menu-enter .mega-menu-megaMenu{transform:translate3d(0,-100%,0)!important}.mega-menu-enter.mega-menu-enter-active{opacity:1!important;transition:opacity .3s ease-in}.mega-menu-enter.mega-menu-enter-active .mega-menu-megaMenu{transform:translateZ(0)!important;transition:transform .3s cubic-bezier(.645,.045,.355,1)}.mega-menu-exit{opacity:1!important}.mega-menu-exit .mega-menu-megaMenu{transform:translateZ(0)!important}.mega-menu-exit.mega-menu-exit-active{opacity:.01!important;transition:opacity .15s ease-in}.mega-menu-exit.mega-menu-exit-active .mega-menu-megaMenu{transform:translate3d(0,-100%,0)!important;transition:transform .15s cubic-bezier(.645,.045,.355,1)}.App-contentWrapper{margin-top:45px}@media (min-width:760px){.App-contentWrapper{margin-top:70px}}.App-contentWrapperClock{margin-top:112px}.App-containerClick a:focus,.App-containerClick button:focus,.App-containerClick input:focus,.App-containerClick textarea:focus{outline:none}.App-proContentRecommendation{bottom:0;position:fixed;width:100%;z-index:9999}@media (max-width:759px){.App-proContentRecommendation{bottom:55px}}.App-makeit.App-buttonContainer{margin-bottom:20px;position:relative;text-align:center;width:auto}@media (min-width:760px){.App-makeit.App-buttonContainer{margin-bottom:50px}}.App-makeit .App-buttonLink{background:#fff;border:3px solid #68ebca;color:#3e4855;display:inline-block;font-size:14px;font-weight:600;height:42px;letter-spacing:3px;line-height:12px;padding:12px 75px;text-transform:uppercase;width:auto}.App-makeit .App-buttonLink:hover{background-color:#68ebca}body .makeitBrand{font-family:Averta,Helvetica,Arial,sans-serif}body .makeitBrand #faceteddata div>a{color:#000}.HalfAndHalfBreaker-halfAndHalfBreaker{margin-left:-20px;margin-right:-20px;width:auto}@media (min-width:760px){.HalfAndHalfBreaker-halfAndHalfBreaker{margin:0}}@media (min-width:1020px){.HalfAndHalfBreaker-halfAndHalfBreaker{padding-left:0;padding-right:0}}.HalfAndHalfBreaker-container{margin:0 auto;max-width:100%;width:100%}@media (min-width:760px){.HalfAndHalfBreaker-container{max-width:678px}}@media (min-width:1020px){.HalfAndHalfBreaker-container{max-width:960px}}@media (min-width:1340px){.HalfAndHalfBreaker-container{max-width:1290px}}@media (min-width:1020px){.HalfAndHalfBreaker-container{display:flex;max-width:none}}.HalfAndHalfBreaker-wrapper{position:relative}.HalfAndHalfBreaker-section{background-position:50%;background-size:cover;padding:30px 20px;position:relative;width:100%}.HalfAndHalfBreaker-section:last-child{border-top:1px solid #fff}@media (min-width:760px){.HalfAndHalfBreaker-section{display:flex;padding-left:0;padding-right:0}}@media (min-width:1020px){.HalfAndHalfBreaker-section{flex-direction:column;height:auto;max-width:50%;min-width:50%;padding:30px}.HalfAndHalfBreaker-section:first-child{padding-left:0}.HalfAndHalfBreaker-section:last-child{border-left:1px solid #fff;border-top:none;padding-right:0}}.HalfAndHalfBreaker-newsletterIcon{display:flex;margin-right:15px}.HalfAndHalfBreaker-newsletterIcon .icon-newsletter:before{font-size:38px;line-height:.73;position:relative;top:4px}@media (min-width:760px){.HalfAndHalfBreaker-newsletterIcon .icon-newsletter:before{font-size:44px;top:-2px}}@media (min-width:1020px){.HalfAndHalfBreaker-newsletterIcon .icon-newsletter:before{top:4px}}@media (min-width:1340px){.HalfAndHalfBreaker-newsletterIcon .icon-newsletter:before{font-size:45px;top:3px}}.HalfAndHalfBreaker-logo{display:block;height:auto;margin-right:15px;width:160px}@media (min-width:760px){.HalfAndHalfBreaker-logo{width:265px}}@media (min-width:1020px){.HalfAndHalfBreaker-logo{width:265px}}.HalfAndHalfBreaker-title{align-items:center;color:#fff;display:flex;font-size:24px;font-weight:700;letter-spacing:-.16em;line-height:32px;margin-bottom:10px;max-width:100%;position:relative;z-index:2}@media (min-width:760px){.HalfAndHalfBreaker-title{align-items:flex-start;font-size:26px;line-height:30px;padding-right:30px;width:51%}}@media (min-width:1020px){.HalfAndHalfBreaker-title{align-items:center;font-size:32px;line-height:31px;min-height:40px;padding-right:20px;width:100%}}.HalfAndHalfBreaker-titleImage{display:block;margin-bottom:10px;max-width:100%;padding-right:20px;position:relative;z-index:2}@media (min-width:760px){.HalfAndHalfBreaker-titleImage{max-height:40px;padding-right:30px;width:51%}}@media (min-width:1020px){.HalfAndHalfBreaker-titleImage{padding-right:20px;width:100%}}.HalfAndHalfBreaker-content{max-width:100%;position:relative;z-index:2}@media (min-width:760px){.HalfAndHalfBreaker-content{float:left;width:60%}}@media (min-width:1020px){.HalfAndHalfBreaker-content{align-items:flex-start;display:flex;flex-direction:column;flex-grow:1;float:none;width:auto}}@media (min-width:1340px){.HalfAndHalfBreaker-content{display:flex;flex-direction:row;justify-content:space-between;width:100%}}.HalfAndHalfBreaker-description{color:#fff;font-family:Lyon,Helvetica,Arial,sans-serif;font-size:16px;font-weight:500;line-height:24px;margin:0 0 20px;max-width:100%;position:relative;z-index:2}@media (min-width:760px){.HalfAndHalfBreaker-description{margin-top:0}}@media (min-width:1020px){.HalfAndHalfBreaker-description{margin-top:15px;padding-right:20px}}@media (min-width:1340px){.HalfAndHalfBreaker-description{margin-bottom:0;max-width:none;padding-right:40px}}.HalfAndHalfBreaker-button{background:transparent;border:1px solid #fff;color:#fff;display:inline-block;font-size:12px;font-weight:600;height:40px;letter-spacing:1.09px;line-height:40px;position:relative;text-align:center;text-transform:uppercase;white-space:nowrap;width:100%;z-index:2}.HalfAndHalfBreaker-button:hover{background-color:#fcb700;border-color:#fcb700;color:#071d39}@media (min-width:760px){.HalfAndHalfBreaker-button{padding:0 20px;width:auto}}@media (min-width:1020px){.HalfAndHalfBreaker-button{margin-top:auto}}@media (min-width:1340px){.HalfAndHalfBreaker-button{margin:20px 0 0 auto}}.HalfAndHalfBreaker-background1{background-position:50%;background-size:cover;border:none;height:100%;left:0;position:absolute;top:0;width:100%}@media (min-width:760px){.HalfAndHalfBreaker-background1{width:100%}}@media (min-width:1020px){.HalfAndHalfBreaker-background1{left:0;margin-left:calc(-50vw - -480px);width:50vw}}@media (min-width:1180px){.HalfAndHalfBreaker-background1{margin-left:calc(-50vw - -538.5px)}}@media (min-width:1340px){.HalfAndHalfBreaker-background1{margin-left:calc(-50vw - -645px)}}.HalfAndHalfBreaker-background1:after{background:linear-gradient(90deg,rgba(7,29,57,.9),rgba(57,187,122,.9));content:"";height:100%;left:0;position:absolute;top:0;width:100%;z-index:1}@media (min-width:1020px){.HalfAndHalfBreaker-background2{margin-left:0}}.HalfAndHalfBreaker-background2:after{background:linear-gradient(90deg,rgba(7,29,57,.9),rgba(0,85,148,.9));content:"";height:100%;left:0;position:absolute;top:0;width:100%;z-index:1}.HalfAndHalfBreaker-proBackground:after{background:#2e2e2e linear-gradient(180deg,#2e2e2e 40%,rgba(57,187,122,.9))}@media (min-width:1020px){.HalfAndHalfBreaker-proBackground:after{background:#2e2e2e linear-gradient(90deg,#2e2e2e 40%,rgba(57,187,122,.9))}}.HalfAndHalfBreaker-watchlistBackground:after{background:linear-gradient(270deg,rgba(7,29,57,.9) 10%,#005594)}@media (min-width:760px){.HalfAndHalfBreaker-watchlistBackground:after{background:linear-gradient(90deg,rgba(46,46,46,.9) 40%,#005594)}}.HalfAndHalfBreaker-newsletterBackground:after{background:linear-gradient(180deg,rgba(46,46,46,.5),#071d39)}@media (min-width:1020px){.HalfAndHalfBreaker-newsletterBackground:after{background:linear-gradient(90deg,rgba(46,46,46,.8) 40%,rgba(7,29,57,.9))}}.WatchlistPage-container{margin:0 22px;max-width:100%;min-height:500px;padding-top:5px;position:relative}@media (min-width:360px){.WatchlistPage-container{margin-bottom:0}}@media (min-width:760px){.WatchlistPage-container{margin:0 auto;max-width:678px}}@media (min-width:1020px){.WatchlistPage-container{margin-bottom:15px;max-width:960px}}@media (min-width:1340px){.WatchlistPage-container{margin-bottom:25px;max-width:1290px}}.WatchlistPage-header{display:flex;justify-content:space-between;margin-top:30px}.WatchlistPage-header h2{margin:0}.WatchlistPage-header button{border:1px solid #002f6c;color:#002f6c;padding:10px}.SiteMapHeader-container{display:flex;flex-direction:row;flex-wrap:wrap;padding:0;width:100%}@media (min-width:760px){.SiteMapHeader-container{padding-left:0;padding-right:0}}.SiteMapHeader-heading{border-top:1px solid #747474;color:#002f6c;font-size:30px;font-weight:800;letter-spacing:.5px;line-height:37px;margin-bottom:20px;margin-top:0;padding-top:10px;position:relative;text-transform:uppercase;width:100%}@media (min-width:760px){.SiteMapHeader-heading{margin-bottom:30px}}@media (min-width:1020px){.SiteMapHeader-heading{font-size:32px;line-height:40px}}.SiteMapHeader-heading:before{background-color:#2077b6;content:"";height:6px;left:0;position:absolute;top:-6px;width:110px}.SiteMapSubMenuItems-sitemapSubMenuItem{color:#171717;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:600;letter-spacing:.03em;line-height:22px;text-align:left}.SiteMapSubMenuItems-sitemapSubMenuItem:hover{text-decoration:underline}.SiteMapMenuItem-menuItemColumn{margin-bottom:20px;width:100%}@media (min-width:760px){.SiteMapMenuItem-menuItemColumn{margin-bottom:30px;width:33.33333%}}.SiteMapMenuItem-sitemapMenuItemLabel{color:#002f6c;display:inline-block;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:600;letter-spacing:.06em;text-align:left;text-transform:uppercase}.SiteMapMenuItem-sitemapMenuItemLabel:hover{color:#fcb700}.SiteMapMenu-container{position:relative}.SiteMapMenu-sitemapMenuWrapper{display:flex;flex-wrap:wrap}.SiteMapBreadCrumb-container{border-bottom:1px dotted #747474;padding-bottom:4px}.SiteMapBreadCrumb-container li{color:#005594;display:inline;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:500;letter-spacing:.06em;line-height:1.375;list-style-type:none;padding-bottom:12px;padding-right:10px;position:relative;text-transform:uppercase}.SiteMapBreadCrumb-container li:after{color:#ffbc05;content:">";display:inline;font-size:16px;padding-left:10px}.SiteMapBreadCrumb-container li:last-child{font-weight:700}.SiteMapBreadCrumb-container li:last-child:after{content:""}.SiteMapBreadCrumb-container .SiteMapBreadCrumb-link{word-break:break-word}.SiteMapBreadCrumb-container a{color:#005594}.SiteMapBreadCrumb-container a:hover{color:#ffbc05}@media (max-width:759px){.SiteMapBreadCrumb-container li:nth-child(4):before{content:"\A";white-space:pre}}.SiteMapMonth-container{margin-bottom:30px;width:100%}.SiteMapMonth-container h3{color:#005594;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:700;letter-spacing:.06em;margin-bottom:6px;padding-bottom:8px;text-transform:uppercase}.SiteMapMonth-monthData ul{display:flex;flex-direction:column;flex-wrap:wrap;height:300px}@media (max-width:759px){.SiteMapMonth-monthData ul{display:table}}.SiteMapMonth-monthData li{color:#2e2e2e;cursor:pointer;display:block;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:600;letter-spacing:.03em;line-height:1.375;list-style-type:none;padding-bottom:12px;padding-right:10px;position:relative}.SiteMapMonth-monthData .SiteMapMonth-link{word-break:break-word}.SiteMapMonth-monthData a{color:#2e2e2e}.SiteMapMonth-monthData a:hover{color:#2e2e2e;text-decoration:underline}.SiteMapDay-container{margin:0 0 30px;width:100%}.SiteMapDay-container h3{color:#005594;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:700;letter-spacing:.06em;margin-bottom:6px;padding-bottom:8px;text-transform:uppercase}.SiteMapDay-fullDate ul{display:flex;flex-direction:column;flex-wrap:wrap;height:375px}@media (max-width:759px){.SiteMapDay-fullDate ul{display:table}}.SiteMapDay-fullDate li{color:#2e2e2e;display:block;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:600;letter-spacing:.03em;line-height:1.375;list-style-type:none;margin:0 10px 12px 0;position:relative}.SiteMapDay-fullDate .SiteMapDay-link{word-break:break-word}.SiteMapDay-fullDate a{color:#2e2e2e}.SiteMapDay-fullDate a:hover{color:#2e2e2e;text-decoration:underline}.SiteMapArticleList-container{display:flex;flex-direction:row;flex-wrap:wrap;padding:0;width:100%}@media (min-width:760px){.SiteMapArticleList-container{padding-left:0;padding-right:0}}.SiteMapArticleList-content{width:100%}.SiteMapArticleList-content h3{color:#005594;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:700;letter-spacing:.06em;margin-bottom:6px;padding-bottom:8px;text-transform:uppercase}.SiteMapArticleList-articleData li,.SiteMapArticleList-emptyPage{color:#2e2e2e;display:block;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:600;letter-spacing:.03em}.SiteMapArticleList-articleData li{line-height:1.3;list-style-type:none;padding-bottom:14px;padding-right:10px;position:relative}.SiteMapArticleList-articleData li .SiteMapArticleList-link{word-break:break-word}.SiteMapArticleList-articleData li a{color:#2e2e2e}.SiteMapArticleList-articleData li a:hover{color:#2e2e2e;text-decoration:underline}.SiteMapYear-container{margin-bottom:30px;width:100%}.SiteMapYear-container h3{border-bottom:1px dotted #005594;color:#005594;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:600;letter-spacing:.06em;margin-bottom:10px;text-transform:uppercase}.SiteMapYear-yearData{padding-top:15px}.SiteMapYear-yearData ul{-moz-column-count:3;column-count:3;-moz-column-gap:0;column-gap:0}@media (max-width:759px){.SiteMapYear-yearData ul{display:table}}.SiteMapYear-yearData li{color:#005594;display:block;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:600;letter-spacing:.03em;line-height:1.375;list-style-type:none;padding-bottom:12px;padding-right:10px;position:relative}.SiteMapYear-yearData .SiteMapYear-link{word-break:break-word}.SiteMapYear-yearData a{color:#005594}.SiteMapYear-yearData a:hover{color:#ffbc05}.SiteMap-container{margin:0 22px;max-width:100%;padding-top:5px}@media (min-width:360px){.SiteMap-container{margin-bottom:0}}@media (min-width:760px){.SiteMap-container{margin:0 auto;max-width:678px}}@media (min-width:1020px){.SiteMap-container{margin-bottom:15px;max-width:960px}}@media (min-width:1340px){.SiteMap-container{margin-bottom:25px;max-width:1290px}}.SiteMap-col{display:flex;flex-direction:column;flex-grow:0;flex-shrink:0;margin-right:30px;max-width:calc(100% - 30px);min-width:calc(100% - 30px)}@media (min-width:760px){.SiteMap-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.SiteMap-col{max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media screen and (min-width:1020px) and (-ms-high-contrast:none){.SiteMap-col{max-width:100%;min-width:100%}}@media (min-width:1340px){.SiteMap-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}.SiteMap-col:last-child{margin-right:0}@media (min-width:360px) and (max-width:759px){.SiteMap-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}}@media (min-width:760px) and (max-width:1019px){.SiteMap-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}}.SiteMap-col-9{padding-top:30px}.SiteMap-col-9 .BrandBanner-container{margin-bottom:30px;z-index:99}@media (min-width:1340px){.SiteMap-col-9 .BrandBanner-container{margin-left:calc(-50vw - -538.5px)}}@media (min-width:760px){.SiteMap-col-9 .BrandBanner-container{margin-bottom:-100px;margin-top:50px}.SiteMap-col-9{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.SiteMap-col-9{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.SiteMap-col-9{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.SiteMap-col-9{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.SiteMap-col-9{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.SiteMap-col-9{flex-grow:0;flex-shrink:0;margin-right:0;max-width:calc(66.66667% - 10px);min-width:calc(66.66667% - 10px)}.SiteMap-col-9:last-child{margin-right:0}}@media (min-width:1340px){.SiteMap-col-9{flex-grow:0;flex-shrink:0;max-width:calc(75% - 7.5px);min-width:calc(75% - 7.5px)}}.SplitStats-splitStats{margin:15px 0 0}@media (min-width:760px){.SplitStats-splitStats{display:none}}.SplitStats-splitStats .SplitStats-title{color:#002f6c;font-size:18px;font-weight:800;text-transform:uppercase}.SplitStats-splitStats .SplitStats-list,.SplitStats-splitStats .SplitStats-listSingle{grid-gap:0 15px;display:grid;grid-template-columns:1fr 1fr;list-style:none;margin:0;padding:0}.SplitStats-splitStats .SplitStats-flowColumn{grid-auto-flow:column;grid-template-rows:repeat(4,auto)}.SplitStats-splitStats .SplitStats-listSingle{grid-auto-flow:row;grid-template-columns:1fr;grid-template-rows:none}.SplitStats-splitStats .SplitStats-listSingle .SplitStats-item{border-bottom:0;font-size:16px;margin:0;padding:5px 2px}.SplitStats-splitStats .SplitStats-listSingle .SplitStats-item:nth-child(odd){background:#f8f8f8}.SplitStats-splitStats .SplitStats-listSingle .SplitStats-name{color:#171717;font-weight:400}.SplitStats-splitStats .SplitStats-item{align-items:center;border-bottom:1px solid #d9d9d9;box-sizing:border-box;display:flex;font-family:Proxima Nova,sans-serif;font-size:11px;font-weight:800;justify-content:space-between;margin:0 0 5px;padding:0 0 5px}.SplitStats-splitStats .SplitStats-name{color:#747474}.SplitStats-splitStats .SplitStats-price{color:#171717}.CharitableTrustHeader-headerWrap{display:flex;margin-bottom:20px;margin-top:20px}.CharitableTrustHeader-headerWrap .CharitableTrustHeader-tableHeader{color:#002f6c;font-size:24px;font-weight:900;letter-spacing:.25px;line-height:24px}@media (max-width:759px){.CharitableTrustHeader-headerWrap .CharitableTrustHeader-tableHeader{font-size:20px;line-height:20px}}.CharitableTrustHeader-smallSpan{background-color:#071d39;display:block;height:6px;width:110px}@media (max-width:360px){.CharitableTrustHeader-smallSpan{width:88px}}.CharitableTrustHeader-border{background-color:#747474;display:block;height:1px;width:100%}.TrustActivityTable-trustActivityTable{display:flex;flex-wrap:wrap;max-width:1000px}.TrustActivityTable-activityTable{max-height:170px;max-width:1000px;overflow-x:hidden;overflow-y:auto;transition:max-height .3s ease-out;width:100%}@media (max-width:320px){.TrustActivityTable-activityTable{overflow-x:auto}}.TrustActivityTable-activityTable.TrustActivityTable-noActivity{align-items:center;display:flex;overflow-y:hidden;padding-right:20px;width:50%}@media (max-width:550px){.TrustActivityTable-activityTable.TrustActivityTable-noActivity{width:100%}}.TrustActivityTable-activityTable::-webkit-scrollbar{height:3px;width:3px}.TrustActivityTable-activityTable::-webkit-scrollbar-track{background:#d9d9d9;border-radius:3px}.TrustActivityTable-activityTable::-webkit-scrollbar-thumb{background:#9e9e9e}.TrustActivityTable-activityRow{align-items:center;background-color:rgba(207,216,226,.25);border-left:3px solid #0496ff;border-radius:3px;display:flex;height:36px;margin-bottom:4px;margin-right:8px;min-width:310px;position:relative}.TrustActivityTable-activityRow:last-child{margin-bottom:0}.TrustActivityTable-activityLogo{align-items:center;display:flex;justify-content:center;min-width:48px;width:48px}@media (max-width:550px){.TrustActivityTable-activityLogo{min-width:40px;width:40px}}.TrustActivityTable-activityLogo span{background-color:#071d39;height:16px;width:16px}.TrustActivityTable-activityLogo .TrustActivityTable-tradeAlertIcon{mask-image:url(https://static-redesign.cnbcfm.com/dist/aad91182e297b128069c.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/aad91182e297b128069c.svg)}.TrustActivityTable-activityLogo .TrustActivityTable-earningsIcon{mask-image:url(https://static-redesign.cnbcfm.com/dist/3f94109d9f51677fee8d.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/3f94109d9f51677fee8d.svg)}.TrustActivityTable-activityLogo .TrustActivityTable-dividendIcon{mask-image:url(https://static-redesign.cnbcfm.com/dist/3635286e4568e237edcf.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/3635286e4568e237edcf.svg)}.TrustActivityTable-activityLogo .TrustActivityTable-highIcon{mask-image:url(https://static-redesign.cnbcfm.com/dist/4ecf1f23053f2b129fc4.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/4ecf1f23053f2b129fc4.svg)}.TrustActivityTable-activityLogo .TrustActivityTable-lowIcon{mask-image:url(https://static-redesign.cnbcfm.com/dist/68d05358c2f6a94bf78a.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/68d05358c2f6a94bf78a.svg)}.TrustActivityTable-activityType{color:#071d39;font-size:16px;font-weight:600;min-width:25%;padding:0 5px;white-space:nowrap}@media (max-width:760px){.TrustActivityTable-activityType{flex-grow:1;font-size:14px;margin-right:15px;min-width:25%}}@media (max-width:550px){.TrustActivityTable-activityType{margin-right:0;min-width:50%;padding:0}}.TrustActivityTable-quoteWrapper{max-width:20%}@media (max-width:760px){.TrustActivityTable-quoteWrapper{max-width:25%}}@media (max-width:759px){.TrustActivityTable-quoteWrapper{width:unset}}.TrustActivityTable-activityQuoteData{border:1px solid #9e9e9e;border-radius:8px;display:flex;font-size:12px;font-weight:800;justify-content:center;padding:8px;white-space:nowrap;width:130px}@media (max-width:550px){.TrustActivityTable-activityQuoteData{width:47px}}.TrustActivityTable-activityQuoteData:hover{background-color:#071d39}.TrustActivityTable-activityQuoteData:hover .TrustActivityTable-quoteGain{color:#34d07a}.TrustActivityTable-activityQuoteData:hover .TrustActivityTable-quoteDecline{color:#e64d55}.TrustActivityTable-activityQuoteData .TrustActivityTable-symbolDecline,.TrustActivityTable-activityQuoteData .TrustActivityTable-symbolGain{color:#071d39;margin-right:8px}.TrustActivityTable-activityQuoteData:hover .TrustActivityTable-symbolDecline,.TrustActivityTable-activityQuoteData:hover .TrustActivityTable-symbolGain{color:#fff}@media (max-width:550px){.TrustActivityTable-activityQuoteData:hover .TrustActivityTable-symbolDecline{color:#e64d55}.TrustActivityTable-activityQuoteData:hover .TrustActivityTable-symbolGain{color:#34d07a}.TrustActivityTable-activityQuoteData .TrustActivityTable-symbolGain{color:#008456;margin-right:0}.TrustActivityTable-activityQuoteData .TrustActivityTable-symbolDecline{color:#ce2b2b;margin-right:0}}.TrustActivityTable-activityQuoteData .TrustActivityTable-quoteGain{color:#008456}.TrustActivityTable-activityQuoteData .TrustActivityTable-quoteDecline{color:#ce2b2b}.TrustActivityTable-activityQuoteData .TrustActivityTable-quoteDecline span:nth-child(2),.TrustActivityTable-activityQuoteData .TrustActivityTable-quoteGain span:nth-child(2){margin-left:4px}@media (max-width:550px){.TrustActivityTable-activityQuoteData .TrustActivityTable-quoteDecline,.TrustActivityTable-activityQuoteData .TrustActivityTable-quoteGain{display:none}}.TrustActivityTable-descriptionWrap{max-width:calc(75% - 98px)}@media (min-width:550px){.TrustActivityTable-descriptionWrapWithQuote{width:calc(65% - 98px)}}@media (max-width:550px){.TrustActivityTable-descriptionWrapWithQuote{max-width:25%}}@media (min-width:1020px){.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityDescription{margin-left:64px!important}}@media (max-width:1020px){.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityDescription{margin-left:0;width:calc(65% - 98px)}}@media (max-width:760px){.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityDescription{display:none}}@media (min-width:760px) and (max-width:1019px){.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityDescription{text-align:center}}.TrustActivityTable-descriptionWrap{min-width:0}.TrustActivityTable-descriptionWrap,.TrustActivityTable-descriptionWrapWithQuote{display:flex;font-size:16px;justify-content:space-between;line-height:28px}.TrustActivityTable-descriptionWrap .TrustActivityTable-activityLink,.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityLink{font-family:Lyon Text;max-width:100%}.TrustActivityTable-descriptionWrap .TrustActivityTable-activityDescription,.TrustActivityTable-descriptionWrap .TrustActivityTable-activityLink a,.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityDescription,.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityLink a{display:block;flex:1 2 auto;max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.TrustActivityTable-descriptionWrap .TrustActivityTable-activityDescription,.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityDescription{color:#071d39;font-family:Proxima Nova}@media (max-width:760px){.TrustActivityTable-descriptionWrap .TrustActivityTable-activityDescription,.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityDescription{text-align:center}}.TrustActivityTable-descriptionWrap .TrustActivityTable-activityLink a,.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityLink a{color:#2077b6;position:relative}.TrustActivityTable-descriptionWrap .TrustActivityTable-activityDescription a,.TrustActivityTable-descriptionWrap .TrustActivityTable-activityLink a,.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityDescription a,.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityLink a{text-decoration:underline;-webkit-text-decoration-color:#2077b6;text-decoration-color:#2077b6}.TrustActivityTable-descriptionWrap .TrustActivityTable-activityDescription a:hover,.TrustActivityTable-descriptionWrap .TrustActivityTable-activityLink a:hover,.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityDescription a:hover,.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityLink a:hover{color:#fcb700;-webkit-text-decoration-color:#fcb700;text-decoration-color:#fcb700}.TrustActivityTable-descriptionWrap .TrustActivityTable-activityLink a:before,.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityLink a:before{bottom:5px;content:"";display:inline-block;left:0;position:absolute;width:99.5%}.TrustActivityTable-closeButton{align-items:center;display:flex;justify-content:flex-end;padding-left:20px;padding-right:14px;width:100%}@media (max-width:550px){.TrustActivityTable-closeButton{padding-left:0}}.TrustActivityTable-closeButton .TrustActivityTable-closeIcon{background-color:#071d39;height:16px;mask-image:url(https://static-redesign.cnbcfm.com/dist/ca2bb28892b3278d0e95.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/ca2bb28892b3278d0e95.svg);width:16px}@media (max-width:550px){.TrustActivityTable-closeButton .TrustActivityTable-closeIcon{margin-left:10px}}.TrustActivityTable-activityFooter{align-items:center;display:flex;flex:1;font-size:16px;justify-content:flex-end;line-height:28px;margin-top:16px;max-width:1000px;overflow-y:hidden;padding-right:1%;text-align:right;transition:max-height .3s ease-out;width:100%}.TrustActivityTable-activityFooter .TrustActivityTable-recentAlertMessage{color:#2077b6;font-family:Lyon Text;text-decoration:underline}.TrustActivityTable-noActivity+.TrustActivityTable-activityFooter{flex:unset;line-height:36px;margin-top:0;width:-webkit-max-content;width:-moz-max-content;width:max-content}.TrustActivityTable-noActivityMessage{color:#071d39;font-size:16px;font-weight:600;line-height:24px}.TrustActivityTable-hiddenRowLink{height:36px;position:absolute;right:50px;top:0;width:calc(100% - 50px);z-index:0}@media (min-width:760px){.TrustActivityTable-hiddenRowLink{display:none}}.TrustActivityTable-closeButtonWrap{flex-grow:1}@media (max-width:759px){.TrustActivityTable-closeButtonWrap{display:flex;justify-content:flex-end}}@media (max-width:760px){.TrustActivityTable-activityDescription,.TrustActivityTable-viewQuote{display:none!important}}.HistoricalTrustActivity-historicalTrustActivity{margin-bottom:50px}.HistoricalTrustActivity-filterButtonWrap{overflow-x:auto;white-space:nowrap}.HistoricalTrustActivity-filterButtonWrap::-webkit-scrollbar{height:0;width:0}.HistoricalTrustActivity-filterButtonWrap::-webkit-scrollbar-track{background:transparent}.HistoricalTrustActivity-filterButtonWrap .HistoricalTrustActivity-filterButton,.HistoricalTrustActivity-filterButtonWrap .HistoricalTrustActivity-filterButtonActive{border:1px solid #002f6c;border-radius:20px;height:28px;margin-left:12px}.HistoricalTrustActivity-filterButtonWrap .HistoricalTrustActivity-filterButton:first-child,.HistoricalTrustActivity-filterButtonWrap .HistoricalTrustActivity-filterButtonActive:first-child{margin-left:0}.HistoricalTrustActivity-filterButtonWrap .HistoricalTrustActivity-filterButton span,.HistoricalTrustActivity-filterButtonWrap .HistoricalTrustActivity-filterButtonActive span{color:#002f6c;display:block;font-size:12px;font-weight:600;letter-spacing:.79px;line-height:12px;margin:5px 10px;position:none;text-transform:uppercase}.HistoricalTrustActivity-filterButtonWrap .HistoricalTrustActivity-filterButton{background-color:#fff}.HistoricalTrustActivity-filterButtonWrap .HistoricalTrustActivity-filterButton span{color:#002f6c}.HistoricalTrustActivity-filterButtonWrap .HistoricalTrustActivity-filterButtonActive{background-color:#002f6c}.HistoricalTrustActivity-filterButtonWrap .HistoricalTrustActivity-filterButtonActive span{color:#fff}.HistoricalTrustActivity-date{color:#071d39;font-family:Proxima Nova;font-size:16px;font-weight:600;line-height:20px;margin-bottom:20px;margin-top:28px}.HistoricalTrustActivity-loadMoreWrap{display:flex;justify-content:flex-end;margin-top:20px;max-width:1000px;width:100%}.HistoricalTrustActivity-loadMoreWrap>a{margin-right:8px}.TodaysTrustActivity-trustActivity{margin-bottom:50px;margin-top:20px;max-width:100%;overflow:hidden}.TodaysTrustActivity-dropdownButton{align-items:center;color:#fff;display:flex}.TodaysTrustActivity-dropdownButton:active{-webkit-tap-highlight-color:transparent}.TodaysTrustActivity-dropdownButton .TodaysTrustActivity-dropdownArrow,.TodaysTrustActivity-dropdownButton .TodaysTrustActivity-dropdownUpArrow{background:#071d39;height:11px;margin-left:20px;width:19px}.TodaysTrustActivity-dropdownButton .TodaysTrustActivity-dropdownArrow,.TodaysTrustActivity-dropdownButton .TodaysTrustActivity-dropdownUpArrow{mask-image:url(https://static-redesign.cnbcfm.com/dist/b6891ac795b61eeb366b.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/b6891ac795b61eeb366b.svg)}.TodaysTrustActivity-dropdownButton .TodaysTrustActivity-dropdownUpArrow{transform:scaleY(-1)}.LivePill-watchLivePill{bottom:0;display:inline-block;padding-right:4px;position:relative;vertical-align:baseline;width:auto!important}.LatestNews-header{border-top:5px solid #002f6c}.LatestNews-header h2{color:#002f6c;font-size:24px;font-weight:900;letter-spacing:.5px;margin:12px 0 16px;text-transform:uppercase}@media (max-width:359px){.LatestNews-header h2{font-size:18px}}.LatestNews-item{border-bottom:1px solid #dedede;display:flex;font-family:Proxima Nova,Helvetica,Arial,sans-serif;margin:0 0 12px;padding:0 0 10px}.LatestNews-item:last-child{margin:0 0 30px}.LatestNews-item:before{background:#fcb700;border-radius:100%;content:"";display:block;flex-shrink:0;height:8px;margin:7px 12px 0 0;width:8px}.LatestNews-item.LatestNews-iconCleared:before{background:none}.LatestNews-container{display:flex;flex-direction:column;margin:0 12px 0 0}.LatestNews-headline{color:#171717;font-size:16px;font-weight:700;line-height:18px;margin:0 10px 0 0}.LatestNews-videoIcon{display:inline;margin:0 0 -3px 5px;width:16px}.LatestNews-wrapper{white-space:nowrap}@media (min-width:360px) and (max-width:759px){.LatestNews-wrapper{display:block}}.LatestNews-source,.LatestNews-timestamp{color:#747474;display:inline-flex;font-size:12px;font-weight:700;letter-spacing:.2px;text-transform:uppercase}.LatestNews-proPill{transform:translateY(2px)}.LatestNews-watchLivePill{margin-right:4px;padding:0!important;transform:translateY(2px)}.LatestNews-source:before{content:"-";display:block;margin:0 5px}@media (max-width:1019px){.LatestNews-isHomePage{background:#f7f7f7;padding:1px 16px 16px}}@media (min-width:1020px){.LatestNews-isHomePage{border-bottom:5px solid #002f6c}.LatestNews-isHomePage:after{background:linear-gradient(hsla(0,0%,100%,0),#fff);bottom:5px;content:"";display:block;height:100px;pointer-events:none;position:absolute;width:96%}}.LatestNews-isHomePage.LatestNews-hideGradient:after{display:none}.LatestNews-isHomePage .LatestNews-header{border-top:none}@media (min-width:1020px){.LatestNews-isHomePage .LatestNews-header{border-top:1px solid #747474}.LatestNews-isHomePage .LatestNews-header:before{border-top:6px solid #0089d0;content:"";display:block;margin:-6px 0 0;width:110px}.LatestNews-isHomePage .LatestNews-header h2{font-size:18px;margin:10px 0}}.LatestNews-isHomePage .LatestNews-headline{font-weight:600;order:2}.LatestNews-isHomePage .LatestNews-headline:hover{color:#171717;text-decoration:underline}@media (min-width:1020px){.LatestNews-isHomePage .LatestNews-list{max-height:238px;overflow-y:auto;position:relative}}@media (min-width:1340px){.LatestNews-isHomePage .LatestNews-list{max-height:352px}}.LatestNews-isHomePage .LatestNews-item:last-child{border-bottom:none;margin:0 0 5px;padding:0 0 5px}.LatestNews-isHomePage .LatestNews-headlineWrapper{order:2}.LatestNews-isHomePage .LatestNews-wrapper{display:block;order:1}.LatestNews-isHomePage .LatestNews-visitedIcon{margin:2px 0 0}.LatestNews-isHomePage .LatestNews-source,.LatestNews-isHomePage .LatestNews-timestamp{letter-spacing:1.2px}@media (min-width:1020px){.LatestNews-isHomePage .LatestNews-buttonContainer{display:none}div.LatestNews-isIntlHomepage .LatestNews-list{max-height:378px}}@media (min-width:1340px){div.LatestNews-isIntlHomepage .LatestNews-list{max-height:472px}}.LatestNews-button,.LatestNews-newsTabButton{align-items:center;background:#fff;border:1px solid #002f6c;color:#002f6c;display:flex;font-family:Proxima Nova,sans-serif;font-size:14px;font-weight:600;justify-content:center;letter-spacing:1.09px;margin:15px 0;padding:10px;text-transform:uppercase;transition:background .15s,color .15s;width:100%}.LatestNews-button:after,.LatestNews-newsTabButton:after{border-bottom:2px solid #002f6c;border-right:2px solid #002f6c;content:"";display:block;height:7px;margin:-5px 0 0 7px;transform:rotate(45deg);transition:border .15s;width:7px}.LatestNews-button:hover,.LatestNews-newsTabButton:hover{background:#002f6c;color:#fff}.LatestNews-button:hover:after,.LatestNews-newsTabButton:hover:after{border-bottom-color:#fff;border-right-color:#fff}@media (min-width:760px){.LatestNews-button,.LatestNews-newsTabButton{margin:15px auto;padding:10px 30px;width:auto}}@media (min-width:1020px){.LatestNews-button,.LatestNews-newsTabButton{display:none}}.LatestNews-newsTabButton{display:none;margin:0 auto 30px}@media (min-width:760px){.LatestNews-newsTabButton{display:flex}}.LatestNews-tradeAlertLabel{background-color:#fff;border:.5px solid #071d39;border-radius:4px;color:#071d39;display:inline-block;font-family:Proxima Nova,sans-serif;font-size:11px;font-style:normal;font-weight:600;line-height:10px;margin-right:4px;margin-top:2px;padding:2.5px 4px;vertical-align:top}.QuoteNewsWithFilters-filterButtonWrap{margin:16px 0;overflow-x:auto;white-space:nowrap}.QuoteNewsWithFilters-filterButtonWrap::-webkit-scrollbar{height:0;width:0}.QuoteNewsWithFilters-filterButtonWrap::-webkit-scrollbar-track{background:transparent}.QuoteNewsWithFilters-filterButtonWrap .QuoteNewsWithFilters-filterButton{background-color:#fff;border:1px solid #002f6c;border-radius:20px;height:28px;margin-left:12px}.QuoteNewsWithFilters-filterButtonWrap .QuoteNewsWithFilters-filterButton:first-child{margin-left:0}.QuoteNewsWithFilters-filterButtonWrap .QuoteNewsWithFilters-filterButton span{color:#002f6c;display:block;font-size:12px;font-weight:600;letter-spacing:.79px;line-height:12px;margin:5px 10px;pointer-events:none;position:none;text-transform:uppercase}.QuoteNewsWithFilters-filterButtonWrap .QuoteNewsWithFilters-filterButtonActive{background-color:#002f6c}.QuoteNewsWithFilters-filterButtonWrap .QuoteNewsWithFilters-filterButtonActive span{color:#fff}.QuotePageBuilder-container{margin:0 22px;max-width:100%;padding-top:15px}@media (min-width:360px){.QuotePageBuilder-container{margin-bottom:0}}@media (min-width:760px){.QuotePageBuilder-container{margin:0 auto;max-width:678px}}@media (min-width:1020px){.QuotePageBuilder-container{margin-bottom:15px;max-width:960px}}@media (min-width:1340px){.QuotePageBuilder-container{margin-bottom:25px;max-width:1290px}}@media (min-width:760px){.QuotePageBuilder-row{margin-bottom:20px;padding-top:30px}}@media (min-width:1020px){.QuotePageBuilder-row{display:flex}}.QuotePageBuilder-col{display:flex;flex-direction:column;flex-grow:0;flex-shrink:0;margin-right:30px;max-width:calc(100% - 30px);min-width:calc(100% - 30px)}@media (min-width:760px){.QuotePageBuilder-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.QuotePageBuilder-col{max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media screen and (min-width:1020px) and (-ms-high-contrast:none){.QuotePageBuilder-col{max-width:100%;min-width:100%}}@media (min-width:1340px){.QuotePageBuilder-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}.QuotePageBuilder-col:last-child{margin-right:0}@media (min-width:360px) and (max-width:759px){.QuotePageBuilder-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}}@media (min-width:760px) and (max-width:1019px){.QuotePageBuilder-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}}.QuotePageBuilder-mainContent{padding-top:15px}@media (min-width:1020px){.QuotePageBuilder-mainContent{padding-top:30px}}.QuotePageBuilder-mainContent .BrandBanner-container{margin-bottom:30px;z-index:99}@media (min-width:1340px){.QuotePageBuilder-mainContent .BrandBanner-container{margin-left:calc(-50vw - -538.5px)}}@media (min-width:760px){.QuotePageBuilder-mainContent .BrandBanner-container{margin-bottom:-100px;margin-top:50px}.QuotePageBuilder-mainContent{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px);padding-top:0}}@media (min-width:760px) and (min-width:760px){.QuotePageBuilder-mainContent{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.QuotePageBuilder-mainContent{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.QuotePageBuilder-mainContent{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.QuotePageBuilder-mainContent{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.QuotePageBuilder-mainContent{flex-grow:0;flex-shrink:0;margin-right:0;max-width:calc(66.66667% - 10px);min-width:calc(66.66667% - 10px)}.QuotePageBuilder-mainContent:last-child{margin-right:0}}@media (min-width:1340px){.QuotePageBuilder-mainContent{flex-grow:0;flex-shrink:0;max-width:calc(75% - 7.5px);min-width:calc(75% - 7.5px)}}@media (min-width:760px){.QuotePageBuilder-sidebar{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.QuotePageBuilder-sidebar{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.QuotePageBuilder-sidebar{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.QuotePageBuilder-sidebar{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.QuotePageBuilder-sidebar{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.QuotePageBuilder-sidebar{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(33.33333% - 20px);min-width:calc(33.33333% - 20px)}}@media (min-width:1340px){.QuotePageBuilder-sidebar{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(25% - 22.5px);min-width:calc(25% - 22.5px)}}.QuotePageBuilder-button,.QuotePageBuilder-buttonActive{align-items:center;background:#fff;border:1px solid #002f6c;color:#002f6c;display:flex;font-family:Proxima Nova,sans-serif;font-size:12px;font-weight:700;justify-content:center;letter-spacing:1.09px;margin:15px 0 30px;padding:15px 20px;text-transform:uppercase;width:100%}.QuotePageBuilder-button:after,.QuotePageBuilder-buttonActive:after{border-bottom:2px solid #002f6c;border-right:2px solid #002f6c;content:"";display:block;height:7px;margin:-4px 0 0 5px;transform:rotate(45deg);width:7px}.QuotePageBuilder-buttonActive:after{margin:5px 0 0 5px;transform:rotate(225deg)}.QuotePageBuilder-showOnDesktop{display:none}@media (min-width:760px){.QuotePageBuilder-showOnDesktop{display:initial}}.QuotePageBuilder-showOnMobile{display:initial;margin-bottom:10px}@media (min-width:760px){.QuotePageBuilder-showOnMobile{display:none}}.LiveTVScheduleHeader-header{color:#071d39;font-style:normal;position:relative;width:100%}.LiveTVScheduleHeader-header .LiveTVScheduleHeader-heading{font-size:40px;font-weight:800;line-height:42px;padding:36px 8px 0;text-align:center}@media (max-width:759px){.LiveTVScheduleHeader-header .LiveTVScheduleHeader-heading{font-size:36px}}@media (max-width:359px){.LiveTVScheduleHeader-header .LiveTVScheduleHeader-heading{font-size:24px}}.LiveTVScheduleHeader-header .LiveTVScheduleHeader-headerUnderline{background:#fcb700;height:7px;margin-bottom:40px;width:100%}.LiveTVDatePicker-container{margin:0 auto 38px;max-width:1145px;width:90%}.LiveTVDatePicker-modal{bottom:0;height:100%;left:0;position:absolute;right:0;top:0;width:100%;z-index:99}.LiveTVDatePicker-tveDropdown{background:#aeaeae;border-radius:3px;color:#171717;display:block;height:34px;padding:1px;position:relative;width:272px}.LiveTVDatePicker-head{background:linear-gradient(#e7e7e7,#fff);background-image:linear-gradient(#f6f6f6,#fafafa);border-radius:3px;cursor:pointer;text-shadow:0 1px 0 #fff;width:100%}.LiveTVDatePicker-arrowWrap,.LiveTVDatePicker-head{border-top:1px solid #fff;display:inline-block;height:32px}.LiveTVDatePicker-arrowWrap{background-image:-o-linear-gradient(top,#dbdbdb 0,#fcfcfc 100%);border-left:1px solid #fff;border-radius:0 3px 3px 0;box-shadow:-1px 0 0 0 #c9c9c9;float:right;position:absolute;right:1px;top:1px;width:31px}.LiveTVDatePicker-arrow{background-image:url(https://static-redesign.cnbcfm.com/dist/3f3502c997d472bd03be.png);background-repeat:no-repeat;border:none;box-shadow:none;height:25px;left:-10%;margin:-15px 0 0;position:absolute;top:50%;width:29px}.LiveTVDatePicker-openArrow{border-color:#171717 transparent transparent;border-style:solid;border-width:7px 7px 0;box-shadow:0 -1px 0 0 #171717;height:0;margin-left:10px;margin-top:-2px;width:0}.LiveTVDatePicker-close{background:none;background-image:none;border-color:transparent;border-radius:0;box-shadow:none}.LiveTVDatePicker-today{font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:24px;font-style:normal;font-weight:800;line-height:28px;text-transform:uppercase}.LiveTVDatePicker-datesContainer{float:left}.LiveTVDatePicker-dates{font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:24px;font-style:normal;font-weight:500;line-height:28px;margin-left:6px}.LiveTVDatePicker-selectDateContainer{text-align:left}.LiveTVDatePicker-selectDate{font-size:18px;font-style:normal;font-weight:500;line-height:28px;margin-left:6px}.LiveTVDatePicker-menu{background:#fff;border:1px solid #c3c3c3;border-radius:3px;height:200px;overflow:scroll;padding:6px 0 6px 7px;position:absolute;width:272px;z-index:100}.LiveTVDatePicker-menu button{border-radius:3px;display:block;font-family:Proxima Nova Semi Bold,Helvetica,Arial,sans-serif;font-size:16px;line-height:23px;margin-right:6px;padding:5px 12px 4px 8px;position:relative;text-align:initial;text-overflow:ellipsis;white-space:nowrap;width:100%}.LiveTVDatePicker-menu button:hover{color:#fff}.LiveTVDatePicker-menu li:hover{background-color:#2077b6;border-radius:3px;cursor:pointer;width:254px}.LiveTVDatePicker-filterDayWeek{display:inline-block;text-align:left;width:87px}.LiveTVDatePicker-filterMonth{display:inline-block;width:40px}.LiveTVDatePicker-hide{display:none}.LiveTVCurrentShow-container{border:4px solid #002f6c;color:#002f6c;margin:0 auto 41px;max-width:1145px;padding:8px 16px;position:relative;width:90%}.LiveTVCurrentShow-liveScheduleContainer{align-items:center;display:flex;justify-content:space-between;margin:0 22px}@media (max-width:1019px){.LiveTVCurrentShow-liveScheduleContainer{display:block}}.LiveTVCurrentShow-link,.LiveTVCurrentShow-link:hover{color:#002f6c}.LiveTVCurrentShow-onNow{align-items:center;background:#fff;display:flex;font-size:14px;font-style:normal;font-weight:700;justify-content:center;line-height:20px;position:absolute;text-align:center;top:-11px;width:114px}.LiveTVCurrentShow-onNow:before{-webkit-animation:LiveTVCurrentShow-pulse 2s infinite;animation:LiveTVCurrentShow-pulse 2s infinite;background-color:#ff5053;border-radius:100%;box-shadow:0 0 0 0 #ce2b2b;content:"";display:block;height:6px;margin:6px 8px;transform:scale(1);width:6px}@-webkit-keyframes LiveTVCurrentShow-pulse{0%{box-shadow:0 0 0 1px #ce2b2b;opacity:1;transform:scale(.95)}70%{box-shadow:0 0 0 2px #ce2b2b;opacity:.9;transform:scale(1)}to{box-shadow:0 0 0 1px #ce2b2b;opacity:1;transform:scale(.95)}}@keyframes LiveTVCurrentShow-pulse{0%{box-shadow:0 0 0 1px #ce2b2b;opacity:1;transform:scale(.95)}70%{box-shadow:0 0 0 2px #ce2b2b;opacity:.9;transform:scale(1)}to{box-shadow:0 0 0 1px #ce2b2b;opacity:1;transform:scale(.95)}}.LiveTVCurrentShow-currShow{font-size:28px;font-style:normal;font-weight:400;line-height:18px;padding:16px 0}@media (max-width:759px){.LiveTVCurrentShow-currShow{font-size:24px}}@media (max-width:479px){.LiveTVCurrentShow-currShow{font-size:18px}}.LiveTVCurrentShow-currShow .LiveTVCurrentShow-onNowTitle{font-weight:800}.LiveTVCurrentShow-currShow .LiveTVCurrentShow-separator{font-weight:700}.LiveTVCurrentShow-nextShow{font-size:20px;font-style:normal;font-weight:400;line-height:14px;padding:16px 0}@media (max-width:479px){.LiveTVCurrentShow-nextShow{display:none}}@media (max-width:759px){.LiveTVCurrentShow-nextShow{font-size:16px}}.LiveTVCurrentShow-nextShow .LiveTVCurrentShow-nextTitle{font-weight:800}.LiveTVSchedule-container{margin:auto;max-width:1145px;width:100%}.Loading-wrapper{background:none;height:100%}.Loading-nightModeWrapper{background:#000;height:100%}.Loading-loadingImage{height:295px;max-width:900px;width:100%}.ErrorChartBoundary-errorWrapper{background:grey;border:1px solid silver;color:#fff;height:352px}.ErrorChartBoundary-errorWrapper .ErrorChartBoundary-msg{position:relative;text-align:center;top:35%}.ErrorChartBoundary-errorWrapper .ErrorChartBoundary-msg span{background:#fff;border-radius:3px;color:#000;font-family:inherit;font-size:12px;line-height:inherit;margin:0;padding:2px}.PhoenixChartWrapper-rendererApp,.PhoenixChartWrapper-rendererWeb{min-height:380px;position:relative}.PhoenixChartWrapper-rendererWeb{margin-top:20px}.PhoenixChartWrapper-rendererApp{height:100%;margin:0}.PhoenixChartWrapper-loadingWrapper{background:#fff;bottom:0;left:0;position:absolute;right:0;top:0;z-index:10}.MobileAppChart-container{max-width:100%}@-webkit-keyframes WatchlistNotification-showAndFadeOut{0%{opacity:0;transform:translateY(5px)}5%{opacity:1;transform:translateY(0)}80%{opacity:1}to{opacity:0}}@keyframes WatchlistNotification-showAndFadeOut{0%{opacity:0;transform:translateY(5px)}5%{opacity:1;transform:translateY(0)}80%{opacity:1}to{opacity:0}}.WatchlistNotification-notificationContainer{display:flex;justify-content:center;position:absolute;width:100%}.WatchlistNotification-notificationContainer .WatchlistNotification-notification{-webkit-animation:WatchlistNotification-showAndFadeOut 3s linear;animation:WatchlistNotification-showAndFadeOut 3s linear;font-family:Proxima Nova,Helvetica,Arial,sans-serif;opacity:0;text-align:center;z-index:4000}.WatchlistSortableColumnHeader-defaultSort{fill:#bababa}.WatchlistSortableColumnHeader-sortActive{color:#005594!important}.WatchlistSortableColumnHeader-sortActive .WatchlistSortableColumnHeader-asc,.WatchlistSortableColumnHeader-sortActive .WatchlistSortableColumnHeader-desc{fill:#005594}button.WatchlistSortableColumnHeader-sortButton{align-items:center;border-right:1px solid #ccc;display:flex;float:right;margin-right:4px;padding-right:4px}button.WatchlistSortableColumnHeader-sortButton:last-child{border:0;margin:0;padding:0}.WatchlistSortableColumnHeader-sortingIcons{display:flex;flex-direction:column;margin-left:8px}.SymbolTable-symbolTable{border-bottom:1px solid #d9d9d9;font-family:Proxima Nova,Helvetica,Arial,sans-serif;position:relative;table-layout:fixed;width:100%}.SymbolTable-symbolTable.SymbolTable-zeroQuotes{border-bottom:none}.SymbolTable-symbolTable:before{bottom:0;content:"";display:block;height:40px;pointer-events:none;position:absolute;width:100%;z-index:1}.SymbolTable-symbolTable.SymbolTable-fade:before{background:linear-gradient(180deg,hsla(0,0%,100%,0),25%,#fff)}.SymbolTable-symbolTable thead{display:table;width:100%}.SymbolTable-symbolTable thead th{color:#747474;font-size:12px;font-style:normal;font-weight:700;line-height:15px;padding-bottom:5px}.SymbolTable-symbolTable td,.SymbolTable-symbolTable th{font-size:14px;padding:unset;padding-right:10px;text-align:end;width:25%}@media (max-width:1339px){.SymbolTable-symbolTable td,.SymbolTable-symbolTable th{font-size:12px}}.SymbolTable-symbolTable tr{box-sizing:border-box;display:table;width:100%}.SymbolTable-symbolTable tbody{display:block;max-height:240px;overflow-y:scroll;width:100%}.SymbolTable-symbolTable tbody tr{width:100%}.SymbolTable-symbolTable tbody tr:nth-child(odd){background:#f1f1f1}.SymbolTable-symbolTable tbody td{font-size:14px;font-style:normal;font-weight:600;height:30px;padding:4px 10px 4px 0}.SymbolTable-symbolTable tbody td.SymbolTable-symbol{overflow:hidden;padding-left:12px;text-align:start;text-overflow:ellipsis;white-space:nowrap}.SymbolTable-symbolTable tbody td a:hover{color:#005594;text-decoration:none}th{color:#9e9e9e}.SymbolTable-symbolLink{color:#000}.SymbolTable-positive{color:#00a857}.SymbolTable-negative{color:#ce2b2b}.SymbolTable-extendedHours{align-items:center;color:#e8802a;justify-content:flex-end;position:relative;text-align:end}.SymbolTable-extendedHours>svg{position:absolute;right:-3px;top:10px}.WatchlistSymbolAdder-container .WatchlistSymbolAdder-dropdownContent{left:0;right:auto}.WatchlistSymbolAdder-form{position:relative;white-space:nowrap;z-index:99}.WatchlistSymbolAdder-input{font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-weight:700;letter-spacing:.07em;padding:3px 3px 3px 6px;width:auto}@media (max-width:759px){.WatchlistSymbolAdder-input{width:100px}}input::-moz-placeholder{color:#ccc}input::placeholder{color:#ccc}.WatchlistSymbolAdder-addButton{background-color:#005594;border-radius:4px;color:#fff;font-size:12px;font-weight:700;letter-spacing:.07em;padding:3px 5px}.WatchlistSymbolAdder-addButton:hover{background-color:#002f6c;color:#fff;cursor:pointer;font-size:12px;font-weight:700;letter-spacing:.07em}.WatchlistSymbolAdder-dropdownContent{background-color:#fff;border-radius:4px;color:#333;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-weight:500;position:absolute;text-align:left;white-space:normal;width:392px;z-index:5000}@media (max-width:759px){.WatchlistSymbolAdder-dropdownContent{padding:10px;width:270px}}.WatchlistSymbolAdder-dropdownContent table{border-collapse:collapse;table-layout:fixed;white-space:nowrap;width:100%}.WatchlistSymbolAdder-dropdownContent table td{font-size:16px;padding:6px 6px 6px 0}.WatchlistSymbolAdder-dropdownItem{border-bottom:1px solid #ccd6d8;color:#333;display:table-row;line-height:20px;padding:2px 0;text-decoration:none}.WatchlistSymbolAdder-dropdownItem:last-of-type{border-bottom:0}.WatchlistSymbolAdder-dropdownItem.WatchlistSymbolAdder-active,.WatchlistSymbolAdder-dropdownItem:hover{background-color:#d5dee2;cursor:pointer}.WatchlistSymbolAdder-dropdownItem .WatchlistSymbolAdder-symbolName{overflow:hidden;text-overflow:ellipsis;width:90px}.WatchlistSymbolAdder-dropdownItem .WatchlistSymbolAdder-companyName{overflow:hidden;text-overflow:ellipsis;width:auto}.WatchlistSymbolAdder-dropdownItem .WatchlistSymbolAdder-countryCode{padding-right:0;width:25px}.WatchlistSymbolAdder-dropdownContent.WatchlistSymbolAdder-hasHighlightedSymbol .WatchlistSymbolAdder-dropdownItem:hover{background-color:none}.WatchlistSymbolAdder-ghostDropdownCloser{bottom:0;left:0;position:fixed;right:0;top:0;z-index:98}.WatchlistSymbolAdder-watchlistPage{background:#fff;border:1px solid #9e9e9e;border-bottom-left-radius:6px;border-bottom-right-radius:6px;border-top-right-radius:6px;display:flex;padding:10px;position:absolute;top:35px;z-index:98}.WatchlistSymbolAdder-watchlistPage .WatchlistSymbolAdder-searchOptions{border-bottom:1px solid #bababa;display:flex;justify-content:space-between;padding-bottom:8px}.WatchlistSymbolAdder-watchlistPage .WatchlistSymbolAdder-form{width:307px}.WatchlistSymbolAdder-watchlistPage .WatchlistSymbolAdder-form .WatchlistSymbolAdder-input{border:none;font-size:14px;font-weight:600;line-height:20px;padding:unset;text-transform:unset;width:85%}.WatchlistSymbolAdder-watchlistPage .WatchlistSymbolAdder-form .WatchlistSymbolAdder-dropdownContent{border:unset;box-shadow:unset;display:flex;padding:unset;padding-top:8px;position:inherit;width:auto;z-index:inherit}@media (max-width:759px){.WatchlistSymbolAdder-watchlistPage .WatchlistSymbolAdder-form{width:240px}}.WatchlistSymbolAdder-embedded .WatchlistSymbolAdder-form{width:100%}.WatchlistSymbolAdder-embedded .WatchlistSymbolAdder-form .WatchlistSymbolAdder-input{border:unset;border-bottom:1px solid #747474;border-radius:unset;color:#747474;font-size:12px;font-weight:600;letter-spacing:.15px;line-height:15px;margin-bottom:5px;text-transform:unset;width:100%}.WatchlistSymbolAdder-embedded .WatchlistSymbolAdder-form .WatchlistSymbolAdder-dropdownContent{border:1px solid #ccd6d8;box-shadow:0 1px 10px #d9d9d9;padding:8px;text-align:center;width:100%}.WatchlistSymbolAdder-embedded .WatchlistSymbolAdder-form .WatchlistSymbolAdder-dropdownContent table tr{line-height:16px}.WatchlistSymbolAdder-embedded .WatchlistSymbolAdder-form .WatchlistSymbolAdder-dropdownContent table tr td{font-size:14px}.EmbeddedWatchlist-container{display:flex;flex-direction:column;font-weight:800;height:100%;position:relative}.EmbeddedWatchlist-container,.EmbeddedWatchlist-container .EmbeddedWatchlist-notify{font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal}.EmbeddedWatchlist-container .EmbeddedWatchlist-notify{color:#747474;font-weight:500;line-height:15px;padding:16px 0;text-align:center}.EmbeddedWatchlist-dropdownAnchor{position:relative}.icon-offsite-arrow{color:#9e9e9e;font-size:10px;font-weight:600}.EmbeddedWatchlist-dropdownButton{align-items:center;display:flex;justify-content:left;margin-bottom:18px;text-align:left;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;z-index:2}.EmbeddedWatchlist-dropdownButton:hover{cursor:pointer}.EmbeddedWatchlist-dropdownButton:hover h2{color:#071d39}.EmbeddedWatchlist-dropdownButton div{align-items:center;border-bottom:1px solid #002f6c;display:flex;height:33px;max-width:200px;min-width:118px}.EmbeddedWatchlist-dropdownButton svg{margin-left:5px;margin-right:5px}.EmbeddedWatchlist-watchlistName{color:#002f6c;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:18px;font-style:normal;font-weight:600;letter-spacing:.33px;line-height:20px;margin:unset;margin-left:5px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:100%}.EmbeddedWatchlist-chevron{border-radius:1px;border-style:solid;border-width:2px 2px 0 0;color:#005594;height:10px;margin-left:10px;margin-right:7px;position:relative;transform:rotate(135deg);width:12px}.EmbeddedWatchlist-dropdown{background:#fff;box-shadow:1px 4px 16px rgba(0,0,0,.16);padding:0 10px;position:absolute;top:-18px;width:200px;z-index:2}.EmbeddedWatchlist-watchlistDropdownLink,.EmbeddedWatchlist-watchlistTools{border-bottom:1px solid #ccc;color:#424242;cursor:pointer;display:block;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-style:normal;font-weight:600;letter-spacing:.05em;line-height:15px;max-height:25px;overflow:hidden;padding-bottom:5px;padding-top:5px;text-align:left;text-overflow:ellipsis;white-space:nowrap;width:100%;word-break:break-word}.EmbeddedWatchlist-watchlistDropdownLink.EmbeddedWatchlist-activeWatchlist,.EmbeddedWatchlist-watchlistTools.EmbeddedWatchlist-activeWatchlist{color:#336aa0}.EmbeddedWatchlist-addIcon{fill:#005594}.EmbeddedWatchlist-watchlistDropdownLink:focus,.EmbeddedWatchlist-watchlistDropdownLink:hover{color:#002f6c}.EmbeddedWatchlist-selectedWatchlist{color:#005594}.EmbeddedWatchlist-watchlistTools a:last-of-type{border-bottom:0}.EmbeddedWatchlist-watchlistTools a:last-of-type:focus,.EmbeddedWatchlist-watchlistTools a:last-of-type:hover{color:#002f6c;text-decoration:none}.EmbeddedWatchlist-watchlistTools{align-items:center;border:none;display:flex;justify-content:space-between}.EmbeddedWatchlist-watchlistTools:focus .EmbeddedWatchlist-watchlistDropdownLink{color:#005594;text-decoration:none}.EmbeddedWatchlist-watchlistTools a{color:#005594}.EmbeddedWatchlist-watchlistTools .EmbeddedWatchlist-watchlistDropdownLink{padding:unset}.EmbeddedWatchlist-watchlistTools .EmbeddedWatchlist-watchlistDropdownLink:hover{color:#171717}.EmbeddedWatchlist-ghostDropdownCloser{bottom:0;left:0;position:fixed;right:0;top:0;z-index:1}.EmbeddedWatchlist-addWatchlistContainer,.EmbeddedWatchlist-errorContainer{align-items:center;background:#f1f1f1;display:flex;flex-direction:column;height:240px;justify-content:center}@media (max-width:1339px){.EmbeddedWatchlist-addWatchlistContainer,.EmbeddedWatchlist-errorContainer{height:269px}}.EmbeddedWatchlist-addWatchlistContainer>p,.EmbeddedWatchlist-errorContainer>p{color:#171717;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:600;letter-spacing:.05em;line-height:17px;margin-bottom:24px;margin-top:0;max-width:197px;text-align:center}.EmbeddedWatchlist-addWatchlistContainer>a,.EmbeddedWatchlist-errorContainer>a{align-items:center;background:#00a857;border-radius:3px;color:#fff;display:flex;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:700;justify-content:center;letter-spacing:1.09091px;line-height:16px;min-height:40px;min-width:191px;text-transform:uppercase}.EmbeddedWatchlist-addWatchlistContainer>a:hover,.EmbeddedWatchlist-errorContainer>a:hover{background-color:#008456;color:#fff;text-decoration:none}.EmbeddedWatchlist-errorContainer>p{margin-bottom:unset;margin-top:unset}.EmbeddedWatchlist-linkContainer{display:flex;font-size:12px;font-style:normal;font-weight:500;justify-content:flex-end;line-height:15px;margin-right:10px;margin-top:13px}.EmbeddedWatchlist-linkContainer a{align-items:center;color:#005594;display:flex}.EmbeddedWatchlist-linkContainer a>div{margin-right:3px;text-decoration:underline}.EmbeddedWatchlist-linkContainer a:hover,.EmbeddedWatchlist-linkContainer a:hover .icon-offsite-arrow{color:#002f6c}.EmbeddedWatchlist-linkContainer .icon-offsite-arrow{color:#336aa0;font-size:9px;font-weight:800}.EmbeddedWatchlist-tableOptions{align-items:baseline;display:flex;flex-direction:row;justify-content:flex-end;margin-bottom:12px}.EmbeddedWatchlist-tableOptions a,.EmbeddedWatchlist-tableOptions button{color:#005594;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-style:normal;font-weight:500;line-height:15px;-webkit-text-decoration-line:underline;text-decoration-line:underline}.EmbeddedWatchlist-tableOptions a:hover,.EmbeddedWatchlist-tableOptions button:hover{color:#002f6c}.EmbeddedWatchlist-tableOptions a:hover svg,.EmbeddedWatchlist-tableOptions button:hover svg{fill:#002f6c}.EmbeddedWatchlist-tableOptions a svg,.EmbeddedWatchlist-tableOptions button svg{margin-left:5px}.EmbeddedWatchlist-tableOptions a:first-child{margin-right:10px}.EmbeddedWatchlist-notificationContainer{right:0;top:86px}.EmbeddedWatchlist-notificationContainer .EmbeddedWatchlist-notification{background-color:#2077b6;border-radius:3px;box-shadow:0 1px 3px 1px rgba(0,0,0,.08);color:#fff;font-weight:700;line-height:16px;padding:10px;width:224px}.EmbeddedWatchlist-notificationContainer .EmbeddedWatchlist-notification.EmbeddedWatchlist-error{background-color:#ce2b2b;width:204px}.ExclusiveContentBucket-exclusiveContentBucket{font-family:Proxima Nova,Helvetica,Arial,sans-serif;margin-bottom:40px;margin-top:40px}@media (min-width:760px){.ExclusiveContentBucket-exclusiveContentBucket{margin-left:-29.16667%;max-width:677px}}@media (min-width:760px) and (min-width:760px){.ExclusiveContentBucket-exclusiveContentBucket{margin-left:-29.16667%}}@media (min-width:760px) and (min-width:1020px){.ExclusiveContentBucket-exclusiveContentBucket{margin-left:-29.16667%}}@media (min-width:760px) and (min-width:1340px){.ExclusiveContentBucket-exclusiveContentBucket{margin-left:-29.16667%}}@media (min-width:1020px){.ExclusiveContentBucket-exclusiveContentBucket{margin-left:-20.83333%;width:630px}}@media (min-width:1020px) and (min-width:760px){.ExclusiveContentBucket-exclusiveContentBucket{margin-left:-20.83333%}}@media (min-width:1020px) and (min-width:1020px){.ExclusiveContentBucket-exclusiveContentBucket{margin-left:-20.83333%}}@media (min-width:1020px) and (min-width:1340px){.ExclusiveContentBucket-exclusiveContentBucket{margin-left:-20.83333%}}@media (min-width:1340px){.ExclusiveContentBucket-exclusiveContentBucket{margin-left:-16.66667%}}@media (min-width:1340px) and (min-width:760px){.ExclusiveContentBucket-exclusiveContentBucket{margin-left:-16.66667%}}@media (min-width:1340px) and (min-width:1020px){.ExclusiveContentBucket-exclusiveContentBucket{margin-left:-16.66667%}}@media (min-width:1340px) and (min-width:1340px){.ExclusiveContentBucket-exclusiveContentBucket{margin-left:-16.66667%}}.ExclusiveContentBucket-exclusiveContentBucket .ExclusiveContentBucket-exclusiveContentHeading{color:#002f6c;font-size:20px;font-weight:900;letter-spacing:.25px;line-height:24px;text-transform:uppercase}.ExclusiveContentBucket-bucketImageContainer{display:flex}.ExclusiveContentBucket-proPill{height:30px}.ExclusiveContentBucket-proPillContainer{position:relative;right:40px}@media (max-width:759px){.ExclusiveContentBucket-proPillContainer{right:40px}}.ExclusiveContentBucket-investingClubPill{height:25px}.ExclusiveContentBucket-investingClubPillContainer{position:relative;right:45px}@media (max-width:759px){.ExclusiveContentBucket-investingClubPillContainer{right:40px}}.ExclusiveContentBucket-smallSpan{background-color:#002f6c;display:block;height:6px;width:88px}.ExclusiveContentBucket-border{background-color:#747474;display:block;height:1px;width:100%}.ExclusiveContentBucket-contentContainer{display:flex;flex-direction:column;justify-content:space-between;overflow-x:scroll}@media (min-width:760px){.ExclusiveContentBucket-contentContainer{overflow-x:unset}}.ExclusiveContentBucket-bucketItem{border-bottom:1px dashed #9e9e9e;display:flex;padding-bottom:10px;padding-top:20px}.ExclusiveContentBucket-bucketItem .ExclusiveContentBucket-title{font-size:18px;font-weight:600;line-height:22px;margin-bottom:16px}.ExclusiveContentBucket-bucketItem .ExclusiveContentBucket-title a{color:#171717;text-decoration:none!important}@media (max-width:759px){.ExclusiveContentBucket-bucketItem .ExclusiveContentBucket-title{font-size:16px;font-weight:500;line-height:20px;margin-bottom:0}}.ExclusiveContentBucket-bucketItem .ExclusiveContentBucket-publishTime{color:#747474;display:inline;font-size:12px;font-weight:600;letter-spacing:1.5px;line-height:16px;margin-top:9px;text-transform:uppercase}.ExclusiveContentBucket-bucketItem .ExclusiveContentBucket-textContainer{display:flex;flex-direction:column;justify-content:space-between;margin-left:-20px}@media (max-width:759px){.ExclusiveContentBucket-bucketItem .ExclusiveContentBucket-textContainer{margin-left:-25px}}.ExclusiveContentBucket-bucketItem .ExclusiveContentBucket-bylineContainer{display:flex;margin-top:10px}@media (max-width:759px){.ExclusiveContentBucket-bucketItem .ExclusiveContentBucket-bylineContainer{margin-top:0}}.ExclusiveContentBucket-bucketItem .ExclusiveContentBucket-icTextContainer{margin-left:-25px}.ExclusiveContentBucket-bucketItem .ExclusiveContentBucket-author{display:none;font-family:Lyon,Helvetica,Arial,sans-serif;font-weight:600;letter-spacing:.5px;line-height:16px;margin-right:10px}@media (min-width:760px){.ExclusiveContentBucket-bucketItem .ExclusiveContentBucket-author{display:inline}}.ExclusiveContentBucket-bucketItem .ExclusiveContentBucket-author a{color:#002f6c;font-size:12px;margin-right:8px;text-decoration:none}.ExclusiveContentBucket-bucketImage{height:95px;-o-object-fit:cover;object-fit:cover;width:190px}@media (max-width:759px){.ExclusiveContentBucket-bucketImage{height:75px;width:100px}}.ExclusiveContentBucket-firstElem,.ExclusiveContentBucket-thirdElem{border-bottom-right-radius:15px;border-top-left-radius:15px}.ExclusiveContentBucket-secondElem{border-bottom-left-radius:15px;border-bottom-right-radius:15px}@media (prefers-color-scheme:dark){.webview .ExclusiveContentBucket-exclusiveContentBucket .ExclusiveContentBucket-exclusiveContentHeading{color:#dce0e4}.webview .ExclusiveContentBucket-smallSpan{background-color:#dce0e4}.webview .ExclusiveContentBucket-border{background-color:#f8f8f8}.webview .ExclusiveContentBucket-bucketItem .ExclusiveContentBucket-textContainer .ExclusiveContentBucket-title a{color:#dce0e4}.webview .ExclusiveContentBucket-bucketItem .ExclusiveContentBucket-textContainer .ExclusiveContentBucket-author a{font-size:12px}}.PlayerLoadingIndicator-loadingContainer{margin-bottom:30px;padding-bottom:56.25%;position:relative;text-align:center}.PlayerLoadingIndicator-loadingOverlay{align-items:center;background-color:#000;display:flex;height:100%;justify-content:center;left:0;position:absolute;top:0;width:100%}.LiveStreamPlayer-container.LiveStreamPlayer-isNotLoaded{display:block;max-width:100%;padding-bottom:57%}.LiveStreamPlayer-languageContainer{align-items:center;display:flex;font-size:14px;margin:13px 0}.LiveStreamPlayer-bold,.LiveStreamPlayer-toggle{margin-right:12px}.LiveStreamPlayer-bold{font-weight:800}.LiveStreamPlayer-toggle{margin-right:12px}.LiveStreamPlayer-toggle:hover{cursor:pointer}.jw-settings-audioTracks{display:none!important}.Timer-progress{stroke:#fcb700;left:50%;position:absolute;top:50%;transform:translate(-50%,-50%) rotate(-90deg)}.Timer-progress circle{stroke-dasharray:302;stroke-dashoffset:302;-webkit-animation:Timer-dash 5s linear;animation:Timer-dash 5s linear}.Timer-sticky .Timer-progress circle{stroke-dasharray:151;stroke-dashoffset:151;-webkit-animation:Timer-sticky-dash 5s linear;animation:Timer-sticky-dash 5s linear}@-webkit-keyframes Timer-dash{0%{stroke-dashoffset:302}to{stroke-dashoffset:0}}@keyframes Timer-dash{0%{stroke-dashoffset:302}to{stroke-dashoffset:0}}@-webkit-keyframes Timer-sticky-dash{0%{stroke-dashoffset:151}to{stroke-dashoffset:0}}@keyframes Timer-sticky-dash{0%{stroke-dashoffset:151}to{stroke-dashoffset:0}}.Timer-buttonWrapper{align-items:center;border:1px solid rgba(207,216,226,.4);color:#fff;display:flex;height:40px;justify-content:center;left:50%;position:absolute;top:50%;transform:translate(-50%,-50%);width:40px}.Timer-buttonWrapper span{display:flex}.Timer-buttonWrapperEnded{border-radius:50%;box-shadow:inset 0 0 2px 0 #cfd8e2,0 0 2px 0 #cfd8e2;font-size:24px;height:66px;width:66px}@media (min-width:360px){.Timer-buttonWrapperEnded{font-size:36px;height:96px;width:96px}}.Timer-sticky .Timer-buttonWrapperEnded{font-size:18px;height:48px;width:48px}.Timer-buttonWrapperEnded:hover{color:#fcb700}.Timer-buttonWrapperEnded .icon-buffett-video{margin-left:5px}.Recommend-sticky .Recommend-buttonWrapperEnded .icon-buffett-video{margin-left:3px}.ScaledTimer-cancel{color:#fff;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:600;left:50%;letter-spacing:.06em;position:absolute;text-transform:uppercase;top:calc(50% + 60px);transform:translateX(-50%)}.ScaledTimer-cancel:hover{color:#fcb700}.Recommend-endCardWrapper{background-color:rgba(0,47,108,.8);background-image:url(https://static-redesign.cnbcfm.com/dist/8e3639eed7df32fad761.jpg);background-size:cover;cursor:pointer;height:0;padding-bottom:56.25%;position:relative;width:100%}.Recommend-endCardWrapper .Recommend-title{color:#fff;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:18px;font-weight:600;line-height:1.1em}.Recommend-replay .Recommend-endCardWrapper .Recommend-title{font-size:16px}@media (min-width:1020px){.Recommend-endCardWrapper .Recommend-title{font-size:18px;letter-spacing:.17px}}@media (min-width:1340px){.Recommend-endCardWrapper .Recommend-title{font-size:24px}}.Recommend-endCardWrapper:before{background:linear-gradient(transparent,#002f6c);bottom:0;content:"";height:100%;left:0;position:absolute;width:100%}@media (min-width:760px){.Buffett-wrapper{max-width:100%}}.Recommend-buttons{display:flex;justify-content:space-between;left:15px;position:absolute;text-align:right;top:15px;width:calc(100% - 30px)}.Recommend-buttons span{color:#fff;font-size:15px}.Recommend-buttons span:hover{color:#fcb700}.Recommend-content{bottom:15px;left:15px;padding-right:55px;position:absolute}.Recommend-eyebrow,.Recommend-eyebrow.Recommend-compact,.Recommend-mobile .Recommend-compact{color:#fcb700;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-weight:600;letter-spacing:2px;line-height:15px;margin-bottom:3px;text-transform:uppercase}.Recommend-replay
.Recommend-eyebrow.Recommend-compact,.Recommend-replay
.Recommend-mobile .Recommend-compact,.Recommend-replay .Recommend-eyebrow{font-size:10px}.Recommend-mobile .Recommend-replay .Recommend-eyebrow,.Recommend-mobile .Recommend-replay .Recommend-title,.Recommend-replay .Recommend-compact{display:none}.Recommend-mobile .Recommend-replay .Recommend-compact{color:#fff;display:initial}.Recommend-mobile .Recommend-replay .Recommend-eyebrow.Recommend-compact{padding-left:4px}.Recommend-endCardWrapper.Recommend-sticky .Recommend-eyebrow{font-size:10px;letter-spacing:.83px}.Recommend-endCardWrapper.Recommend-sticky .Recommend-title{font-size:12px;font-weight:700;letter-spacing:.5px;line-height:1.25}.Recommend-titleDark{color:#fff}.Recommend-slideshowItem .Recommend-titleDark{font-size:16px;letter-spacing:.15px;margin-top:5px}@media (min-width:760px){.Recommend-slideshowItem .Recommend-titleDark{font-size:24px;letter-spacing:.22px}}.PlaceHolder-buffettLongFormWrapper .Buffett-endCardWrapper{padding-bottom:calc(50% + 10px)}@media (min-width:760px){.PlaceHolder-buffettLongFormWrapper .Buffett-endCardWrapper{padding-bottom:calc(50% + 20px)}}@media (min-width:1020px){.PlaceHolder-buffettLongFormWrapper .Buffett-endCardWrapper{padding-bottom:680.625px}}.Recommend-content.Recommend-replay{bottom:auto;top:15px}.Recommend-sticky{padding-bottom:0;position:fixed;top:auto}.Recommend-endCardWrapper .icon-close{display:none}.Recommend-endCardWrapper.Recommend-sticky .icon-close{align-items:center;background:#fcb700;color:#fff;display:flex;font-size:15px;font-weight:900;height:28px;justify-content:center;left:0;position:relative;top:-28px;width:28px}.Recommend-endCardWrapper.Recommend-sticky .Recommend-cancel{display:none}.LiveEventDescription-container{margin-bottom:58px}.LiveEventDescription-container.LiveEventDescription-berkshireHathaway{margin-bottom:42px}.LiveEventDescription-container.LiveEventDescription-berkshireHathaway .group{max-width:unset}.LiveEventDescription-container.LiveEventDescription-berkshireHathaway .group p{font-family:Lyon Text,Helvetica,Arial,sans-serif;font-weight:400}@media (max-width:1019px){.LiveEventDescription-container.LiveEventDescription-berkshireHathaway{margin-bottom:30px}}@media (max-width:759px){.LiveEventDescription-container.LiveEventDescription-berkshireHathaway{margin-bottom:16px}}.LiveEventDescription-tagContainer{display:flex;flex-direction:row;margin:0 0 16px}.LiveEventDescription-title{color:#000;display:block;font-family:Proxima Nova,sans-serif;font-size:14px;font-weight:600;line-height:18px;margin:0;padding-right:18px;white-space:nowrap}@media (max-width:759px){.LiveEventDescription-title{display:none}}.LiveEventDescription-description{display:block}.LiveEventDescription-headline{color:#000;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:22px;font-weight:700;letter-spacing:.03px;line-height:26px;margin-bottom:16px;text-align:left}.LiveEventDescription-details{color:#000;font-family:Lyon Text,Helvetica,Arial,sans-serif;font-size:18px;font-weight:500;letter-spacing:.4444px;line-height:28px}.LiveEventDescription-timestamp{color:#747474;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-weight:600;letter-spacing:1.5px;line-height:16px;margin-top:16px;text-transform:uppercase}.LiveEventDescription-description .group{font-family:Proxima Nova,Helvetica,Arial,sans-serif;margin-left:0}.LiveEventDescription-description .group a{color:#2077b6;text-decoration:underline}.LiveEventDescription-description .group a:hover{color:#fcb700}.LiveEventDescription-description .group ol,.LiveEventDescription-description .group ol li,.LiveEventDescription-description .group ul,.LiveEventDescription-description .group ul li{list-style:revert;margin-left:10px}.MiniQuoteData-container{display:block;height:162px;line-height:22px;padding:0 30px;text-indent:0}@media (min-width:1020px){.MiniQuoteData-container{height:144px;padding:0 8px}}@media (max-width:759px){.MiniQuoteData-container{height:154px;min-width:320px;padding:0 15px}}@media (min-width:760px) and (max-width:1019px){.MiniQuoteData-container{height:274px;min-width:560px}}.MiniQuoteData-section{display:block;padding-bottom:0;padding-left:0;padding-top:0}@media (min-width:760px) and (max-width:1019px){.MiniQuoteData-section{margin-bottom:10px}}.MiniQuoteData-companyName{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.MiniQuoteData-companyName,.MiniQuoteData-last{font-weight:700}.MiniQuoteData-companyName,.MiniQuoteData-link{font-size:14px;margin-top:12px}@media (min-width:760px) and (max-width:1019px){.MiniQuoteData-companyName,.MiniQuoteData-link{font-size:24px;margin-bottom:14px;margin-top:14px}}.MiniQuoteData-last,.MiniQuoteData-quote,.MiniQuoteData-quoteDown,.MiniQuoteData-quoteUp{display:block;margin:4px 0}.MiniQuoteData-header{align-items:center;display:flex}.MiniQuoteData-last{font-size:24px;margin-right:12px}@media (min-width:760px) and (max-width:1019px){.MiniQuoteData-last{font-size:34px}}.MiniQuoteData-link{font-size:11px;font-weight:600}@media (min-width:760px) and (max-width:1019px){.MiniQuoteData-link{font-size:16px}}.MiniQuoteData-link a{color:#005594;text-decoration:underline}.MiniQuoteData-cnbcLink{color:#2077b6;text-decoration:underline}.MiniQuoteData-quote,.MiniQuoteData-quoteDown,.MiniQuoteData-quoteUp{color:#747474;font-family:Proxima Nova,sans-serif;font-size:12px;font-weight:700;line-height:12px}@media (min-width:760px) and (max-width:1019px){.MiniQuoteData-quote,.MiniQuoteData-quoteDown,.MiniQuoteData-quoteUp{font-size:20px}}.MiniQuoteData-quoteUp{color:#008456}.MiniQuoteData-quoteUp:before{content:"▾";display:inline-block;margin-right:4px;transform:rotate(-180deg)}.MiniQuoteData-quoteDown{color:#d0021b}.MiniQuoteData-quoteDown:before{content:"▾";margin-right:4px}.MiniQuoteData-details{grid-column-gap:4%;display:grid;grid-template-columns:1fr 1fr}.MiniQuoteData-container,.MiniQuoteData-withTopBorder{border-bottom:.5px solid #747474}.MiniQuoteData-halfDetail{color:#747474;display:flex;font-size:10px;font-weight:700;justify-content:space-between;margin:0}.MiniQuoteData-halfDetail :nth-child(2n){color:#171717}@media (min-width:760px) and (max-width:1019px){.MiniQuoteData-halfDetail{font-size:18px;line-height:40px;margin:0 0 20px}}.MiniQuoteData-halfDetail:nth-of-type(odd){grid-column:1/2}.MiniQuoteData-halfDetail:nth-of-type(2n){grid-column:2/3}.AddToWatchlistDropdown-container{align-content:center;align-items:center;background-color:#fff;display:flex;flex-direction:column;font-family:Proxima Nova,Helvetica,Arial,sans-serif;justify-content:center;padding:20px 0;position:fixed;z-index:1001}.AddToWatchlistDropdown-container.AddToWatchlistDropdown-withWatchlists{align-items:normal;justify-content:normal}@media (max-width:1019px){.AddToWatchlistDropdown-container{bottom:0;left:0;right:0;top:0;z-index:9999}}@media (min-width:1020px){.AddToWatchlistDropdown-container{border:.5px solid #9e9e9e;border-top:0;box-shadow:0 1px 6px rgba(0,0,0,.25),0 -3px 0 #002f6c;display:block;left:0;padding:0;position:absolute;width:auto}.AddToWatchlistDropdown-container.AddToWatchlistDropdown-mini{left:0;right:auto}}.AddToWatchlistDropdown-container .AddToWatchlistDropdown-signInMessage,.AddToWatchlistDropdown-container .AddToWatchlistDropdown-simpleText{display:block;font-size:12px;line-height:12px;text-align:center}.AddToWatchlistDropdown-container .AddToWatchlistDropdown-signInMessage{color:#000;font-weight:700;margin-bottom:-10px;margin-top:20px}.AddToWatchlistDropdown-container .AddToWatchlistDropdown-simpleText{font-weight:500}.AddToWatchlistDropdown-container .AddToWatchlistDropdown-simpleText:last-child{margin-bottom:20px}.AddToWatchlistDropdown-wrapper{max-height:calc(100vh - 158px);overflow:auto}@media (min-width:1020px){.AddToWatchlistDropdown-wrapper{max-height:118px}}.AddToWatchlistDropdown-watchlistContainer{border:.5px solid #cfd8e2;box-shadow:0 -3px 0 #002f6c;padding:unset;right:-1px;top:27px;width:calc(100% + 2px)}@media (max-width:1019px){.AddToWatchlistDropdown-watchlistContainer{top:0}}.AddToWatchlistDropdown-container.AddToWatchlistDropdown-isFetching{padding-top:0}.AddToWatchlistDropdown-closeButton{display:block;font-size:12px;position:absolute;right:15px;top:20px}@media (min-width:1020px){.AddToWatchlistDropdown-closeButton{display:none}}.AddToWatchlistDropdown-closeButton.AddToWatchlistDropdown-closeButtonForSymbolTag{font-size:15px;top:27px}.AddToWatchlistDropdown-header{color:#9e9e9e;font-size:12px;font-weight:600;letter-spacing:.01em;line-height:12px;margin:20px 30px;text-indent:0}.AddToWatchlistDropdown-header.AddToWatchlistDropdown-headerForWatchlistTag{align-items:center;display:flex;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:11px;height:32px;margin:0 0 0 8px}@media (max-width:1019px){.AddToWatchlistDropdown-header.AddToWatchlistDropdown-headerForWatchlistTag{font-size:18px;height:68px;line-height:normal;margin-left:30px;padding:8px 0}}.AddToWatchlistDropdown-footer{display:block;padding:15px 15px 20px;position:relative;width:100%;z-index:1}.AddToWatchlistDropdown-footer .AddToWatchlistDropdown-footerLink,.AddToWatchlistDropdown-footer .AddToWatchlistDropdown-watchlistTagFooterLink{color:#005594;display:block;font-size:11px;font-weight:600;line-height:13px;padding-left:10px;padding-top:10px;text-indent:0}.AddToWatchlistDropdown-footer .AddToWatchlistDropdown-footerLink.AddToWatchlistDropdown-signIn,.AddToWatchlistDropdown-footer .AddToWatchlistDropdown-watchlistTagFooterLink.AddToWatchlistDropdown-signIn{background-color:#005594;border:none;bottom:0;color:#fff;position:static}.AddToWatchlistDropdown-footer .AddToWatchlistDropdown-watchlistTagFooterLink{line-height:11px;margin-left:10px;padding:unset;text-decoration:underline}.AddToWatchlistDropdown-footer .AddToWatchlistDropdown-watchlistTagFooterLink:first-child{margin-bottom:12px;margin-top:12px}@media (max-width:1019px){.AddToWatchlistDropdown-footer .AddToWatchlistDropdown-watchlistTagFooterLink:first-child{margin-bottom:30px;margin-top:48px}.AddToWatchlistDropdown-footer .AddToWatchlistDropdown-watchlistTagFooterLink{font-size:18px;margin-left:30px}}.AddToWatchlistDropdown-footer .AddToWatchlistDropdown-watchlistTagFooterLink:hover{color:#005594}.AddToWatchlistDropdown-footer .AddToWatchlistDropdown-footerLink{border:1px solid #071d39;color:#071d39;line-height:12px;padding:15px;text-align:center;width:100%}@media (max-width:1019px){.AddToWatchlistDropdown-footer{bottom:20px;position:absolute}}.AddToWatchlistDropdown-watchlistTagFooter{padding:unset;position:relative}.AddToWatchlistDropdown-signInContainer{bottom:0;min-width:240px;position:relative;width:50%}.AddToWatchlistDropdown-createWatchlistContainer{bottom:0;padding-bottom:10px;position:relative}@media (max-width:1019px){.AddToWatchlistDropdown-createWatchlistContainer{text-align:center;top:20px;width:50%}}.AddToWatchlistDropdown-message{color:#e8802a;display:block;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-weight:600;line-height:100%;padding:15px 15px 0;text-align:center}@media (max-width:1019px){.AddToWatchlistDropdown-message{font-size:18px;font-weight:600;line-height:18px}}.AddToWatchlistDropdown-message.AddToWatchlistDropdown-watchListEmptyMsg{color:#171717}.AddToWatchlistDropdown-symbolIssueError{border-bottom:1px solid #bababa;color:#ce2b2b;display:block;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:600;line-height:18px;padding:35px 20px;text-align:center;white-space:normal}.AddToWatchlistDropdown-ghostDropdownCloser{bottom:0;display:none;left:0;position:fixed;right:0;top:0;z-index:98}@media (min-width:1020px){.AddToWatchlistDropdown-ghostDropdownCloser{display:block}}.AddToWatchlistDropdown-watchlistContainerAddTag{left:-1px;min-width:300px;top:27px;width:calc(100% + 2px)}@media (max-width:1019px){.AddToWatchlistDropdown-watchlistContainerAddTag{top:0}}.AddToWatchlistDropdown-watchlistContainerAddTag .AddToWatchlistDropdown-message{font-size:11px;font-weight:700;letter-spacing:-.004em;line-height:13px;padding-left:8px;padding-right:8px;text-align:center}@media (max-width:1019px){.AddToWatchlistDropdown-watchlistContainerAddTag .AddToWatchlistDropdown-message{align-items:center;display:flex;font-size:18px;font-weight:700;letter-spacing:-.002em;line-height:18px;text-align:center}}.AddToWatchlistDropdown-loggedOutAddTag{padding:unset}.AddToWatchlistDropdown-loggedOutAddTag .AddToWatchlistDropdown-signInContainer .AddToWatchlistDropdown-watchlistTagFooterLink{position:relative;right:9px;top:8px}@media (max-width:1019px){.AddToWatchlistDropdown-loggedOutAddTag .AddToWatchlistDropdown-signInContainer .AddToWatchlistDropdown-watchlistTagFooterLink{font-size:14px;margin-left:unset;padding-top:50px;right:0;text-align:center;top:0}}.AddToWatchlistDropdown-loggedOutAddTag .AddToWatchlistDropdown-createWatchlistContainer .AddToWatchlistDropdown-watchlistTagFooterLink{padding-bottom:8px;position:relative}@media (max-width:1019px){.AddToWatchlistDropdown-loggedOutAddTag .AddToWatchlistDropdown-createWatchlistContainer .AddToWatchlistDropdown-watchlistTagFooterLink{font-size:14px;margin-left:unset;padding-top:50px}}.AddToWatchlistDropdown-signInContainerAddTag{display:block;margin:0 10%;padding:8px}@media (min-width:1020px){.AddToWatchlistDropdown-signInContainerAddTag{min-width:unset;width:unset}}.AddToWatchlistDropdown-buttonLink{border:1px solid #005594;color:#005594;display:block;font-size:10px;font-weight:600;line-height:12px;padding:8px;text-align:center;width:100%}.AddToWatchlistDropdown-buttonLink.AddToWatchlistDropdown-signIn{background-color:#005594;border:none;bottom:0;color:#fff;margin-top:20px;position:static}.AddToWatchlistDropdown-buttonLink.AddToWatchlistDropdown-createWatchlist{background-color:#005594;border:none;bottom:0;color:#fff;margin:auto;min-width:120px;padding:15px;position:static;text-decoration:none;width:90%}.AddToWatchlistDropdown-buttonLink.AddToWatchlistDropdown-createWatchlist:hover{color:#fff}@media (max-width:1019px){.AddToWatchlistDropdown-buttonLink.AddToWatchlistDropdown-createWatchlist{min-width:200px}.AddToWatchlistDropdown-buttonLink{font-size:14px;font-weight:700}}.AddToWatchlistDropdown-signInButtonAddTag{align-items:center;font-size:10px;font-weight:700;letter-spacing:.5px;line-height:12px;padding:8px;text-align:center}.AddToWatchlistDropdown-signInButtonAddTag.AddToWatchlistDropdown-signIn{background-color:#005594}.AddToWatchlistDropdown-signInButtonAddTag.AddToWatchlistDropdown-signIn:hover{background-color:#002f6c}.AddToWatchlistDropdown-signInButtonAddTag.AddToWatchlistDropdown-createWatchlist{background-color:#005594;color:#fff;font-family:Proxima Nova,Helvetica,Arial,sans-serif;padding:8px;text-decoration:none}.AddToWatchlistDropdown-signInButtonAddTag.AddToWatchlistDropdown-createWatchlist:hover{background-color:#002f6c;color:#fff}@media (max-width:1019px){.AddToWatchlistDropdown-signInButtonAddTag.AddToWatchlistDropdown-createWatchlist{padding:12px}.AddToWatchlistDropdown-buttonLink{font-size:14px;letter-spacing:1.1px;line-height:16px;margin:auto;max-width:260px;padding:12px}}.AddToWatchlistDropdown-watchlistScrollContainer{display:block;max-height:100px;overflow-y:scroll}.AddToWatchlistDropdown-watchlistScrollContainer:before{bottom:32px;content:"";display:block;height:40px;pointer-events:none;position:absolute;width:100%;z-index:1}@media (max-width:1019px){.AddToWatchlistDropdown-watchlistScrollContainer:before{bottom:100px}}.AddToWatchlistDropdown-watchlistScrollContainer.AddToWatchlistDropdown-fade:before{background:linear-gradient(180deg,hsla(0,0%,100%,0),25%,#fff)}@media (max-width:1019px){.AddToWatchlistDropdown-watchlistScrollContainer{max-height:70%}}.AddToWatchlistDropdownCheckbox-container{border-top:1px solid #bababa;display:block}.AddToWatchlistDropdownCheckbox-container:last-of-type{border-bottom:1px solid #bababa}.AddToWatchlistDropdownCheckbox-watchlist{align-items:center;color:#071d39;display:flex;font-size:14px;font-weight:700;padding:8px 29px;width:100%}.AddToWatchlistDropdownCheckbox-watchlist:first-child{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.AddToWatchlistDropdownCheckbox-watchlist.AddToWatchlistDropdownCheckbox-watchlistForSymbolTag{color:#002f6c;font-size:11px;font-weight:600;height:32px;padding-left:8px}@media (max-width:1019px){.AddToWatchlistDropdownCheckbox-watchlist.AddToWatchlistDropdownCheckbox-watchlistForSymbolTag{font-size:18px;height:50px;padding-left:30px}}.AddToWatchlistDropdownCheckbox-checkbox{border:1px solid #bababa;border-radius:2px;flex-shrink:0;height:14px;margin-right:12px;position:relative;width:14px}.AddToWatchlistDropdownCheckbox-watchlistNameForSymbolTag{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.AddToWatchlistDropdownCheckbox-hasSymbols .AddToWatchlistDropdownCheckbox-checkbox:after{border-color:#071d39;border-style:solid;border-width:0 2px 2px 0;content:"";display:block;height:12px;left:5px;position:absolute;top:-4px;transform:rotate(45deg);width:5px}.AddToWatchlistDropdownCheckbox-hasSymbols .AddToWatchlistDropdownCheckbox-checkboxForSymbolTag{background:#2077b6;border:none}.AddToWatchlistDropdownCheckbox-hasSymbols .AddToWatchlistDropdownCheckbox-checkboxForSymbolTag:after{border-color:#fff;height:7px;left:5px;top:1px;width:3px}.AddToWatchlistDropdownCheckbox-isLoading{cursor:wait}.AddToWatchlistDropdownCheckbox-isLoading>*{opacity:.5}.AddToWatchlistDropdownCheckbox-error{color:#ce2b2b;display:block;font-size:12px;font-weight:600;padding:0 10px 8px 56px}.AddToWatchlistDropdownCheckboxes-notificationContainer{font-size:11px;line-height:18px;padding:2px 6px 0;top:150px}.AddToWatchlistDropdownCheckboxes-notificationContainer .AddToWatchlistDropdownCheckboxes-notification{background-color:#2077b6;border-radius:3px;box-shadow:0 1px 3px 1px rgba(0,0,0,.08);color:#fff;font-weight:700;line-height:16px;padding:10px;white-space:nowrap;width:224px}.AddToWatchlistDropdownCheckboxes-notificationContainer .AddToWatchlistDropdownCheckboxes-notification.AddToWatchlistDropdownCheckboxes-error{background-color:#ce2b2b;width:204px}@media (max-width:1019px){.AddToWatchlistDropdownCheckboxes-notificationContainer{top:165px}}.AddToWatchlistButton-container{display:block;font-family:Proxima Nova,Helvetica,Arial,sans-serif;position:relative}.AddToWatchlistButton-watchlistContainer{display:inline-block}.AddToWatchlistButton-button{align-items:center;border:1px solid #002f6c;box-sizing:border-box;color:#002f6c;display:flex;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-weight:600;justify-content:center;line-height:12px;padding:8px}@media (min-width:1020px){.AddToWatchlistButton-button{padding:14px 15px}}.AddToWatchlistButton-button .AddToWatchlistButton-mobileText{font-size:26px;font-weight:600;line-height:12px}.AddToWatchlistButton-button .AddToWatchlistButton-desktopText{display:none}@media (min-width:1020px){.AddToWatchlistButton-button .AddToWatchlistButton-desktopText{display:initial;margin:0 10px 0 0}}.AddToWatchlistButton-watchlistFromTagItem{border:.5px solid #cfd8e2;border-radius:7px;display:flex;position:relative}.AddToWatchlistButton-watchlistFromTagItem:hover{border:.5px solid #747474}.AddToWatchlistButton-watchlistFromTagItem.AddToWatchlistButton-dropdownVisible{border:.5px solid #cfd8e2}.AddToWatchlistButton-addWatchListFromTag{background-image:url(https://static-redesign.cnbcfm.com/dist/3d3257ad9e8a242b5362.svg);background-repeat:no-repeat;height:12px;width:12px}.AddToWatchlistButton-watchlistButton{align-items:center;color:#002f6c;display:flex;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-weight:600;line-height:12px;padding:8px 8px 8px 4px}.AddToWatchlistButton-watchlistButton.AddToWatchlistButton-dropdownOpen .AddToWatchlistButton-addWatchListFromTag,.AddToWatchlistButton-watchlistButton:focus .AddToWatchlistButton-addWatchListFromTag,.AddToWatchlistButton-watchlistButton:hover .AddToWatchlistButton-addWatchListFromTag{background-image:url(https://static-redesign.cnbcfm.com/dist/8eafdf125d3d82d5a92f.svg)}.ChartPreview-chartPreviewContainer{filter:drop-shadow(20px 20px 10px #00000044);left:50%;padding:20px;position:absolute;top:25px;transform:translateX(-50%);z-index:100}.ChartPreview-chartPreview{background:#fff;border:.5px solid #747474;border-radius:7px;padding:10px;z-index:101}.ChartPreview-chartPreview:before{border:11px solid transparent;border-bottom-color:#747474;bottom:calc(100% - 20px)}.ChartPreview-chartPreview:after,.ChartPreview-chartPreview:before{content:" ";height:0;left:50%;margin-left:-11px;pointer-events:none;position:absolute;width:0}.ChartPreview-chartPreview:after{border:11px solid transparent;border-bottom-color:#fff;bottom:calc(100% - 21px)}.ChartPreview-chartPreviewHeader{display:flex;flex-direction:column;font-family:Proxima Nova,sans-serif;gap:4px;line-height:normal;padding-bottom:10px}.ChartPreview-chartPreviewHeaderRow{display:flex;font-size:12px;font-weight:500;justify-content:space-between}.ChartPreview-chartPreviewHeaderName{color:#000;font-size:13px;font-weight:800}.ChartPreview-chartFrame{border:.5px solid #747474}.ChartPreview-link{text-decoration:none!important;white-space:nowrap}.QuoteItem-item{border:.5px solid #cfd8e2;border-radius:7px;display:flex;margin:0 15px 10px 0;position:relative}.QuoteItem-item:before{content:"";display:none}.QuoteItem-item:hover{border:.5px solid #747474}.QuoteItem-item.QuoteItem-hideHoverBorder{border:.5px solid #cfd8e2}.QuoteItem-link{align-items:center;display:flex;padding:8px;text-decoration:none!important;white-space:nowrap}.QuoteItem-link.QuoteItem-extHours{padding:7px 8px}.QuoteItem-link.QuoteItem-updated{border-color:#002f6c;transition:border-color .25s}.QuoteItem-symbol{color:#171717;font-family:Proxima Nova,sans-serif;font-size:12px;font-weight:700;line-height:12px;margin:0}@media (prefers-color-scheme:dark){.webview .QuoteItem-symbol{color:#fff}}.QuoteItem-quote,.QuoteItem-quoteDown,.QuoteItem-quoteUp{color:#747474;font-family:Proxima Nova,sans-serif;font-size:12px;font-weight:700;line-height:12px;margin:0 0 0 5px}.QuoteItem-quoteUp{color:#008456}.QuoteItem-quoteDown{color:#d0021b}.QuoteItem-afterHoursIcon{display:inline;height:14px;margin-left:8px}.RelatedQuotes-relatedQuotes{display:flex;flex-direction:column;margin:0 0 28px}@media (max-width:1019px){.RelatedQuotes-relatedQuotes{overflow-x:hidden}}@media (min-width:760px){.RelatedQuotes-relatedQuotes{display:grid;grid-template-columns:auto 1fr}}.RelatedQuotes-relatedQuotes .RelatedQuotes-titleAndTime{align-items:center;display:flex;margin:0 15px 10px 0}.RelatedQuotes-relatedQuotes .RelatedQuotes-subtext,.RelatedQuotes-relatedQuotes .RelatedQuotes-text{color:#171717;font-family:Proxima Nova,sans-serif;font-size:12px;font-weight:700;line-height:16px;margin:0;padding:0;white-space:nowrap}.RelatedQuotes-relatedQuotes .RelatedQuotes-subtext{color:#747474;font-size:9px;font-weight:700;margin:0;text-transform:uppercase}.RelatedQuotes-relatedQuotes .RelatedQuotes-list{-webkit-overflow-scrolling:touch;display:flex;flex-wrap:wrap;line-height:0;margin:0;padding:0;text-indent:0;width:100%}@media (min-width:760px){.RelatedQuotes-relatedQuotes .RelatedQuotes-list{flex-wrap:wrap}}@media (max-width:759px){.RelatedQuotes-relatedQuotes .RelatedQuotes-list{overflow-x:scroll}}.RelatedQuotes-relatedQuotes .RelatedQuotes-list.RelatedQuotes-isMobileWebview{flex-wrap:wrap}.RelatedQuotes-relatedQuotes .RelatedQuotes-list:before{content:"";display:none}.RelatedQuotes-relatedQuotes .RelatedQuotes-list::-webkit-scrollbar{display:none}.RelatedQuotes-relatedQuotes .RelatedQuotes-signUpBtnEnabledlist{-webkit-overflow-scrolling:touch;display:flex;flex-wrap:wrap;line-height:0;margin:0;padding:0;text-indent:0;width:70%}@media (min-width:760px){.RelatedQuotes-relatedQuotes .RelatedQuotes-signUpBtnEnabledlist{flex-wrap:wrap}}@media (max-width:759px){.RelatedQuotes-relatedQuotes .RelatedQuotes-signUpBtnEnabledlist{overflow-x:scroll}}.RelatedQuotes-relatedQuotes .RelatedQuotes-signUpBtnEnabledlist.RelatedQuotes-isMobileWebview{flex-wrap:wrap}.RelatedQuotes-relatedQuotes .RelatedQuotes-signUpBtnEnabledlist:before{content:"";display:none}.RelatedQuotes-relatedQuotes .RelatedQuotes-signUpBtnEnabledlist::-webkit-scrollbar{display:none}@media (max-width:759px){.RelatedQuotes-listDropdownVisible{overflow-x:unset!important}}@media (prefers-color-scheme:dark){.RelatedQuotes-relatedQuotes .webview .RelatedQuotes-subtext,.webview .RelatedQuotes-relatedQuotes .RelatedQuotes-subtext,.webview .RelatedQuotes-text{color:#fff}.webview .RelatedQuotes-subtext{color:#9a9fa7!important}}.RelatedQuotes-buttonLink{background:radial-gradient(50% 50% at 50% 50%,#035ac8 0,#071d39 100%);border-radius:2px;color:#fff;height:48px;left:590px;padding:10px;position:absolute;top:15px;width:150px}@media (max-width:1339px){.RelatedQuotes-buttonLink{left:480px}}@media (max-width:1019px){.RelatedQuotes-buttonLink{left:84%;top:0}}@media (max-width:759px){.RelatedQuotes-buttonLink{left:70%}}.RelatedQuotes-twoOrlessTickerStyles{top:-12px}@media screen and (max-width:950px){.RelatedQuotes-buttonLink{left:83%}}@media screen and (max-width:900px){.RelatedQuotes-buttonLink{left:82%}}@media screen and (max-width:850px){.RelatedQuotes-buttonLink{left:81%}}@media screen and (max-width:830px){.RelatedQuotes-buttonLink{left:80%}}@media screen and (max-width:790px){.RelatedQuotes-buttonLink{left:79%}}@media screen and (max-width:700px){.RelatedQuotes-buttonLink{left:78%}}@media screen and (max-width:670px){.RelatedQuotes-buttonLink{left:77%}}@media screen and (max-width:645px){.RelatedQuotes-buttonLink{left:76%}}@media screen and (max-width:585px){.RelatedQuotes-buttonLink{left:73%}}@media screen and (max-width:550px){.RelatedQuotes-buttonLink{left:71%}}@media screen and (max-width:530px){.RelatedQuotes-buttonLink{left:70%}}@media screen and (max-width:500px){.RelatedQuotes-buttonLink{left:68%}}@media screen and (max-width:450px){.RelatedQuotes-buttonLink{left:64%}}@media screen and (max-width:420px){.RelatedQuotes-buttonLink{left:62%}}@media screen and (max-width:400px){.RelatedQuotes-buttonLink{left:60%}}@media screen and (max-width:380px){.RelatedQuotes-buttonLink{left:56%}}.RelatedQuotes-buttonLink .RelatedQuotes-btnSmallDes{display:block;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:11px;font-weight:400}.RelatedQuotes-buttonLink .RelatedQuotes-buttonText{display:block;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:11px;font-weight:700}.RelatedQuotes-buttonLink:hover{color:#ffe965}@media screen and (max-width:360px){.RelatedQuotes-isSignupBtnEna{margin-top:50px!important}.RelatedQuotes-buttonLink{align-items:center;display:inline-flex;gap:5px;justify-content:space-around;left:0;margin-bottom:20px;position:absolute;text-align:center;top:-15px!important;width:100%}.RelatedQuotes-buttonLink .RelatedQuotes-btnSmallDes{font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:11px;font-weight:400}.RelatedQuotes-buttonLink .RelatedQuotes-buttonText{font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-weight:800}.RelatedQuotes-buttonLink:hover{color:#ffe965}}@media screen and (max-width:759px){.RelatedQuotes-buttonLink{top:40px}.RelatedQuotes-twoOrlessTickerStyles{top:-12px}}.LiveEventSlate-container .LiveEventSlate-liveEventSlate{background-repeat:no-repeat;background-size:contain;display:block;margin-bottom:30px;max-width:100%;padding-bottom:57%}.LiveEventSlate-container .LiveEventSlate-error{background-image:url(https://static-redesign.cnbcfm.com/dist/54f3d8c60727fdd092ad.png)}.LiveEventSlate-container .LiveEventSlate-pre.LiveEventSlate-investingClub{background-image:url(https://static-redesign.cnbcfm.com/dist/261db0afca7926c9c4d5.png)}@media (max-width:759px){.LiveEventSlate-container .LiveEventSlate-pre.LiveEventSlate-investingClub{background-image:url(https://static-redesign.cnbcfm.com/dist/635637529f397c6b0b99.png)}}.LiveEventSlate-container .LiveEventSlate-pre.LiveEventSlate-morningMeeting{background-image:url(https://static-redesign.cnbcfm.com/dist/c4b2ab67f20d4702a761.png)}@media (max-width:759px){.LiveEventSlate-container .LiveEventSlate-pre.LiveEventSlate-morningMeeting{height:300px}}@media (min-width:760px){.LiveEventSlate-container .LiveEventSlate-pre.LiveEventSlate-morningMeeting{background-image:url(https://static-redesign.cnbcfm.com/dist/05644c6301c29d5f98e1.png)}}@media (min-width:1020px){.LiveEventSlate-container .LiveEventSlate-pre.LiveEventSlate-morningMeeting{background-image:url(https://static-redesign.cnbcfm.com/dist/0907dbcaa9e6b98f1590.png)}}@media (min-width:1340px){.LiveEventSlate-container .LiveEventSlate-pre.LiveEventSlate-morningMeeting{background-image:url(https://static-redesign.cnbcfm.com/dist/4c02522e1899983c236e.png)}}.LiveEventSlate-container .LiveEventSlate-pre.LiveEventSlate-pro{background-image:url(https://static-redesign.cnbcfm.com/dist/603bc0c9eee2fffcf418.png)}.LiveEventSlate-container .LiveEventSlate-pre.LiveEventSlate-berkshireHathawayMeeting,.LiveEventSlate-container .LiveEventSlate-pre.LiveEventSlate-free{background-image:url(https://static-redesign.cnbcfm.com/dist/aa7e1174aeed08b7bd0f.png)}.LiveEventSlate-container .LiveEventSlate-post.LiveEventSlate-berkshireHathawayMeeting{background-image:url(https://static-redesign.cnbcfm.com/dist/5c142c155da6b42bf23b.png)}@media (max-width:759px){.LiveEventSlate-container .LiveEventSlate-post.LiveEventSlate-berkshireHathawayMeeting{background-image:url(https://static-redesign.cnbcfm.com/dist/acff13a99fc3cb2c8406.png)}}.LiveEventSlate-container .LiveEventSlate-post.LiveEventSlate-investingClub{background-image:url(https://static-redesign.cnbcfm.com/dist/9b60e1df4c50583b02fa.png)}@media (max-width:759px){.LiveEventSlate-container .LiveEventSlate-post.LiveEventSlate-investingClub{background-image:url(https://static-redesign.cnbcfm.com/dist/00e4560338770d5246e7.png)}}.LiveEventSlate-container .LiveEventSlate-post.LiveEventSlate-morningMeeting{background-image:url(https://static-redesign.cnbcfm.com/dist/189c780e2af6e2b69066.png)}@media (max-width:759px){.LiveEventSlate-container .LiveEventSlate-post.LiveEventSlate-morningMeeting{height:300px}}@media (min-width:760px){.LiveEventSlate-container .LiveEventSlate-post.LiveEventSlate-morningMeeting{background-image:url(https://static-redesign.cnbcfm.com/dist/b055b5b9f509671e0d77.png)}}@media (min-width:1020px){.LiveEventSlate-container .LiveEventSlate-post.LiveEventSlate-morningMeeting{background-image:url(https://static-redesign.cnbcfm.com/dist/00daf039d9d82c7296e8.png)}}@media (min-width:1340px){.LiveEventSlate-container .LiveEventSlate-post.LiveEventSlate-morningMeeting{background-image:url(https://static-redesign.cnbcfm.com/dist/b6108ecbb43ceecfdd4b.png)}}.LiveEventSlate-container .LiveEventSlate-post.LiveEventSlate-pro{background-image:url(https://static-redesign.cnbcfm.com/dist/351cbae0bbe7fd326046.png)}.LiveEventSlate-container .LiveEventSlate-post.LiveEventSlate-free{background-image:url(https://static-redesign.cnbcfm.com/dist/fe3c67caf861a2022cf7.png)}.LiveEventPlayerWrapper-liveStreamWrapper{margin-bottom:30px}.LiveEventPlayerWrapper-liveStreamWrapper .jw-slider-time{display:none}.StandaloneLiveEventPlayerWrapper-standaloneContainer{font-family:Proxima Nova,Helvetica,Arial,sans-serif;margin-top:20px}.StandaloneLiveEventPlayerWrapper-eventState{font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:20px;font-weight:600}.StandaloneLiveEventPlayerWrapper-webview{display:flex;justify-content:center;padding:15px 0}@media (max-width:359px){.StandaloneLiveEventPlayerWrapper-webview img{width:100%}}.QuoteInBody-quoteNameContainer{white-space:nowrap}.QuoteInBody-inlineButton{margin-right:-6px;position:relative}.QuoteInBody-dropdownInBody{border-radius:unset;color:#000;left:0;top:22px;width:200px}@media (max-width:1019px){.QuoteInBody-dropdownInBody{top:0;width:100%}}.CollapsibleContainer-collapsibleContainer,.CollapsibleContainer-collapsibleContent{position:relative}.CollapsibleContainer-collapsibleContent{height:auto;overflow:hidden;transition:max-height .2s ease}.CollapsibleContainer-collapsed .CollapsibleContainer-collapsibleContent{max-height:300px}@media (min-width:760px){.CollapsibleContainer-collapsed .CollapsibleContainer-collapsibleContent{max-height:140px}}.CollapsibleContainer-collapsed .CollapsibleContainer-fadingGradient{background-image:linear-gradient(180deg,hsla(0,0%,100%,0),#fff 49.23%);background-image:linear-gradient(180deg,hsla(0,0%,100%,0),hsla(0,0%,100%,.9));content:"";height:80px;height:300px;left:0;position:absolute;right:0;top:calc(100% - 80px);top:0}@media (min-width:760px){.CollapsibleContainer-collapsed .CollapsibleContainer-fadingGradient{max-height:140px}}.CollapsibleContainer-expanded .CollapsibleContainer-collapsibleContent{max-height:4000px}@media (min-width:1020px){.CollapsibleContainer-expanded .CollapsibleContainer-collapsibleContent{max-height:3000px}}.CollapsibleContainer-toggleContainer{align-items:center;border-top:1px solid #d9d9d9;display:flex;height:42px;justify-content:center;position:relative;text-align:center}.CollapsibleContainer-toggle{align-items:center;color:#0477c9;cursor:pointer;display:flex;font-family:Lato,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:900;line-height:20px;transition:all .2s ease}.CollapsibleContainer-webview-normal .CollapsibleContainer-toggle{font-size:14px}.CollapsibleContainer-webview-large .CollapsibleContainer-toggle{font-size:17.5px;line-height:normal}.CollapsibleContainer-webview-larger .CollapsibleContainer-toggle{font-size:21px;line-height:normal}.CollapsibleContainer-webview-xlarge .CollapsibleContainer-toggle{font-size:24.5px;line-height:normal}.CollapsibleContainer-webview-xxlarge .CollapsibleContainer-toggle{font-size:28px;line-height:normal}.CollapsibleContainer-webview-xxxlarge .CollapsibleContainer-toggle{font-size:31.5px;line-height:normal}.CollapsibleContainer-toggle span{display:inline-block;line-height:1}.CollapsibleContainer-toggle:active,.CollapsibleContainer-toggle:focus,.CollapsibleContainer-toggle:hover,.CollapsibleContainer-toggle:link{color:#0477c9}.CollapsibleContainer-toggle .icon-arrow-down-readmore:before{font-size:13px;font-weight:400;margin-left:8px}.CollapsibleContainer-expanded .icon-arrow-down-readmore:before{display:inline-block;transform:rotate(180deg)}.LiveBlogTimestamp-liveBlogTimeStamp>div,.LiveBlogTimestamp-time,.LiveBlogTimestamp-timeHidden{color:#747474;font-size:10px;font-weight:600;letter-spacing:1.2px;margin-bottom:10px;margin-right:4px;text-transform:uppercase;white-space:normal}.LiveBlogTimestamp-liveBlogTimeStamp>div time,.LiveBlogTimestamp-time time,.LiveBlogTimestamp-timeHidden time{white-space:nowrap}@media (min-width:760px){.LiveBlogTimestamp-liveBlogTimeStamp>div,.LiveBlogTimestamp-time,.LiveBlogTimestamp-timeHidden{font-size:12px;margin-bottom:16px}}.LiveBlogTimestamp-timeHidden{opacity:0}.LiveBlogTimestamp-liveBlogTimeStamp{align-items:center;display:flex;margin-top:0}.LiveBlogTimestamp-datetimeDivider:before{content:"•";display:inline-block;padding:0 3px}.OneTrustLoadingPlaceholder-container{align-items:center;background:#fff;display:flex;justify-content:center}.OneTrustBlockedPlaceholder-container{align-items:center;background-color:#d1d9dc;background-image:url(https://static-redesign.cnbcfm.com/dist/1eaf28c48f6e504fb498.svg);background-repeat:no-repeat;background-size:auto 100%;display:flex;justify-content:center}.OneTrustBlockedPlaceholder-innerCopy{font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:18px;font-weight:800;padding:20px;text-align:center}@media (prefers-color-scheme:dark){.OneTrustBlockedPlaceholder-innerCopy{color:#111}}.OneTrustBlockedPlaceholder-link{color:#1876b8;cursor:pointer}a.OneTrustBlockedPlaceholder-onetrustSettingsDeepLink{text-decoration:none!important}.withOneTrustPlaceholder-placeholderDimensions{width:100%}@media (max-width:759px){.withOneTrustPlaceholder-placeholderDimensions{height:196px}}@media (min-width:760px){.withOneTrustPlaceholder-placeholderDimensions{height:235px}}.ArticleGate-proGate{display:flex;justify-content:flex-end;margin-bottom:50px;margin-left:0;padding-bottom:50px;position:relative;width:100%}.ArticleGate-proGate:before{background:linear-gradient(180deg,hsla(0,0%,100%,0),#fff);bottom:calc(100% + 30px);content:"";height:160px;position:absolute;width:100%}.ArticleGate-proGate .ArticleGate-spacer{overflow:hidden;width:100%}@media (min-width:760px){.ArticleGate-proGate{margin-bottom:40px;padding-bottom:0}.ArticleGate-proGate:before{height:135px}.ArticleGate-proGate .ArticleGate-spacer{margin-left:16.66667%}}@media (min-width:1020px){.ArticleGate-proGate{margin-bottom:50px}.ArticleGate-proGate:before{height:105px}.ArticleGate-proGate .ArticleGate-spacer{margin-left:calc(14.28571% + 4.28571px)}}.ArticleGate-pianoGateWebview{position:relative}.ArticleGate-pianoGateWebview:before{background:linear-gradient(180deg,hsla(0,0%,100%,0),#fff);bottom:calc(100% + 30px);content:"";height:160px;position:absolute;width:100%}@media (prefers-color-scheme:dark){.ArticleGate-pianoGateWebview:before{background:linear-gradient(180deg,transparent,#000)}}.ArticleGate-dynamicPaywall{display:flex;margin-bottom:50px}.ArticleGate-dynamicPaywall:before{background:none}.ArticleGate-dynamicPaywall .ArticleGate-spacer{overflow:hidden;width:100%}@media (min-width:760px){.ArticleGate-dynamicPaywall{margin-bottom:40px;padding-bottom:0}.ArticleGate-dynamicPaywall .ArticleGate-spacer{margin-left:16.66667%}}@media (min-width:1020px){.ArticleGate-dynamicPaywall{margin-bottom:50px}.ArticleGate-dynamicPaywall .ArticleGate-spacer{margin-left:calc(14.28571% + 4.28571px)}}.UpdatePill-updatePill{align-items:center;background:#ce2b2b;border-radius:14px;color:#fff;cursor:pointer;display:flex;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:700;height:28px;justify-content:center;line-height:17px;margin-right:7.78px;pointer-events:auto;-webkit-user-select:none;-moz-user-select:none;user-select:none;width:120px}.UpdatePill-displayText{margin-left:7.78px}.BackToTopPill-pillContainer{align-items:center;background:#fff;border:2px solid #27313c;border-radius:60px;color:#27313c;cursor:pointer;display:flex;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:700;height:28px;justify-content:center;line-height:17px;pointer-events:auto;-webkit-user-select:none;-moz-user-select:none;user-select:none;width:120px}.BackToTopPill-pillContainer svg{fill:#27313c}.BackToTopPill-backPillStickyPosition{align-items:center;display:block;display:flex;justify-content:center;pointer-events:none;position:sticky;right:0;top:0;z-index:95}.BackToTopPill-backPillStickyPosition .BackToTopPill-backPillVerticalOffset{pointer-events:none;position:relative;top:10px}.BackToTopPill-displayText{margin-left:5.78px;margin-top:-1px;padding-right:2px}.LiveCommentaryFeed-scrollContainer{height:100%;overflow-x:hidden;overflow-y:auto;position:relative;width:100%}.LiveCommentaryFeed-scrollContainer .LiveCommentaryFeed-fade:before{box-shadow:0 0 93px 93px #fff;content:"";display:block;height:.1px;pointer-events:none;position:sticky;top:100%;width:100%;z-index:1}@media (min-width:760px){.LiveCommentaryFeed-scrollContainer .LiveCommentaryFeed-fade:before{box-shadow:0 0 76px 76px #fff}}@media (min-width:1020px){.LiveCommentaryFeed-scrollContainer .LiveCommentaryFeed-fade:before{box-shadow:0 0 93px 93px #fff}}.LiveCommentaryFeed-slate,.LiveCommentaryFeed-slate a{color:#171717;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:18px;font-style:normal;font-weight:600;line-height:24px}.LiveCommentaryFeed-slate{align-items:center;background-color:#f8f8f8;border:1px solid #d9d9d9;display:flex;flex-direction:column;height:100%;justify-content:center;padding:18px;text-align:center}.LiveCommentaryFeed-slate a{text-decoration:underline}.LiveCommentaryFeed-slate a:hover{color:#00a857}.LiveCommentaryFeed-slateContainer{border-top:3px solid #9e9e9e;height:120px}.LiveCommentaryFeed-slateContainer p{font-size:12px;line-height:20px;margin:0}.LiveCommentaryFeed-slateContainer p a{font-size:12px}.LiveCommentaryFeed-slateContainer p:first-child{font-size:14px}.LiveCommentaryFeed-slateContainer p:not(:first-child):not(:last-child){margin-top:8px}.LiveCommentaryFeed-slateContainer p:last-child{line-height:22px;margin-top:8px}@media (min-width:760px){.LiveCommentaryFeed-slateContainer p{font-size:16px;line-height:36px}.LiveCommentaryFeed-slateContainer p a{font-size:16px}.LiveCommentaryFeed-slateContainer p:first-child{font-size:18px;line-height:24px}.LiveCommentaryFeed-slateContainer p:not(:first-child):not(:last-child){margin-top:unset}.LiveCommentaryFeed-slateContainer p:last-child{line-height:28px}}@media (min-width:1020px){.LiveCommentaryFeed-slateContainer{margin-top:unset}.LiveCommentaryFeed-slateContainer p:not(:first-child):not(:last-child){line-height:58px}}@media (min-width:760px){.LiveCommentaryFeed-slateContainer.LiveCommentaryFeed-offline{height:180px}}@media (min-width:1020px){.LiveCommentaryFeed-slateContainer.LiveCommentaryFeed-offline{height:302px}}@media (min-width:1340px){.LiveCommentaryFeed-slateContainer.LiveCommentaryFeed-offline{height:425px}}.LiveCommentaryFeed-slateContainer.LiveCommentaryFeed-coverageEnded{height:0;overflow:visible;position:sticky;top:0;transform:translateY(-62px);z-index:90}.LiveCommentaryFeed-slateContainer.LiveCommentaryFeed-coverageEnded .LiveCommentaryFeed-slate{height:62px}@media (min-width:760px){.LiveCommentaryFeed-slateContainer.LiveCommentaryFeed-coverageEnded{transform:translateY(-120px)}.LiveCommentaryFeed-slateContainer.LiveCommentaryFeed-coverageEnded .LiveCommentaryFeed-slate{height:120px}}.LiveCommentaryFeed-slateContainer.LiveCommentaryFeed-shadow .LiveCommentaryFeed-slate{box-shadow:0 6px 4px -4px #c4c4c4}.LiveCommentaryFeed-coverageEndedFeedWrapper{padding-top:62px}@media (min-width:760px){.LiveCommentaryFeed-coverageEndedFeedWrapper{padding-top:120px}}.LiveCommentaryHeader-liveUpdatesPill{height:28px;margin-bottom:12px;text-align:center;width:142px}.LiveCommentaryHeader-liveUpdatesPill .LiveCommentaryHeader-liveUpdatesPillContent{background:#002f6c;color:#fff;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-weight:600;height:100%;line-height:28px;margin:0;width:100%}.LiveCommentaryHeader-timestampContainer{align-items:baseline;height:18px;width:288px}@media (max-width:759px){.LiveCommentaryHeader-timestampContainer{flex-direction:column;margin-bottom:16px}}.LiveCommentaryHeader-liveCommentaryHeader{position:relative}.LiveCommentaryHeader-wrapper{flex-grow:0;flex-shrink:0;max-width:calc(100% - 30px);max-width:100%;min-width:calc(100% - 30px);padding-left:2px;position:relative}@media (min-width:760px){.LiveCommentaryHeader-wrapper{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.LiveCommentaryHeader-wrapper{max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media screen and (min-width:1020px) and (-ms-high-contrast:none){.LiveCommentaryHeader-wrapper{max-width:100%;min-width:100%}}@media (min-width:1340px){.LiveCommentaryHeader-wrapper{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:760px){.LiveCommentaryHeader-wrapper{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.LiveCommentaryHeader-wrapper{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.LiveCommentaryHeader-wrapper{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.LiveCommentaryHeader-wrapper{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.LiveCommentaryHeader-wrapper{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.LiveCommentaryHeader-wrapper{flex-grow:0;flex-shrink:0;max-width:calc(88.88889% - 3.33333px);min-width:calc(88.88889% - 3.33333px)}}@media (min-width:1340px){.LiveCommentaryHeader-wrapper{flex-grow:0;flex-shrink:0;max-width:calc(72.72727% + 21.81818px);min-width:calc(72.72727% + 21.81818px);padding-right:70px}}.LiveCommentaryHeader-headerContentContainer{margin:0 auto;position:relative}@media (min-width:760px){.LiveCommentaryHeader-headerContentContainer{padding:0}}@media (min-width:1020px){.LiveCommentaryHeader-headerContentContainer{max-width:960px}}@media (min-width:1340px){.LiveCommentaryHeader-headerContentContainer{max-width:1290px}}.LiveCommentaryHeader-liveBlogTimeStamp>div,.LiveCommentaryHeader-time,.LiveCommentaryHeader-timeHidden{color:#747474;font-size:11px;font-weight:600;letter-spacing:1.2px;margin-bottom:4px;margin-right:4px;text-transform:uppercase}.LiveCommentaryHeader-liveBlogTimeStamp>div time,.LiveCommentaryHeader-time time,.LiveCommentaryHeader-timeHidden time{white-space:nowrap}@media (min-width:760px){.LiveCommentaryHeader-liveBlogTimeStamp>div,.LiveCommentaryHeader-time,.LiveCommentaryHeader-timeHidden{font-size:12px;margin-bottom:6px}}.LiveCommentaryHeader-timeHidden{opacity:0}.LiveCommentaryHeader-datetimeDivider:before{content:"•";display:inline-block;padding:0 3px}.LiveCommentaryHeader-title{color:#171717;font-family:Proxima Nova,sans-serif;font-size:16px;font-style:normal;font-weight:700;letter-spacing:0;line-height:20px;margin:0 0 1px}@media (min-width:760px){.LiveCommentaryHeader-title{font-size:28px;line-height:32px;margin:0 0 6px}}@media (max-width:759px){.LiveCommentaryHeader-about.LiveCommentaryHeader-proUserAboutSection{display:none}}.LiveCommentaryHeader-about>div{color:#747474;font-family:Lyon,serif;font-size:18px;font-style:italic;font-weight:400;line-height:26px;margin-left:0;max-width:unset}@media (max-width:759px){.LiveCommentaryHeader-about>div{font-size:14px;line-height:20px}}.LiveCommentaryHeader-about>div p{margin-bottom:10px;margin-top:10px}.LiveCommentaryHeader-about>div p a{color:#747474;text-decoration:underline}.LiveCommentaryHeader-about>div p a:hover{color:#00a857}.PlayerSlate-slateOverlay{display:block;height:auto;top:0;width:100%;z-index:2}.PlayerSlate-clickable{cursor:pointer}.ProLivePlayer-container{background-color:#171717;position:absolute;top:0;width:100%}.ProLivePlayer-nofs .jw-icon-fullscreen{display:none!important}#jw-cnbc-live-stream-player .jw-text-live:before{color:#ce2b2b}#jw-cnbc-live-stream-player .jw-text-live.jw-dvr-live:before{color:#fff}#jw-cnbc-live-stream-player .jw-text-live.jw-dvr-live{color:#747474}#jw-cnbc-live-stream-player .jw-slider-time .jw-progress{background:#f2f2f2}.LiveCommentaryPlayer-container{background-color:#171717;left:0;padding-top:56.25%;position:relative;top:0;width:100%}@media (max-width:1019px){.LiveCommentaryPlayer-container{margin-bottom:16px}}.LiveCommentaryPopularQuotes-tableContainer{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='100%25' height='100%25' fill='none' stroke='%239E9E9EFF' stroke-dasharray='1, 2' stroke-linecap='square'/%3E%3C/svg%3E");display:flex;flex-direction:column;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:800;height:100%;padding:30px 18px}.LiveCommentaryPopularQuotes-title{border-top:3px solid #cfd8e2;color:#002f6c;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-style:bold;font-weight:700;line-height:20px;max-width:365px;padding:4px 0 20px}.ProLiveCommentary-outerContainer{align-items:center;display:flex;flex-direction:column;margin:0 auto;max-width:1290px;min-height:900px;padding:20px;width:100%}@media (min-width:760px){.ProLiveCommentary-outerContainer{padding:40px 20px}}@media (min-width:1020px){.ProLiveCommentary-outerContainer{padding:40px 0}}.ProLiveCommentary-nonProMainContainer,.ProLiveCommentary-proMainContainer{display:flex;flex-direction:column;width:100%}@media (min-width:1020px){.ProLiveCommentary-nonProMainContainer,.ProLiveCommentary-proMainContainer{flex-direction:row;margin:0 auto;max-width:960px}}@media (min-width:1340px){.ProLiveCommentary-nonProMainContainer,.ProLiveCommentary-proMainContainer{max-width:1290px}}.ProLiveCommentary-nonProMainContainer{flex-direction:column}.ProLiveCommentary-leftColumn{padding:0;width:100%}@media (min-width:1020px){.ProLiveCommentary-leftColumn{width:555px}}@media (min-width:1340px){.ProLiveCommentary-leftColumn{width:770px}}.ProLiveCommentary-rightColumn{height:700px;margin:0 auto;padding:0;width:100%}@media (min-width:1020px){.ProLiveCommentary-rightColumn{height:651px;margin:0 0 20px 26px;width:410px}}@media (min-width:1340px){.ProLiveCommentary-rightColumn{height:794px;width:520px}}.ProLiveCommentary-title{color:#171717;font-family:Proxima Nova,sans-serif;font-size:16px;font-style:normal;font-weight:700;letter-spacing:0;line-height:20px;margin:16px 0 12px}@media (min-width:760px){.ProLiveCommentary-title{font-size:28px;line-height:32px;margin:24px 0 12px}}.ProLiveCommentary-about>div{color:#747474;font-family:Lyon,serif;font-size:18px;font-style:italic;font-weight:400;line-height:26px;margin-left:0;max-width:unset}@media (max-width:759px){.ProLiveCommentary-about>div{font-size:14px;line-height:20px}}.ProLiveCommentary-about>div p{margin-bottom:10px;margin-top:10px}.ProLiveCommentary-about>div p a{color:#747474;text-decoration:underline}.ProLiveCommentary-about>div p a:hover{color:#00a857}@media (max-width:759px){.ProLiveCommentary-proMainContainer .ProLiveCommentary-about{display:none}}.ProLiveCommentary-headerAndMainContainer{display:flex;flex-direction:column;width:100%}.ProLiveCommentary-nonProTextContainer{width:100%}@media (min-width:1020px){.ProLiveCommentary-nonProTextContainer{max-width:648px}}@media (min-width:1340px){.ProLiveCommentary-nonProTextContainer{max-width:739px}}.ProLiveCommentary-nonProTextContainer .ProLiveCommentary-title{margin-top:0}@media (min-width:760px){.ProLiveCommentary-nonProTextContainer .ProLiveCommentary-title{margin-top:2px}}.ProLiveCommentary-nonProTextContainer .ProLiveCommentary-about{margin-bottom:-6px}@media (min-width:760px){.ProLiveCommentary-nonProTextContainer .ProLiveCommentary-about{margin-bottom:-2px}}.ProLiveCommentary-tableTitle{border-top:3px solid #cfd8e2;color:#002f6c;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-style:bold;font-weight:700;line-height:20px;padding:4px 0 20px}.ProLiveCommentary-symbolTablesContainer{display:flex;justify-content:space-between;margin-top:33px}.ProLiveCommentary-symbolTablesContainer>div:first-child{margin-right:9px}.ProLiveCommentary-symbolTablesContainer>div{flex-basis:0;flex-grow:1}@media (max-width:1019px){.ProLiveCommentary-symbolTablesContainer{display:none}}.ProLiveCommentary-symbolTablesContainer .ProLiveCommentary-popularQuotesContainer{margin-bottom:11px}@media (max-width:1339px){.ProLiveCommentary-symbolTablesContainer .ProLiveCommentary-popularQuotesContainer{height:269px}}.ProLiveCommentary-symbolTablesContainer .ProLiveCommentary-watchlistContainer{margin-bottom:11px}.ProLiveCommentary-symbolTablesContainer .ProLiveCommentary-popularQuotesContainer>div,.ProLiveCommentary-symbolTablesContainer .ProLiveCommentary-watchlistContainer>div{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='100%25' height='100%25' fill='none' stroke='%239E9E9EFF' stroke-dasharray='1, 2' stroke-linecap='square'/%3E%3C/svg%3E");padding:14px 18px}@font-face{font-display:swap;font-family:Avenir;font-style:italic;font-weight:500;src:local("~assets/fonts/Avenir/AvenirNext-MediumItalic.eot"),url(https://static-redesign.cnbcfm.com/dist/AvenirNext-MediumItalic.eot) format("eot")}@font-face{font-display:swap;font-family:Avenir;font-style:italic;font-weight:500;src:local("~assets/fonts/Avenir/AvenirNext-MediumItalic.woff"),url(https://static-redesign.cnbcfm.com/dist/AvenirNext-MediumItalic.woff) format("woff")}@font-face{font-display:swap;font-family:Avenir;font-style:italic;font-weight:500;src:local("~assets/fonts/Avenir/AvenirNext-MediumItalic.woff2"),url(https://static-redesign.cnbcfm.com/dist/AvenirNext-MediumItalic.woff2) format("woff2")}@font-face{font-display:swap;font-family:Avenir;font-style:italic;font-weight:600;src:local("~assets/fonts/Avenir/AvenirNext-DemiBoldItalic.eot"),url(https://static-redesign.cnbcfm.com/dist/AvenirNext-DemiBoldItalic.eot) format("eot")}@font-face{font-display:swap;font-family:Avenir;font-style:italic;font-weight:600;src:local("~assets/fonts/Avenir/AvenirNext-DemiBoldItalic.woff"),url(https://static-redesign.cnbcfm.com/dist/AvenirNext-DemiBoldItalic.woff) format("woff")}@font-face{font-display:swap;font-family:Avenir;font-style:italic;font-weight:600;src:local("~assets/fonts/Avenir/AvenirNext-DemiBoldItalic.woff2"),url(https://static-redesign.cnbcfm.com/dist/AvenirNext-DemiBoldItalic.woff2) format("woff2")}@font-face{font-display:swap;font-family:Avenir;font-style:italic;font-weight:700;src:local("~assets/fonts/Avenir/AvenirNext-BoldItalic.eot"),url(https://static-redesign.cnbcfm.com/dist/AvenirNext-BoldItalic.eot) format("eot")}@font-face{font-display:swap;font-family:Avenir;font-style:italic;font-weight:700;src:local("~assets/fonts/Avenir/AvenirNext-BoldItalic.woff"),url(https://static-redesign.cnbcfm.com/dist/AvenirNext-BoldItalic.woff) format("woff")}@font-face{font-display:swap;font-family:Avenir;font-style:italic;font-weight:700;src:local("~assets/fonts/Avenir/AvenirNext-BoldItalic.woff2"),url(https://static-redesign.cnbcfm.com/dist/AvenirNext-BoldItalic.woff2) format("woff2")}@font-face{font-display:swap;font-family:Avenir;font-style:italic;font-weight:800;src:local("~assets/fonts/Avenir/AvenirNext-HeavyItalic.eot"),url(https://static-redesign.cnbcfm.com/dist/AvenirNext-HeavyItalic.eot) format("eot")}@font-face{font-display:swap;font-family:Avenir;font-style:italic;font-weight:800;src:local("~assets/fonts/Avenir/AvenirNext-HeavyItalic.woff"),url(https://static-redesign.cnbcfm.com/dist/AvenirNext-HeavyItalic.woff) format("woff")}@font-face{font-display:swap;font-family:Avenir;font-style:italic;font-weight:800;src:local("~assets/fonts/Avenir/AvenirNext-HeavyItalic.woff2"),url(https://static-redesign.cnbcfm.com/dist/AvenirNext-HeavyItalic.woff2) format("woff2")}@font-face{font-display:swap;font-family:Avenir;font-style:normal;font-weight:400;src:local("~assets/fonts/Avenir/AvenirNext-Regular.eot"),url(https://static-redesign.cnbcfm.com/dist/AvenirNext-Regular.eot) format("eot")}@font-face{font-display:swap;font-family:Avenir;font-style:normal;font-weight:400;src:local("~assets/fonts/Avenir/AvenirNext-Regular.woff"),url(https://static-redesign.cnbcfm.com/dist/AvenirNext-Regular.woff) format("woff")}@font-face{font-display:swap;font-family:Avenir;font-style:normal;font-weight:400;src:local("~assets/fonts/Avenir/AvenirNext-Regular.woff2"),url(https://static-redesign.cnbcfm.com/dist/AvenirNext-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Avenir;font-style:normal;font-weight:500;src:local("~assets/fonts/Avenir/AvenirNext-Medium.eot"),url(https://static-redesign.cnbcfm.com/dist/AvenirNext-Medium.eot) format("eot")}@font-face{font-display:swap;font-family:Avenir;font-style:normal;font-weight:500;src:local("~assets/fonts/Avenir/AvenirNext-Medium.woff"),url(https://static-redesign.cnbcfm.com/dist/AvenirNext-Medium.woff) format("woff")}@font-face{font-display:swap;font-family:Avenir;font-style:normal;font-weight:500;src:local("~assets/fonts/Avenir/AvenirNext-Medium.woff2"),url(https://static-redesign.cnbcfm.com/dist/AvenirNext-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Avenir;font-style:normal;font-weight:600;src:local("~assets/fonts/Avenir/AvenirNext-DemiBold.eot"),url(https://static-redesign.cnbcfm.com/dist/AvenirNext-DemiBold.eot) format("eot")}@font-face{font-display:swap;font-family:Avenir;font-style:normal;font-weight:600;src:local("~assets/fonts/Avenir/AvenirNext-DemiBold.woff"),url(https://static-redesign.cnbcfm.com/dist/AvenirNext-DemiBold.woff) format("woff")}@font-face{font-display:swap;font-family:Avenir;font-style:normal;font-weight:600;src:local("~assets/fonts/Avenir/AvenirNext-DemiBold.woff2"),url(https://static-redesign.cnbcfm.com/dist/AvenirNext-DemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Avenir;font-style:normal;font-weight:700;src:local("~assets/fonts/Avenir/AvenirNext-Bold.eot"),url(https://static-redesign.cnbcfm.com/dist/AvenirNext-Bold.eot) format("eot")}@font-face{font-display:swap;font-family:Avenir;font-style:normal;font-weight:700;src:local("~assets/fonts/Avenir/AvenirNext-Bold.woff"),url(https://static-redesign.cnbcfm.com/dist/AvenirNext-Bold.woff) format("woff")}@font-face{font-display:swap;font-family:Avenir;font-style:normal;font-weight:700;src:local("~assets/fonts/Avenir/AvenirNext-Bold.woff2"),url(https://static-redesign.cnbcfm.com/dist/AvenirNext-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Avenir;font-style:normal;font-weight:800;src:local("~assets/fonts/Avenir/AvenirNext-Heavy.eot"),url(https://static-redesign.cnbcfm.com/dist/AvenirNext-Heavy.eot) format("eot")}@font-face{font-display:swap;font-family:Avenir;font-style:normal;font-weight:800;src:local("~assets/fonts/Avenir/AvenirNext-Heavy.woff"),url(https://static-redesign.cnbcfm.com/dist/AvenirNext-Heavy.woff) format("woff")}@font-face{font-display:swap;font-family:Avenir;font-style:normal;font-weight:800;src:local("~assets/fonts/Avenir/AvenirNext-Heavy.woff2"),url(https://static-redesign.cnbcfm.com/dist/AvenirNext-Heavy.woff2) format("woff2")}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular.eot"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular.eot) format("eot")}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular.woff"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular.woff) format("woff")}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular.woff2"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("Rozha One"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular.woff)}@font-face{font-display:swap;font-family:Lyon;font-style:normal;font-weight:800;src:local("~assets/fonts/Lyon/LyonText-Black-Web.eot"),url(https://static-redesign.cnbcfm.com/dist/LyonText-Black-Web.eot) format("eot")}@font-face{font-display:swap;font-family:Lyon;font-style:normal;font-weight:800;src:local("~assets/fonts/Lyon/LyonText-Black-Web.woff"),url(https://static-redesign.cnbcfm.com/dist/LyonText-Black-Web.woff) format("woff")}@font-face{font-display:swap;font-family:Lyon;font-style:normal;font-weight:800;src:local("~assets/fonts/Lyon/LyonText-Black-Web.woff2"),url(https://static-redesign.cnbcfm.com/dist/LyonText-Black-Web.woff2) format("woff2")}@font-face{font-display:swap;font-family:Lyon;font-style:normal;font-weight:600;src:local("~assets/fonts/Lyon/LyonText-Bold-Web.eot"),url(https://static-redesign.cnbcfm.com/dist/LyonText-Bold-Web.eot) format("eot")}@font-face{font-display:swap;font-family:Lyon;font-style:normal;font-weight:600;src:local("~assets/fonts/Lyon/LyonText-Bold-Web.woff"),url(https://static-redesign.cnbcfm.com/dist/LyonText-Bold-Web.woff) format("woff")}@font-face{font-display:swap;font-family:Lyon;font-style:normal;font-weight:600;src:local("~assets/fonts/Lyon/LyonText-Bold-Web.woff2"),url(https://static-redesign.cnbcfm.com/dist/LyonText-Bold-Web.woff2) format("woff2")}@font-face{font-display:swap;font-family:Lyon;font-style:normal;font-weight:400;src:local("~assets/fonts/Lyon/LyonText-Regular-Web.eot"),url(https://static-redesign.cnbcfm.com/dist/LyonText-Regular-Web.eot) format("eot")}@font-face{font-display:swap;font-family:Lyon;font-style:normal;font-weight:400;src:local("~assets/fonts/Lyon/LyonText-Regular-Web.woff"),url(https://static-redesign.cnbcfm.com/dist/LyonText-Regular-Web.woff) format("woff")}@font-face{font-display:swap;font-family:Lyon;font-style:normal;font-weight:400;src:local("~assets/fonts/Lyon/LyonText-Regular-Web.woff2"),url(https://static-redesign.cnbcfm.com/dist/LyonText-Regular-Web.woff2) format("woff2")}@font-face{font-display:swap;font-family:Lyon;font-style:italic;font-weight:400;src:local("~assets/fonts/Lyon/LyonText-RegularItalic-Web.eot"),url(https://static-redesign.cnbcfm.com/dist/LyonText-RegularItalic-Web.eot) format("eot")}@font-face{font-display:swap;font-family:Lyon;font-style:italic;font-weight:400;src:local("~assets/fonts/Lyon/LyonText-RegularItalic-Web.woff"),url(https://static-redesign.cnbcfm.com/dist/LyonText-RegularItalic-Web.woff) format("woff")}@font-face{font-display:swap;font-family:Lyon;font-style:italic;font-weight:400;src:local("~assets/fonts/Lyon/LyonText-RegularItalic-Web.woff2"),url(https://static-redesign.cnbcfm.com/dist/LyonText-RegularItalic-Web.woff2) format("woff2")}@font-face{font-display:swap;font-family:Lyon;font-style:normal;font-weight:500;src:local("~assets/fonts/Lyon/LyonText-Semibold-Web.eot"),url(https://static-redesign.cnbcfm.com/dist/LyonText-Semibold-Web.eot) format("eot")}@font-face{font-display:swap;font-family:Lyon;font-style:normal;font-weight:500;src:local("~assets/fonts/Lyon/LyonText-Semibold-Web.woff"),url(https://static-redesign.cnbcfm.com/dist/LyonText-Semibold-Web.woff) format("woff")}@font-face{font-display:swap;font-family:Lyon;font-style:normal;font-weight:500;src:local("~assets/fonts/Lyon/LyonText-Semibold-Web.woff2"),url(https://static-redesign.cnbcfm.com/dist/LyonText-Semibold-Web.woff2) format("woff2")}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:800;src:local("~assets/fonts/Averta/361747_2_0.eot"),url(https://static-redesign.cnbcfm.com/dist/361747_2_0.eot) format("eot")}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:800;src:local("~assets/fonts/Averta/361747_2_0.eot?#iefix"),url(https://static-redesign.cnbcfm.com/dist/361747_2_0.eot?#iefix) format("embedded-opentype")}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:800;src:local("~assets/fonts/Averta/361747_2_0.ttf"),url(https://static-redesign.cnbcfm.com/dist/361747_2_0.ttf) format("ttf")}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:800;src:local("~assets/fonts/Averta/361747_2_0.woff"),url(https://static-redesign.cnbcfm.com/dist/361747_2_0.woff) format("woff")}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:800;src:local("~assets/fonts/Averta/361747_2_0.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_2_0.woff2) format("woff2")}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:600;src:local("~assets/fonts/Averta/361747_0_0.eot"),url(https://static-redesign.cnbcfm.com/dist/361747_0_0.eot) format("eot")}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:600;src:local("~assets/fonts/Averta/361747_0_0.eot?#iefix"),url(https://static-redesign.cnbcfm.com/dist/361747_0_0.eot?#iefix) format("embedded-opentype")}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:600;src:local("~assets/fonts/Averta/361747_0_0.ttf"),url(https://static-redesign.cnbcfm.com/dist/361747_0_0.ttf) format("ttf")}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:600;src:local("~assets/fonts/Averta/361747_0_0.woff"),url(https://static-redesign.cnbcfm.com/dist/361747_0_0.woff) format("woff")}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:600;src:local("~assets/fonts/Averta/361747_0_0.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_0_0.woff2) format("woff2")}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:700;src:local("~assets/fonts/Averta/361747_1_0.eot"),url(https://static-redesign.cnbcfm.com/dist/361747_1_0.eot) format("eot")}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:700;src:local("~assets/fonts/Averta/361747_1_0.eot?#iefix"),url(https://static-redesign.cnbcfm.com/dist/361747_1_0.eot?#iefix) format("embedded-opentype")}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:700;src:local("~assets/fonts/Averta/361747_1_0.ttf"),url(https://static-redesign.cnbcfm.com/dist/361747_1_0.ttf) format("ttf")}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:700;src:local("~assets/fonts/Averta/361747_1_0.woff"),url(https://static-redesign.cnbcfm.com/dist/361747_1_0.woff) format("woff")}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:700;src:local("~assets/fonts/Averta/361747_1_0.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_1_0.woff2) format("woff2")}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:400;src:local("~assets/fonts/Averta/361747_3_0.eot"),url(https://static-redesign.cnbcfm.com/dist/361747_3_0.eot) format("eot")}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:400;src:local("~assets/fonts/Averta/361747_3_0.eot?#iefix"),url(https://static-redesign.cnbcfm.com/dist/361747_3_0.eot?#iefix) format("embedded-opentype")}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:400;src:local("~assets/fonts/Averta/361747_3_0.ttf"),url(https://static-redesign.cnbcfm.com/dist/361747_3_0.ttf) format("ttf")}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:400;src:local("~assets/fonts/Averta/361747_3_0.woff"),url(https://static-redesign.cnbcfm.com/dist/361747_3_0.woff) format("woff")}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:400;src:local("~assets/fonts/Averta/361747_3_0.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_3_0.woff2) format("woff2")}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:800;src:local("~assets/fonts/ProximaNova/351C86_0_0.eot"),url(https://static-redesign.cnbcfm.com/dist/351C86_0_0.eot) format("eot")}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:800;src:local("~assets/fonts/ProximaNova/351C86_0_0.eot?#iefix"),url(https://static-redesign.cnbcfm.com/dist/351C86_0_0.eot?#iefix) format("embedded-opentype")}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:800;src:local("~assets/fonts/ProximaNova/351C86_0_0.ttf"),url(https://static-redesign.cnbcfm.com/dist/351C86_0_0.ttf) format("truetype")}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:800;src:local("~assets/fonts/ProximaNova/351C86_0_0.woff"),url(https://static-redesign.cnbcfm.com/dist/351C86_0_0.woff) format("woff")}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:800;src:local("~assets/fonts/ProximaNova/351C86_0_0.woff2"),url(https://static-redesign.cnbcfm.com/dist/351C86_0_0.woff2) format("woff2")}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:600;src:local("~assets/fonts/ProximaNova/351C86_1_0.eot"),url(https://static-redesign.cnbcfm.com/dist/351C86_1_0.eot) format("eot")}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:600;src:local("~assets/fonts/ProximaNova/351C86_1_0.eot?#iefix"),url(https://static-redesign.cnbcfm.com/dist/351C86_1_0.eot?#iefix) format("embedded-opentype")}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:600;src:local("~assets/fonts/ProximaNova/351C86_1_0.ttf"),url(https://static-redesign.cnbcfm.com/dist/351C86_1_0.ttf) format("truetype")}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:600;src:local("~assets/fonts/ProximaNova/351C86_1_0.woff"),url(https://static-redesign.cnbcfm.com/dist/351C86_1_0.woff) format("woff")}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:600;src:local("~assets/fonts/ProximaNova/351C86_1_0.woff2"),url(https://static-redesign.cnbcfm.com/dist/351C86_1_0.woff2) format("woff2")}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:700;src:local("~assets/fonts/ProximaNova/351C86_2_0.eot"),url(https://static-redesign.cnbcfm.com/dist/351C86_2_0.eot) format("eot")}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:700;src:local("~assets/fonts/ProximaNova/351C86_2_0.eot?#iefix"),url(https://static-redesign.cnbcfm.com/dist/351C86_2_0.eot?#iefix) format("embedded-opentype")}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:700;src:local("~assets/fonts/ProximaNova/351C86_2_0.ttf"),url(https://static-redesign.cnbcfm.com/dist/351C86_2_0.ttf) format("truetype")}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:700;src:local("~assets/fonts/ProximaNova/351C86_2_0.woff"),url(https://static-redesign.cnbcfm.com/dist/351C86_2_0.woff) format("woff")}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:700;src:local("~assets/fonts/ProximaNova/351C86_2_0.woff2"),url(https://static-redesign.cnbcfm.com/dist/351C86_2_0.woff2) format("woff2")}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:400;src:local("~assets/fonts/ProximaNova/351C86_3_0.eot"),url(https://static-redesign.cnbcfm.com/dist/351C86_3_0.eot) format("eot")}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:400;src:local("~assets/fonts/ProximaNova/351C86_3_0.eot?#iefix"),url(https://static-redesign.cnbcfm.com/dist/351C86_3_0.eot?#iefix) format("embedded-opentype")}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:400;src:local("~assets/fonts/ProximaNova/351C86_3_0.ttf"),url(https://static-redesign.cnbcfm.com/dist/351C86_3_0.ttf) format("truetype")}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:400;src:local("~assets/fonts/ProximaNova/351C86_3_0.woff"),url(https://static-redesign.cnbcfm.com/dist/351C86_3_0.woff) format("woff")}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:400;src:local("~assets/fonts/ProximaNova/351C86_3_0.woff2"),url(https://static-redesign.cnbcfm.com/dist/351C86_3_0.woff2) format("woff2")}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:500;src:local("~assets/fonts/ProximaNova/351C86_4_0.eot"),url(https://static-redesign.cnbcfm.com/dist/351C86_4_0.eot) format("eot")}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:500;src:local("~assets/fonts/ProximaNova/351C86_4_0.eot?#iefix"),url(https://static-redesign.cnbcfm.com/dist/351C86_4_0.eot?#iefix) format("embedded-opentype")}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:500;src:local("~assets/fonts/ProximaNova/351C86_4_0.ttf"),url(https://static-redesign.cnbcfm.com/dist/351C86_4_0.ttf) format("truetype")}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:500;src:local("~assets/fonts/ProximaNova/351C86_4_0.woff"),url(https://static-redesign.cnbcfm.com/dist/351C86_4_0.woff) format("woff")}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:500;src:local("~assets/fonts/ProximaNova/351C86_4_0.woff2"),url(https://static-redesign.cnbcfm.com/dist/351C86_4_0.woff2) format("woff2")}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular.ttf"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular.ttf) format("ttf")}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("Rozha One"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular.ttf)}@font-face{font-display:swap;font-family:Lato;font-style:normal;font-weight:400;src:local("~assets/fonts/Lato/Lato-Regular.woff2"),url(https://static-redesign.cnbcfm.com/dist/Lato-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Lato;font-style:normal;font-weight:700;src:local("~assets/fonts/Lato/Lato-Bold.woff2"),url(https://static-redesign.cnbcfm.com/dist/Lato-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Lato;font-style:normal;font-weight:900;src:local("~assets/fonts/Lato/Lato-Black.woff2"),url(https://static-redesign.cnbcfm.com/dist/Lato-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Lato;font-style:italic;font-weight:400;src:local("~assets/fonts/Lato/Lato-RegularItalic.woff2"),url(https://static-redesign.cnbcfm.com/dist/Lato-RegularItalic.woff2) format("woff2")}@font-face{font-display:swap;font-family:Lato;font-style:italic;font-weight:700;src:local("~assets/fonts/Lato/Lato-BoldItalic.woff2"),url(https://static-redesign.cnbcfm.com/dist/Lato-BoldItalic.woff2) format("woff2")}@font-face{font-display:swap;font-family:Lato;font-style:italic;font-weight:900;src:local("~assets/fonts/Lato/Lato-BlackItalic.woff2"),url(https://static-redesign.cnbcfm.com/dist/Lato-BlackItalic.woff2) format("woff2")}.SearchGroup-container{border-top:6px solid #002f6c;display:block;width:100%}.SearchGroup-container.SearchGroup-railVariant{margin-bottom:0}@media (min-width:760px){.SearchGroup-container.SearchGroup-railVariant{margin-bottom:20px}}@media (min-width:1020px){.SearchGroup-container.SearchGroup-railVariant{margin-bottom:20px}}.SearchGroup-header{align-items:flex-start;background:#fff;display:flex;flex-direction:row;justify-content:space-between;padding:10px 0}@media (min-width:760px){.SearchGroup-header{align-items:center}}.SearchGroup-sectionTitle{color:#002f6c;font-size:22px;font-weight:800;line-height:1.2;margin:0;text-transform:uppercase}@media (min-width:1020px){.SearchGroup-sectionTitle{font-size:14px}}.SearchGroup-railVariant .SearchGroup-sectionTitle{font-size:18px;font-weight:800}@media (min-width:760px){.SearchGroup-railVariant .SearchGroup-sectionTitle{font-size:20px}}@media (min-width:1340px){.SearchGroup-railVariant .SearchGroup-sectionTitle{font-size:30px}}.SearchGroup-contentButton{color:#002f6c;display:inline-block;font-size:12px;font-weight:700;letter-spacing:1px;margin-top:10px;text-transform:uppercase;vertical-align:middle;white-space:nowrap}.SearchGroup-contentButton i{font-style:normal;margin-right:3px}.SearchGroup-railVariant .SearchGroup-contentButton{margin:10px 0 0}@media (min-width:760px){.SearchGroup-contentButton{margin:0 0 0 25px}.SearchGroup-railVariant .SearchGroup-contentButton{margin:0 0 0 auto}}@media (min-width:1020px){.SearchGroup-contentButton{line-height:1}.SearchGroup-railVariant .SearchGroup-contentButton{margin:5px 0 0}}@media (min-width:1340px){.SearchGroup-railVariant .SearchGroup-contentButton{flex-grow:0;margin:0 0 0 24px}}.SearchGroup-headerButton{margin:0 0 0 50px}.SearchGroup-headerButton .icon-short-arrow-right{display:inline-block;margin-left:3px;margin-right:0;vertical-align:middle}@media (min-width:760px){.SearchGroup-headerButton{margin-left:auto}}.SearchGroup-content{position:relative}.SearchGroup-item{border-top:1px dashed #9b9b9b;display:flex;flex-direction:row;flex-wrap:wrap;padding:8px 5px}.SearchGroup-item:nth-of-type(1n+6){display:none}.SearchGroup-item:nth-child(2n){background-color:#f2f2f2}@media (min-width:360px){.SearchGroup-item:nth-of-type(1n+6){display:none}}@media (min-width:760px){.SearchGroup-item{flex-wrap:nowrap;padding:20px 5px}.SearchGroup-item:nth-of-type(1n+4){display:block}.SearchGroup-item:nth-of-type(1n+6){display:none}.SearchGroup-railVariant .SearchGroup-item{flex-wrap:wrap}}@media (min-width:1020px){.SearchGroup-item{min-height:53px;padding:10px}}@media (min-width:1340px){.SearchGroup-railVariant .SearchGroup-item{flex-wrap:nowrap}}.SearchGroup-itemIdentifier{display:block;flex-grow:1;float:left;min-width:50%;width:60%}@media (min-width:760px){.SearchGroup-itemIdentifier{min-width:0;width:auto}.SearchGroup-railVariant .SearchGroup-itemIdentifier{max-width:42%;min-width:42%}}@media (min-width:1020px){.SearchGroup-railVariant .SearchGroup-itemIdentifier{max-width:50%;min-width:50%}}@media (min-width:1340px){.SearchGroup-railVariant .SearchGroup-itemIdentifier{max-width:100%;min-width:0}}.SearchGroup-itemTitle{color:#171717;display:block;font-size:16px;font-weight:800;line-height:1.25;text-transform:uppercase}.SearchGroup-itemTitle:focus,.SearchGroup-itemTitle:hover{color:#005594}.SearchGroup-itemSubTitle{color:#747474;display:block;font-size:14px;line-height:1.4;margin-top:5px}@media (min-width:1020px){.SearchGroup-itemSubTitle{font-size:12px;line-height:1}}.SearchGroup-railVariant .SearchGroup-itemSubTitle{font-weight:500}.SearchGroup-marketChange{color:#747474;display:block;font-size:14px;font-weight:600;line-height:1.42;margin-left:auto;min-width:40%;text-align:right;text-transform:uppercase}@media (min-width:760px){.SearchGroup-marketChange{min-width:0}}@media (min-width:1020px){.SearchGroup-marketChange{font-size:12px;line-height:1}.SearchGroup-railVariant .SearchGroup-marketChange{max-width:50%;min-width:50%}}@media (min-width:1340px){.SearchGroup-railVariant .SearchGroup-marketChange{max-width:100%;min-width:0}}.SearchGroup-marketChangeUp{color:#008456}.SearchGroup-marketChangeDown{color:#ce2b2b}.SearchGroup-change,.SearchGroup-change_pct{display:block}.SearchGroup-change_pct{margin-top:5px}.SearchGroup-label{color:#747474;display:block;font-size:14px;font-weight:600;line-height:1.42;margin-left:auto;text-align:right;text-transform:uppercase}@media (min-width:1020px){.SearchGroup-label{font-size:12px;line-height:1}}.SearchGroup-noSavedData{border-top:1px dashed #9b9b9b;display:block;padding:20px 0}@media (min-width:1020px){.SearchGroup-noSavedData{padding:10px 0 0}}@media (min-width:1340px){.SearchGroup-noSavedData{padding-top:18px}}.SearchGroup-callToActionTitle{color:#171717;display:block;font-size:20px;font-weight:700;line-height:1.2;margin:0}.SearchGroup-callToActionDescription{color:#5d5d5d;display:block;font-size:14px;font-weight:500;line-height:1.28;margin:10px 0 20px}.SearchGroup-callToActionDescription .SearchGroup-emphasized{font-weight:600;text-transform:uppercase}@media (min-width:760px){.SearchGroup-callToActionDescription{font-size:12px;line-height:1.33;margin:10px 0 30px;max-width:382px;width:70%}}@media (min-width:1020px){.SearchGroup-callToActionDescription{font-size:12px;line-height:1.33;margin:10px 0 20px;max-width:100%;width:100%}}.SearchGroup-callToActionButton{align-items:center;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#002f6c;border:1px solid #002f6c;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.SearchGroup-callToActionButton>span{display:block;line-height:12px}.SearchGroup-callToActionButton [class*=" icon-"],.SearchGroup-callToActionButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.SearchGroup-callToActionButton [class*=" icon-"]:before,.SearchGroup-callToActionButton [class^=icon-]:before{line-height:12px}.SearchGroup-callToActionButton:focus,.SearchGroup-callToActionButton:hover{background-color:#2077b6;border-color:#2077b6;color:#fff}.SearchGroup-callToActionButton[class*=touchButton]:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}@media (hover:hover){.SearchGroup-callToActionButton[class*=touchButton]:hover{background-color:#2077b6;border-color:#2077b6;color:#fff}}@media (min-width:760px){.SearchGroup-callToActionButton{max-width:236px;padding:0 30px;width:auto}}.SearchGroup-noResults{border-top:1px dotted #9b9b9b;color:#5d5d5d;font-size:14px;font-weight:500;padding-top:10px}.SearchGroup-noResults span{font-weight:700}.SearchResult-searchResult{border-bottom:1px dashed #9b9b9b;margin-bottom:20px;padding-bottom:20px}@media (min-width:760px){.SearchResult-searchResult{display:flex;flex-direction:row;margin-bottom:30px;padding-bottom:30px}}@media (min-width:1020px){.SearchResult-searchResult{margin-bottom:40px;padding-bottom:40px}}@media (min-width:1340px){.SearchResult-searchResult{margin-left:-30px}}.SearchResult-searchResult:last-child{border-bottom:0;padding-bottom:0}.SearchResult-searchResult.SearchResult-standardVariant{justify-content:space-between}@media (min-width:1340px){.SearchResult-searchResult.SearchResult-standardVariant{margin-left:0}}.SearchResult-searchResultCard{margin-bottom:10px}.SearchResult-standardVariant .SearchResult-searchResultCard{height:150px;padding-bottom:50%}@media (min-width:760px){.SearchResult-searchResultCard{margin-bottom:-20px;order:2;width:calc(33.33333% - 15px)}.SearchResult-standardVariant .SearchResult-searchResultCard{flex:1 1 300px;padding-bottom:inherit}}@media (min-width:1020px){.SearchResult-standardVariant .SearchResult-searchResultCard{margin-bottom:20px}}@media (min-width:1340px){.SearchResult-searchResultCard{width:calc(30% - 15px)}.SearchResult-standardVariant .SearchResult-searchResultCard{flex:1 1 300px}}.PlayButton-container{border-top:6px solid #fcb700;height:100%;left:0;position:absolute;top:0;width:100%;z-index:1}.PlayButton-base{align-items:center;background-color:#fcb700;color:#fff;display:flex;font-size:12px;height:40px;justify-content:center;position:absolute;right:0;top:-5px;transition:all .15s linear;width:40px;z-index:1}.PlayButton-base:focus .PlayButton-flyout,.PlayButton-base:hover .PlayButton-flyout,.PlayButton-basebutton:focus .PlayButton-flyout,.PlayButton-basebutton:hover .PlayButton-flyout{color:#071d39;transform:scaleX(1);transition:color .15s linear .15s,transform .15s linear}.PlayButton-flyout{background-color:#fcb700;color:#071d39;font-size:9px;font-weight:800;height:100%;letter-spacing:1px;line-height:1;position:absolute;right:35px;text-align:left;text-transform:uppercase;top:0;transform:scaleX(0);transform-origin:center right;transition:color .15s linear,transform .15s linear .15s;width:90px;z-index:1}.PlayButton-flyout,.PlayButton-icon{align-items:center;display:flex;justify-content:center}.PlayButton-icon{border:2px solid #fcb700;height:30px;transition:border .15s linear;width:30px;z-index:2}.PlayButton-icon:focus,.PlayButton-icon:hover,.PlayButton-iconbutton:focus,.PlayButton-iconbutton:hover{border:2px solid #fff}@media (min-width:760px){.SearchResult-searchResultContent{margin-right:30px;width:calc(66.66667% - 15px)}.SearchResult-standardVariant .SearchResult-searchResultContent{flex:1 1 340px}}@media (min-width:1340px){.SearchResult-searchResultContent{width:calc(70% - 15px)}.SearchResult-standardVariant .SearchResult-searchResultContent{flex:1 0 410px}}.SearchResult-searchHighlight{background-color:#e7ecf1}.SearchResult-searchResultEyebrow{color:#732634;font-size:12px;font-weight:500;letter-spacing:2px;line-height:1.116;margin-bottom:10px;text-transform:uppercase}.SearchResult-standardVariant .SearchResult-searchResultEyebrow{color:#005594;font-weight:700;letter-spacing:1px}.SearchResult-searchResultTitle{color:#171717;font-family:Lyon,Helvetica,Arial,sans-serif;font-size:20px;font-weight:500;line-height:1.3;margin-bottom:10px}.SearchResult-standardVariant .SearchResult-searchResultTitle{font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:24px;font-weight:600}@media (min-width:1020px){.SearchResult-standardVariant .SearchResult-searchResultTitle{margin-bottom:10px}.SearchResult-searchResultTitle{font-size:26px;line-height:1.23;margin-bottom:20px}}.SearchResult-searchResultPreview{color:#5d5d5d;font-family:Lyon,Helvetica,Arial,sans-serif;font-size:18px;font-weight:400;line-height:1.611;margin-bottom:0;margin-top:0}.SearchResult-standardVariant .SearchResult-searchResultPreview{margin-bottom:10px}.SearchResult-byline{font-size:12px}.SearchResult-author{color:#005594;font-family:Lyon,Helvetica,Arial,sans-serif;font-weight:600;letter-spacing:1px}.SearchResult-publishedDate{color:#747474;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-weight:600;text-transform:uppercase}.SearchResult-searchResultFrom{color:#b2b2b2;font-size:12px;font-weight:500;letter-spacing:2px;line-height:1.33;margin-top:15px;text-transform:uppercase}@media (min-width:1020px){.SearchResult-searchResultFrom{margin-top:25px}}.SearchResult-searchResultFrom a{color:#000}.SearchResult-searchResultFrom a:hover{color:#d1bb7e}.SearchResult-searchResultImage{background-position:50% 50%;background-size:cover;margin-bottom:10px;padding-bottom:50%;width:100%}@media (min-width:760px){.SearchResult-searchResultImage{margin-bottom:20px}}.SearchDropDown-dropDownContainer .Card-mediaContainer{background-position:50% 50%;background-size:cover;padding-bottom:50%}.SearchDropDown-dropDownContainer .Card-mediaContainer .Card-placeholder{position:absolute}
/*# sourceMappingURL=source-maps/main-10328a92c7b164509e08.css.map*/
@charset "UTF-8";@keyframes countdown-clock-slide-in{0%{height:0}to{height:42px}}@-webkit-keyframes countdown-clock-slide-in{0%{height:0}to{height:42px}}@keyframes countdown-clock-slide-out{0%{height:42px}to{height:0}}@-webkit-keyframes countdown-clock-slide-out{0%{height:42px}to{height:0}}.countdown-clock-container{align-items:center;animation:countdown-clock-slide-in .5s forwards;-webkit-animation:countdown-clock-slide-in .5s forwards;background-color:#000;color:#fff;display:flex;font-size:12px;font-weight:700;height:42px;justify-content:flex-end;letter-spacing:1px;line-height:15px;margin:0 auto;max-width:960px;position:relative;top:0;width:100%}@media (min-width:1340px){.countdown-clock-container{max-width:1290px}}.countdown-clock-gridWrapper{margin:0 auto;max-width:960px;width:100%}@media (min-width:1340px){.countdown-clock-gridWrapper{max-width:1290px}}.countdown-clock-contentWrapper{float:right;padding-top:2px}.countdown-clock-hidden{animation:countdown-clock-slide-out .5s forwards;-webkit-animation:countdown-clock-slide-out .5s forwards;height:0}.countdown-clock-marketLabel{color:#fcb700;font-weight:600;padding-right:10px;text-transform:uppercase}.countdown-clock-sponsor{border-left:1px solid hsla(0,0%,100%,.54);color:hsla(0,0%,100%,.54);display:inline;font-weight:600;margin:0 0 0 20px;padding-left:20px;text-transform:uppercase}.countdown-clock-sponsor img{display:inline-block;height:31px;margin-left:5px;margin-top:-3px;max-width:100px;position:relative;vertical-align:middle}@media (-ms-high-contrast:active),screen and (-ms-high-contrast:none){.countdown-clock-sponsor img{margin-top:-7px}}.countdown-clock-sponsorText{position:relative;top:0}.CountdownClock-container{align-items:center;align-self:center;display:flex;display:none;justify-content:center;margin:0}.CountdownClock-countdownContainer{background-color:#000}.DynamicLoadingIndicator-spinnerParent{display:block;padding:10px}.DynamicLoadingIndicator-spinner{-webkit-animation:DynamicLoadingIndicator-spin 2s linear infinite;animation:DynamicLoadingIndicator-spin 2s linear infinite;border:3px solid #f3f3f3;border-radius:50%;border-top-color:#666;display:block;margin:0 auto}@-webkit-keyframes DynamicLoadingIndicator-spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}@keyframes DynamicLoadingIndicator-spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.ProgressBar-container{background:#e8e8e8;height:3px;left:0;position:absolute;top:0;width:100vw}@media (min-width:760px){.ProgressBar-container{bottom:0;top:auto}}@media (min-width:1020px){.ProgressBar-container{bottom:0}}.ProgressBar-hiddenContainer{opacity:0;pointer-events:none}.ProgressBar-innerProgress{background:#fcb700;height:3px;transition:background 1s;width:0}.ProgressBar-innerProgress20{background:#f26f20}.ProgressBar-innerProgress40{background:#645fa9}.ProgressBar-innerProgress60{background:#0088cf}.ProgressBar-innerProgress80{background:#0cb04c}.ProgressBar-makeit{background:#68ebca}.ProgressBar-acorns{background:#74c947}.ProgressBar-select{background:#0477c9}@-webkit-keyframes BreakingNews-SlideInFull{0%{transform:translateX(-100%)}to{transform:translateX(100%)}}.BreakingNews-container{background:#ce2b2b;color:#fff;height:40px;line-height:40px;position:relative;width:100%;z-index:-1}.BreakingNews-container .BreakingNews-closeButton,.BreakingNews-container .BreakingNews-heading{z-index:3}.BreakingNews-container .BreakingNews-article{z-index:1}.BreakingNews-container.BreakingNews-intro:not(.BreakingNews-stickyContainer):before{-webkit-animation:BreakingNews-SlideInFull 2s ease;animation:BreakingNews-SlideInFull 2s ease;-webkit-animation-iteration-count:1;animation-iteration-count:1;background:linear-gradient(90deg,hsla(0,0%,100%,0) 0,#fc3c46 30%,#fc3c46 70%,hsla(0,0%,100%,0));background-position-x:center;background-size:100% 100%;content:"";height:100%;left:100%;position:absolute;top:0;width:100%;z-index:2}@media (max-width:759px){.BreakingNews-stickyContainer{background:#ce2b2b;color:#fff;height:40px;left:20px;line-height:40px;overflow-y:visible;position:fixed;top:8px;width:174px;z-index:990}.BreakingNews-stickyContainer .BreakingNews-heading{margin:0}.BreakingNews-stickyContainer .BreakingNews-newsText{display:inline-block}.BreakingNews-stickyContainer:before{border-bottom:4px solid #ce2b2b;border-left:4px solid transparent;border-right:4px solid transparent;content:"";font-size:0;height:0;left:8px;line-height:0px;position:absolute;top:-4px;width:0}.BreakingNews-stickyContainer .BreakingNews-wrapper{height:40px}.BreakingNews-stickyContainer .BreakingNews-article,.BreakingNews-stickyContainer .BreakingNews-closeButton{display:none}.BreakingNews-stickyContainer.BreakingNews-timerFired{transform:translateY(-110px);transition:transform .2s ease-out}}.BreakingNews-gridContainer{height:40px}@media (min-width:1020px){.BreakingNews-gridContainer{margin:0 auto;max-width:100%}}@media (min-width:1020px) and (min-width:760px){.BreakingNews-gridContainer{max-width:678px}}@media (min-width:1020px) and (min-width:1020px){.BreakingNews-gridContainer{max-width:960px}}@media (min-width:1020px) and (min-width:1340px){.BreakingNews-gridContainer{max-width:1290px}}.BreakingNews-wrapper{display:flex;flex-direction:row;padding:0 20px;position:relative}@media (min-width:1020px){.BreakingNews-wrapper{flex-grow:0;flex-shrink:0;max-width:calc(225% - 30px);max-width:100%!important;min-width:calc(225% - 30px);padding:0;position:relative}}@media (min-width:1020px) and (min-width:760px){.BreakingNews-wrapper{max-width:calc(75% - 30px);min-width:calc(75% - 30px)}}@media (min-width:1020px) and (min-width:1020px){.BreakingNews-wrapper{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media screen and (min-width:1020px) and (min-width:1020px) and (-ms-high-contrast:none){.BreakingNews-wrapper{max-width:100%;min-width:100%}}@media (min-width:1020px) and (min-width:1340px){.BreakingNews-wrapper{max-width:calc(75% - 30px);min-width:calc(75% - 30px)}}@media (min-width:1340px){.BreakingNews-wrapper{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:1340px) and (min-width:760px){.BreakingNews-wrapper{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1340px) and (min-width:1020px){.BreakingNews-wrapper{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:1340px) and (min-width:1020px) and (-ms-high-contrast:none){.BreakingNews-wrapper{max-width:100%;min-width:100%}}@media (min-width:1340px) and (min-width:1340px){.BreakingNews-wrapper{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}.BreakingNews-heading{color:#fff;font-size:16px;font-weight:800;margin-right:20px}.BreakingNews-heading:hover{color:#fff}.BreakingNews-newsText{display:none}.BreakingNews-titleContainer{position:relative}.BreakingNews-article{flex:0 1 auto;font-size:18px;font-weight:500;margin-right:10px;overflow:hidden;position:relative;white-space:nowrap;width:calc(100% - 130px)}.BreakingNews-article:after{background:linear-gradient(270deg,#ce2b2b,rgba(206,43,43,0));content:"";height:100%;position:absolute;right:0;top:0;width:80px}.BreakingNews-article:focus,.BreakingNews-article:hover{color:#fff;text-decoration:underline}.BreakingNews-marquee{-webkit-animation:BreakingNews-marquee 10s linear infinite;animation:BreakingNews-marquee 10s linear infinite;overflow:hidden;position:relative;white-space:nowrap}@-webkit-keyframes BreakingNews-marquee{0%{left:0}50%{left:calc(-100% - 60px);top:0}51%{left:calc(-100% - 60px);top:-100px}52%{left:100%;top:-100px}53%{left:100%;top:0}to{left:0}}@keyframes BreakingNews-marquee{0%{left:0}50%{left:calc(-100% - 60px);top:0}51%{left:calc(-100% - 60px);top:-100px}52%{left:100%;top:-100px}53%{left:100%;top:0}to{left:0}}.BreakingNews-closeButton{color:#fff;font-size:15px;position:absolute;right:20px;top:11px}@media (min-width:1020px){.BreakingNews-closeButton{right:2px}}.LiveAlerts-container{background:#171717;color:#fff;height:40px;line-height:40px;overflow:hidden;position:relative;transition:none;width:100%;z-index:-1}@media screen and (max-width:500px){.LiveAlerts-container{height:80px}}@media (max-width:759px){.LiveAlerts-stickyContainer{height:0!important;transition:transform .3s,height .3s}.LiveAlerts-stickyContainer .LiveAlerts-gridContainer{transform:translateY(-40px);transition:transform .3s}}@media screen and (max-width:500px){.LiveAlerts-containerAdNotLoaded{height:40px}}.LiveAlerts-gridContainer{height:40px;transition:none}@media (min-width:1020px){.LiveAlerts-gridContainer{margin:0 auto;max-width:100%}}@media (min-width:1020px) and (min-width:760px){.LiveAlerts-gridContainer{max-width:678px}}@media (min-width:1020px) and (min-width:1020px){.LiveAlerts-gridContainer{max-width:960px}}@media (min-width:1020px) and (min-width:1340px){.LiveAlerts-gridContainer{max-width:1290px}}.LiveAlerts-wrapper{display:flex;flex-direction:row;padding:0 20px;position:relative}@media (min-width:1020px){.LiveAlerts-wrapper{flex-grow:0;flex-shrink:0;max-width:calc(225% - 30px);max-width:100%!important;min-width:calc(225% - 30px);padding:0;position:relative}}@media (min-width:1020px) and (min-width:760px){.LiveAlerts-wrapper{max-width:calc(75% - 30px);min-width:calc(75% - 30px)}}@media (min-width:1020px) and (min-width:1020px){.LiveAlerts-wrapper{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media screen and (min-width:1020px) and (min-width:1020px) and (-ms-high-contrast:none){.LiveAlerts-wrapper{max-width:100%;min-width:100%}}@media (min-width:1020px) and (min-width:1340px){.LiveAlerts-wrapper{max-width:calc(75% - 30px);min-width:calc(75% - 30px)}}@media (min-width:1340px){.LiveAlerts-wrapper{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:1340px) and (min-width:760px){.LiveAlerts-wrapper{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1340px) and (min-width:1020px){.LiveAlerts-wrapper{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:1340px) and (min-width:1020px) and (-ms-high-contrast:none){.LiveAlerts-wrapper{max-width:100%;min-width:100%}}@media (min-width:1340px) and (min-width:1340px){.LiveAlerts-wrapper{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}.LiveAlerts-heading{color:#fff;font-size:16px;font-weight:800;margin-right:49px}.LiveAlerts-heading:hover{color:#fff}.LiveAlerts-newsText{display:none}.LiveAlerts-article{flex:0 1 auto;font-size:18px;font-weight:500;margin-right:10px;overflow:hidden;position:relative;white-space:nowrap;width:calc(100% - 330px)}.LiveAlerts-article:after{background:linear-gradient(270deg,#171717,transparent);content:"";height:100%;position:absolute;right:0;top:0;width:80px}.LiveAlerts-article:focus,.LiveAlerts-article:hover{color:#fff;text-decoration:underline}@media screen and (max-width:500px){.LiveAlerts-article{width:calc(100% - 130px)}}.LiveAlerts-marquee{-webkit-animation:LiveAlerts-marquee 10s linear infinite;animation:LiveAlerts-marquee 10s linear infinite;overflow:hidden;position:relative;white-space:nowrap}@-webkit-keyframes LiveAlerts-marquee{0%{left:0}50%{left:calc(-100% - 60px);top:0}51%{left:calc(-100% - 60px);top:-100px}52%{left:100%;top:-100px}53%{left:100%;top:0}to{left:0}}@keyframes LiveAlerts-marquee{0%{left:0}50%{left:calc(-100% - 60px);top:0}51%{left:calc(-100% - 60px);top:-100px}52%{left:100%;top:-100px}53%{left:100%;top:0}to{left:0}}.LiveAlerts-closeButton{color:#fff;font-size:15px;position:absolute;right:20px;top:11px}@media (min-width:1020px){.LiveAlerts-closeButton{right:2px}}.LiveAlerts-liveIcon{font-size:14px;margin-right:5px;position:relative;top:1px}.LiveAlerts-adSlot{display:flex;flex-direction:row;position:relative}@media screen and (max-width:500px){.LiveAlerts-adSlot{position:absolute;top:50px}}.LiveAlerts-adContainer{align-items:center;align-self:center;bottom:4px;display:flex;justify-content:center;left:77px;margin:0;position:absolute;top:-5px;width:100px}@media (min-width:760px){.LiveAlerts-adContainer{margin-left:15px}}@media screen and (max-width:500px){.LiveAlerts-adContainer{left:155px;top:0}}@media screen and (max-width:759px) and (min-width:500px){.LiveAlerts-adContainer{left:88px;top:-5px}}.LiveAlerts-sponsor{color:#fff;display:flex;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:11px;font-weight:400;letter-spacing:.3px;line-height:13px;position:absolute;top:13px;width:100px}@media (min-width:760px){.LiveAlerts-sponsor{font-size:12px;line-height:15px}}@media screen and (max-width:500px){.LiveAlerts-sponsor{margin-left:75px;top:0}}.LiveAlerts-adContainer:empty .LiveAlerts-sponsor{display:none}.EditionMenu-megaMenu{-webkit-overflow-scrolling:touch;background:#fff;color:#071d39;display:block;height:100%;left:0;opacity:1;overflow-y:scroll;padding-bottom:45px;position:fixed;top:0;width:100%;z-index:999}@media (min-width:760px){.EditionMenu-megaMenu{padding-bottom:0}}@media (min-width:1020px){.EditionMenu-megaMenu{height:100%;overflow:hidden;overflow:auto;width:100%}.EditionMenu-megaMenuContainer{display:flex;flex-direction:row;margin:0 auto;max-width:100%;position:relative;width:100%}}@media (min-width:1020px) and (min-width:760px){.EditionMenu-megaMenuContainer{max-width:678px}}@media (min-width:1020px) and (min-width:1020px){.EditionMenu-megaMenuContainer{max-width:960px}}@media (min-width:1020px) and (min-width:1340px){.EditionMenu-megaMenuContainer{max-width:1290px}}.EditionMenu-searchToggle{background-color:#fff;border-bottom:1px solid #9b9b9b;display:block;padding:20px}@media (min-width:1020px){.EditionMenu-searchToggle{background-color:transparent;border-bottom:none;padding:27px 40px;position:absolute;right:0;z-index:1}}.EditionMenu-topBar{align-items:center;background-color:#005594;bottom:0;display:flex;flex-direction:row;height:45px;justify-content:space-between;left:0;max-height:45px;min-height:45px;padding:0 45px 0 20px;position:fixed;width:100%;z-index:5}@media (min-width:760px){.EditionMenu-topBar{justify-content:flex-start;position:relative}}@media (min-width:1020px){.EditionMenu-topBar{align-items:center;background-color:transparent;flex-wrap:wrap;height:102px;left:0;max-height:102px;min-height:92px;padding:0 0 0 8px;position:absolute;top:0;width:50%}}@media (min-width:1340px){.EditionMenu-topBar{height:102px;max-height:102px}}.EditionMenu-close{background:none;color:#fff;font-size:17px;order:2}.EditionMenu-close span:before{display:block}.EditionMenu-close:focus,.EditionMenu-close:hover{color:#fcb700}@media (min-width:760px){.EditionMenu-close{order:1}}@media (min-width:1020px){.EditionMenu-close{color:#005594;font-size:15px}}.EditionMenu-logo{flex:1;max-width:35px;min-width:35px;order:1}@media (min-width:760px){.EditionMenu-logo{margin-left:30px;order:2}}@media (min-width:1020px){.EditionMenu-logo{max-width:120px;min-width:120px}}.EditionMenu-logo img{width:100%}@media (min-width:1020px){.EditionMenu-logoSmall{display:none}}.EditionMenu-logoLarge{display:none}@media (min-width:1020px){.EditionMenu-logoLarge{display:block}}.EditionMenu-search{color:#fff;font-size:14px;font-weight:600;letter-spacing:1px;margin-right:30px}@media (min-width:1340px){.EditionMenu-search{margin-right:75px}}.EditionMenu-account{display:none}@media (min-width:1020px){.EditionMenu-account{display:block}}.EditionMenu-accountLinks{display:flex;flex-direction:row;flex-wrap:wrap;justify-content:space-between;text-transform:uppercase}.EditionMenu-accountLinks li{height:70px;line-height:70px;padding:0 20px;text-align:center}.EditionMenu-accountLinks a{color:#071d39;font-size:14px;font-weight:600;letter-spacing:.85px;line-height:12px}.EditionMenu-accountLinks .EditionMenu-editions,.EditionMenu-accountLinks li:first-child,.EditionMenu-accountLinks li:nth-child(2){flex:auto;text-align:center;width:50%}.EditionMenu-accountLinks li:nth-child(2){border-left:1px solid #9b9b9b}.EditionMenu-accountLinks .EditionMenu-editionMenu{transition:all .25s}@media (min-width:360px){.EditionMenu-accountLinks .EditionMenu-editionMenu li{float:left;font-size:10px;font-weight:500;letter-spacing:1.2px;padding:0;width:25%}}@media (min-width:360px) and (min-width:760px){.EditionMenu-accountLinks .EditionMenu-editionMenu li{width:10%}}@media (min-width:360px){.EditionMenu-accountLinks .EditionMenu-editionMenu li span{margin-left:5px}.EditionMenu-accountLinks .EditionMenu-editionMenu li:first-child{margin-left:25%}}@media (min-width:360px) and (min-width:760px){.EditionMenu-accountLinks .EditionMenu-editionMenu li:first-child{margin-left:40%}}@media (min-width:360px){.EditionMenu-accountLinks .EditionMenu-editionMenu li:last-child{border-left:none!important;margin-right:25%}}@media (min-width:360px) and (min-width:760px){.EditionMenu-accountLinks .EditionMenu-editionMenu li:last-child{margin-right:40%}}.EditionMenu-accountLinks .icon-offsite-arrow{display:inline-block;line-height:14px;margin-left:5px;vertical-align:middle}.EditionMenu-accountLinks .icon-offsite-arrow:before{color:rgba(7,29,57,.4);font-size:12px;line-height:14px}@media (min-width:1020px){.EditionMenu-accountLinks{display:none}}.EditionMenu-underlineLabel{border-bottom:1px solid #071d39;padding-bottom:3px}.account-menu-accountMenu,.account-menu-accountMenuIC,.account-menu-accountMenuPro{display:none}@media (min-width:1020px){.account-menu-accountMenu,.account-menu-accountMenuIC,.account-menu-accountMenuPro{display:flex;float:right;position:relative;right:9px;top:49px;width:280px}}@media (min-width:1340px){.account-menu-accountMenu,.account-menu-accountMenuIC,.account-menu-accountMenuPro{width:340px}}@media (min-width:1020px){.account-menu-accountMenu ul,.account-menu-accountMenuIC ul,.account-menu-accountMenuPro ul{display:-webkit-box;flex:100;flex-direction:row;justify-content:flex-end;margin:10px -8px 0 0!important;text-transform:uppercase}}.account-menu-accountMenu ul:first-child,.account-menu-accountMenuIC ul:first-child,.account-menu-accountMenuPro ul:first-child{left:12px;position:relative}.account-menu-accountMenu ul li,.account-menu-accountMenuIC ul li,.account-menu-accountMenuPro ul li{font-size:11px;font-weight:600;letter-spacing:1px}.account-menu-accountMenu ul li a,.account-menu-accountMenuIC ul li a,.account-menu-accountMenuPro ul li a{color:#e3e3e3}.account-menu-accountMenu ul li a:hover,.account-menu-accountMenuIC ul li a:hover,.account-menu-accountMenuPro ul li a:hover{color:#fcb700}.account-menu-accountMenu ul li:last-child,.account-menu-accountMenuIC ul li:last-child,.account-menu-accountMenuPro ul li:last-child{margin-left:8px;padding-left:8px}.account-menu-accountMenu ul li span,.account-menu-accountMenuIC ul li span,.account-menu-accountMenuPro ul li span{float:right;margin-left:5px;position:relative;top:2px}@media (min-width:760px){.account-menu-accountMenu .account-menu-watchLive,.account-menu-accountMenuIC .account-menu-watchLive,.account-menu-accountMenuPro .account-menu-watchLive{display:none}}@media (min-width:1020px){.account-menu-accountMenu .account-menu-watchLive,.account-menu-accountMenuIC .account-menu-watchLive,.account-menu-accountMenuPro .account-menu-watchLive{display:flex}.account-menu-accountMenu .account-menu-watchLive a,.account-menu-accountMenuIC .account-menu-watchLive a,.account-menu-accountMenuPro .account-menu-watchLive a{display:-webkit-flex}}.account-menu-accountMenu .account-menu-watchLive span,.account-menu-accountMenuIC .account-menu-watchLive span,.account-menu-accountMenuPro .account-menu-watchLive span{background:#fff;color:#005594;margin-left:2px;padding:0 2px;top:0}.account-menu-accountMenu .account-menu-watchLive:before,.account-menu-accountMenuIC .account-menu-watchLive:before,.account-menu-accountMenuPro .account-menu-watchLive:before{-webkit-animation:account-menu-pulse 2s infinite;animation:account-menu-pulse 2s infinite;background-color:#ff5053;border-radius:100%;box-shadow:0 0 0 0 #ce2b2b;content:"";display:block;height:6px;margin:5px -13px;transform:scale(1);width:6px}@-webkit-keyframes account-menu-pulse{0%{box-shadow:0 0 0 1px #ce2b2b;opacity:1;transform:scale(.95)}70%{box-shadow:0 0 0 2px #ce2b2b;opacity:.9;transform:scale(1)}to{box-shadow:0 0 0 1px #ce2b2b;opacity:1;transform:scale(.95)}}.account-menu-accountMenu .account-menu-berkshireWatchLive,.account-menu-accountMenuIC .account-menu-berkshireWatchLive,.account-menu-accountMenuPro .account-menu-berkshireWatchLive{padding-left:35px}@media (min-width:760px){.account-menu-accountMenu .account-menu-berkshireWatchLive,.account-menu-accountMenuIC .account-menu-berkshireWatchLive,.account-menu-accountMenuPro .account-menu-berkshireWatchLive{display:none}}@media (min-width:1020px){.account-menu-accountMenu .account-menu-berkshireWatchLive,.account-menu-accountMenuIC .account-menu-berkshireWatchLive,.account-menu-accountMenuPro .account-menu-berkshireWatchLive{display:flex;padding-left:30px}.account-menu-accountMenu .account-menu-berkshireWatchLive a,.account-menu-accountMenuIC .account-menu-berkshireWatchLive a,.account-menu-accountMenuPro .account-menu-berkshireWatchLive a{display:-webkit-flex}}.account-menu-accountMenu .account-menu-berkshireWatchLive span,.account-menu-accountMenuIC .account-menu-berkshireWatchLive span,.account-menu-accountMenuPro .account-menu-berkshireWatchLive span{background:none;color:#d1bb7e;letter-spacing:1.2px;margin-left:2px;padding:0 2px 0 3px;text-transform:uppercase;top:0}.account-menu-accountMenu .account-menu-berkshireWatchLive:hover span,.account-menu-accountMenuIC .account-menu-berkshireWatchLive:hover span,.account-menu-accountMenuPro .account-menu-berkshireWatchLive:hover span{color:#fcb700}.account-menu-accountMenu .account-menu-berkshireWatchLive:before,.account-menu-accountMenuIC .account-menu-berkshireWatchLive:before,.account-menu-accountMenuPro .account-menu-berkshireWatchLive:before{-webkit-animation:account-menu-pulse 2s infinite;animation:account-menu-pulse 2s infinite;background-color:#ff5053;border-radius:100%;box-shadow:0 0 0 0 #ce2b2b;content:"";display:block;height:6px;margin:5px -13px;transform:scale(1);width:6px}@keyframes account-menu-pulse{0%{box-shadow:0 0 0 1px #ce2b2b;opacity:1;transform:scale(.95)}70%{box-shadow:0 0 0 2px #ce2b2b;opacity:.9;transform:scale(1)}to{box-shadow:0 0 0 1px #ce2b2b;opacity:1;transform:scale(.95)}}.account-menu-accountMenuPro ul li a:focus,.account-menu-accountMenuPro ul li a:hover{color:#00a857}.account-menu-accountMenuIC ul li a:focus,.account-menu-accountMenuIC ul li a:hover{color:#0496ff}.account-menu-accountMenuSticky{display:none}.account-menu-underlineLabel{border-bottom:1px solid #fff;padding-bottom:1px}.account-menu-editionMenu{transition:all .25s}@media (min-width:1020px){.account-menu-editionMenu{margin:10px 0 0 8px!important}.account-menu-editionMenu li:first-child{margin-left:7px;margin-right:-5px}.account-menu-editionMenu li:last-child{border-left:none!important}.account-menu-editionMenu li:last-child:before{color:#fff;content:"•";font-size:10px;left:-5px;position:relative}}@media (min-width:1020px){.account-menu-editionMenuSticky{transform:translateY(-6px)}}.branding-menu-brandingMenu{align-items:center;background-color:#005594;display:flex;flex-direction:row;height:54px;left:0;overflow:hidden;padding:0 20px;position:fixed;z-index:99}@media (min-width:760px){.branding-menu-brandingMenu{padding:0 20px}}@media (min-width:1020px){.branding-menu-brandingMenu{background-color:transparent;height:35px;padding:0 15px 0 30px}}.branding-menu-brandingMenu{height:45px;opacity:1;position:absolute;top:0;transition:opacity .2s;width:100%;z-index:0}.branding-menu-brandingMenu img{float:left}@media (min-width:760px){.branding-menu-brandingMenu{align-items:flex-start;height:70px;padding-top:13px;width:100%}}@media (min-width:1020px){.branding-menu-brandingMenu{align-items:flex-start;display:block;overflow:visible;padding-left:0;padding-top:13px;width:calc(100% - 155px)}}.branding-menu-brandingMenu img{height:24px;width:165px}.branding-menu-brandingMenuPro{background-color:#27313c;transition:background-color .5s ease-in}.branding-menu-brandingMenuIC{background-color:#071d39;transition:background-color .5s ease-in}.branding-menu-brandingMenuSticky,.branding-menu-brandingMenuStickyIC,.branding-menu-brandingMenuStickyPro{opacity:0;pointer-events:none}.branding-menu-logo{height:20px;width:138px}.branding-menu-logo:after{clear:both;content:""}.branding-menu-logoSmall{display:block;height:22px;width:135px}@media (max-width:359px){.branding-menu-logoSmall{display:none}}.branding-menu-logoLarge{display:none}@media (min-width:760px){.branding-menu-logoLarge{display:block;height:31px;width:195px}}.branding-menu-watchLive{position:absolute;right:50px;top:30px}@media (min-width:760px){.branding-menu-watchLive{display:none}}@media (max-width:359px){.branding-menu-watchLive{display:none}}.branding-menu-watchLive a{font-size:11px;font-weight:600;letter-spacing:.1px;text-transform:uppercase}.branding-menu-watchLive span{background:#fff;color:#005594;margin-left:2px;padding:0 2px;top:0}.branding-menu-watchLive:before{-webkit-animation:branding-menu-pulse 2s infinite;animation:branding-menu-pulse 2s infinite;background-color:#ff5053;border-radius:100%;box-shadow:0 0 0 0 #ce2b2b;content:"";display:block;height:6px;margin:-13px;transform:scale(1);width:6px}@-webkit-keyframes branding-menu-pulse{0%{box-shadow:0 0 0 1px #ce2b2b;opacity:1;transform:scale(.95)}70%{box-shadow:0 0 0 2px #ce2b2b;opacity:.9;transform:scale(1)}to{box-shadow:0 0 0 1px #ce2b2b;opacity:1;transform:scale(.95)}}.branding-menu-berkshireWatchLive{position:absolute;right:50px;top:32px}@media (min-width:760px){.branding-menu-berkshireWatchLive{display:none}}@media (max-width:390px){.branding-menu-berkshireWatchLive{display:none}}.branding-menu-berkshireWatchLive a{font-size:11px;font-weight:600;letter-spacing:.1px;text-transform:uppercase}.branding-menu-berkshireWatchLive span{background:none;color:#d1bb7e;letter-spacing:1.2px;margin-left:2px;padding:0 2px 0 3px;text-transform:uppercase;top:0}.branding-menu-berkshireWatchLive:hover span{color:#fcb700}.branding-menu-berkshireWatchLive:before{-webkit-animation:branding-menu-pulse 2s infinite;animation:branding-menu-pulse 2s infinite;background-color:#ff5053;border-radius:100%;box-shadow:0 0 0 0 #ce2b2b;content:"";display:block;height:6px;margin:-13px;transform:scale(1);width:6px}@keyframes branding-menu-pulse{0%{box-shadow:0 0 0 1px #ce2b2b;opacity:1;transform:scale(.95)}70%{box-shadow:0 0 0 2px #ce2b2b;opacity:.9;transform:scale(1)}to{box-shadow:0 0 0 1px #ce2b2b;opacity:1;transform:scale(.95)}}@-webkit-keyframes FiveThingsBanner-SlideInFull{0%{transform:translateX(-100%)}to{transform:translateX(100%)}}.FiveThingsBanner-container{background:#fff;color:#000;height:40px;line-height:40px;position:relative;width:100%;z-index:-1}.FiveThingsBanner-container .FiveThingsBanner-closeButton,.FiveThingsBanner-container .FiveThingsBanner-heading{z-index:3}.FiveThingsBanner-container .FiveThingsBanner-article{z-index:1}.FiveThingsBanner-container.FiveThingsBanner-intro:not(.FiveThingsBanner-stickyContainer):before{-webkit-animation:FiveThingsBanner-SlideInFull 2s ease;animation:FiveThingsBanner-SlideInFull 2s ease;-webkit-animation-iteration-count:1;animation-iteration-count:1;background:linear-gradient(90deg,#fff 0,rgba(252,60,70,.966) 30%,#fc3c46 70%,hsla(0,0%,100%,0));background-position-x:center;background-size:100% 100%;content:"";height:100%;left:100%;position:absolute;top:0;width:100%;z-index:2}.FiveThingsBanner-fiveThingsArticle{border-bottom:3px solid #e8e8e8}@media (max-width:759px){.FiveThingsBanner-stickyContainer{display:none}.FiveThingsBanner-stickyContainer.FiveThingsBanner-timerFired{transform:translateY(-110px);transition:transform .2s ease-out}}.FiveThingsBanner-gridContainer{height:40px}@media (min-width:1020px){.FiveThingsBanner-gridContainer{margin:0 auto;max-width:100%}}@media (min-width:1020px) and (min-width:760px){.FiveThingsBanner-gridContainer{max-width:678px}}@media (min-width:1020px) and (min-width:1020px){.FiveThingsBanner-gridContainer{max-width:960px}}@media (min-width:1020px) and (min-width:1340px){.FiveThingsBanner-gridContainer{max-width:1290px}}.FiveThingsBanner-wrapper{display:flex;flex-direction:row;padding:0 20px;position:relative}@media (min-width:1020px){.FiveThingsBanner-wrapper{flex-grow:0;flex-shrink:0;max-width:calc(225% - 30px);max-width:100%!important;min-width:calc(225% - 30px);padding:0;position:relative}}@media (min-width:1020px) and (min-width:760px){.FiveThingsBanner-wrapper{max-width:calc(75% - 30px);min-width:calc(75% - 30px)}}@media (min-width:1020px) and (min-width:1020px){.FiveThingsBanner-wrapper{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media screen and (min-width:1020px) and (min-width:1020px) and (-ms-high-contrast:none){.FiveThingsBanner-wrapper{max-width:100%;min-width:100%}}@media (min-width:1020px) and (min-width:1340px){.FiveThingsBanner-wrapper{max-width:calc(75% - 30px);min-width:calc(75% - 30px)}}@media (min-width:1340px){.FiveThingsBanner-wrapper{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:1340px) and (min-width:760px){.FiveThingsBanner-wrapper{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1340px) and (min-width:1020px){.FiveThingsBanner-wrapper{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:1340px) and (min-width:1020px) and (-ms-high-contrast:none){.FiveThingsBanner-wrapper{max-width:100%;min-width:100%}}@media (min-width:1340px) and (min-width:1340px){.FiveThingsBanner-wrapper{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}.FiveThingsBanner-heading{color:#000;font-size:16px;font-weight:800;margin-right:20px}.FiveThingsBanner-heading:hover{color:#000}.FiveThingsBanner-newsText{display:none}.FiveThingsBanner-titleContainer{color:#171717;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:900;line-height:19px;position:relative;text-transform:uppercase;top:11px}.FiveThingsBanner-logo{display:inline-block;margin-left:10px}.FiveThingsBanner-article{color:#000;flex:0 1 auto;font-size:18px;font-weight:500;margin-right:10px;position:relative;white-space:nowrap;width:calc(100% - 250px)}.FiveThingsBanner-article:focus,.FiveThingsBanner-article:hover{color:#000;text-decoration:underline}@media (max-width:759px){.FiveThingsBanner-article{width:calc(100% - 300px)}}.FiveThingsBanner-marquee{-webkit-animation:FiveThingsBanner-marquee 10s linear infinite;animation:FiveThingsBanner-marquee 10s linear infinite;overflow:hidden;position:relative;white-space:nowrap}@-webkit-keyframes FiveThingsBanner-marquee{0%{left:0}50%{left:calc(-100% - 60px);top:0}51%{left:calc(-100% - 60px);top:-100px}52%{left:100%;top:-100px}53%{left:100%;top:0}to{left:0}}@keyframes FiveThingsBanner-marquee{0%{left:0}50%{left:calc(-100% - 60px);top:0}51%{left:calc(-100% - 60px);top:-100px}52%{left:100%;top:-100px}53%{left:100%;top:0}to{left:0}}.FiveThingsBanner-closeButton{color:#000;font-size:15px;position:absolute;right:20px;top:11px}@media (min-width:1020px){.FiveThingsBanner-closeButton{right:2px}}.FiveThingsBanner-adSlot{display:flex;flex-direction:row;position:relative}.FiveThingsBanner-adContainer{align-items:center;align-self:center;bottom:4px;display:flex;justify-content:center;left:77px;margin:0;position:absolute;top:16px;width:100px}@media (min-width:760px){.FiveThingsBanner-adContainer{margin-left:15px}}@media (max-width:759px){.FiveThingsBanner-adContainer{left:155px}}.FiveThingsBanner-sponsor{color:#424242;display:flex;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:11px;font-weight:400;letter-spacing:.3px;line-height:13px;position:relative;top:13px}@media (min-width:760px){.FiveThingsBanner-sponsor{font-size:12px;line-height:15px}}@media (max-width:759px){.FiveThingsBanner-sponsor{margin-left:75px;width:100%}}.FiveThingsBanner-adContainer:empty .FiveThingsBanner-sponsor{display:none}.mega-links-container a,.mega-links-containerPro a{color:#005594}@media (min-width:1020px){.mega-links-container,.mega-links-containerPro{width:60%}}.mega-links-item{border-bottom:1px solid #9b9b9b;padding:0 0 0 20px;position:relative;width:100%}@media (min-width:1020px){.mega-links-item{border:none;position:static}}.mega-links-expanded:before{background:#071d39;content:"";height:100%;left:0;position:absolute;top:0;width:6px}@media (min-width:1020px){.mega-links-expanded:before{display:none}}.mega-links-wrapper{overflow:visible;position:relative}@media (min-width:1020px){.mega-links-wrapper{border-right:1px solid #9b9b9b;margin-top:100px;padding-right:20px;width:50%}}@media (min-width:1340px){.mega-links-wrapper{padding-right:40px}}@media (min-width:1020px){.mega-links-wrapperButton{padding-bottom:40px;width:100%}}@media (min-width:1340px){.mega-links-wrapperButton{padding-bottom:40px;width:100%}}.mega-links-activeBar{background:#071d39;display:none;height:30px;position:absolute;right:-4px;top:-5px;transition:transform .2s ease-in-out;width:6px}@media (min-width:1020px){.mega-links-activeBar{display:block}}.mega-links-primaryLinkProAndIC{-webkit-backface-visibility:hidden;backface-visibility:hidden;display:flex;flex-direction:row;font-size:22px;font-weight:500;height:70px;justify-content:center;letter-spacing:2px;line-height:70px;position:relative;text-align:left;text-transform:uppercase;transform-origin:center right;transition:transform .3s;width:100%}@media (min-width:1020px){.mega-links-primaryLinkProAndIC{font-size:20px;height:auto;letter-spacing:1.3px;line-height:1;margin-bottom:32px;text-align:right}}@media (min-width:1340px){.mega-links-primaryLinkProAndIC{font-size:28px;letter-spacing:3px}}.mega-links-primaryLinkProAndIC a{flex:1}.mega-links-primaryLinkProAndIC a:hover{color:#27313c}.mega-links-primaryLinkProAndIC button{background:#f2f2f2;color:#071d39;height:0;line-height:70px;overflow:hidden;padding-top:70px;position:relative;text-align:center;width:70px}.mega-links-primaryLinkProAndIC button:before{font-size:16px;height:100%;left:0;line-height:70px;position:absolute;top:0;transform:scaleY(1);transition:transform .25s linear;width:100%}@media (min-width:1020px){.mega-links-primaryLinkProAndIC button{display:none}}.mega-links-primaryLink{-webkit-backface-visibility:hidden;backface-visibility:hidden;display:flex;flex-direction:row;font-size:22px;font-weight:500;height:70px;justify-content:center;letter-spacing:2px;line-height:70px;position:relative;text-align:left;text-transform:uppercase;transform-origin:center right;transition:transform .3s;width:100%}@media (min-width:1020px){.mega-links-primaryLink{font-size:20px;height:auto;letter-spacing:1.3px;line-height:1;margin-bottom:32px;text-align:right}}@media (min-width:1340px){.mega-links-primaryLink{font-size:28px;letter-spacing:3px;transition:transform .25s}}.mega-links-primaryLink a{flex:1}@media (max-width:1019px){.mega-links-primaryLink a{display:flex}}.mega-links-primaryLink a:hover{color:#005594}.mega-links-primaryLink button{background:#f2f2f2;color:#071d39;height:0;line-height:70px;overflow:hidden;padding-top:70px;position:relative;text-align:center;width:70px}.mega-links-primaryLink button:before{font-size:16px;height:100%;left:0;line-height:70px;position:absolute;top:0;transform:scaleY(1);transition:transform .25s linear;width:100%}@media (min-width:1020px){.mega-links-primaryLink button{display:none}}@media (max-width:1019px){.mega-links-primaryLinkExpandedProAndIC a{display:initial}}@media (min-width:1020px){.mega-links-primaryLinkExpanded,.mega-links-primaryLinkExpandedProAndIC{font-weight:600;transform:scale(1.32)}}@media (min-width:1340px){.mega-links-primaryLinkExpanded,.mega-links-primaryLinkExpandedProAndIC{transform:scale(1.15)}}.mega-links-primaryLinkExpanded a,.mega-links-primaryLinkExpandedProAndIC a{color:#071d39}@media (max-width:1019px){.mega-links-primaryLinkExpanded a,.mega-links-primaryLinkExpandedProAndIC a{display:flex}}.mega-links-primaryLinkExpanded a:hover,.mega-links-primaryLinkExpandedProAndIC a:hover{color:#071d39}.mega-links-primaryLinkExpanded .mega-links-investingClubLockIcon,.mega-links-primaryLinkExpanded .mega-links-proLockIcon,.mega-links-primaryLinkExpandedProAndIC .mega-links-investingClubLockIcon,.mega-links-primaryLinkExpandedProAndIC .mega-links-proLockIcon{background:#071d39;height:15px;margin-left:4px;margin-top:5px;mask-image:url(https://static-redesign.cnbcfm.com/dist/2510aab92bf855eb1ad7.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/2510aab92bf855eb1ad7.svg);-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;mask-size:11px;-webkit-mask-size:11px;width:11px}@media (max-width:1339px){.mega-links-primaryLinkExpanded .mega-links-investingClubLockIcon,.mega-links-primaryLinkExpanded .mega-links-proLockIcon,.mega-links-primaryLinkExpandedProAndIC .mega-links-investingClubLockIcon,.mega-links-primaryLinkExpandedProAndIC .mega-links-proLockIcon{margin-top:2px}}@media (max-width:1019px){.mega-links-primaryLinkExpanded .mega-links-investingClubLockIcon,.mega-links-primaryLinkExpanded .mega-links-proLockIcon,.mega-links-primaryLinkExpandedProAndIC .mega-links-investingClubLockIcon,.mega-links-primaryLinkExpandedProAndIC .mega-links-proLockIcon{margin-top:28px}}@media (max-width:759px){.mega-links-primaryLinkExpanded .mega-links-investingClubLockIcon,.mega-links-primaryLinkExpanded .mega-links-proLockIcon,.mega-links-primaryLinkExpandedProAndIC .mega-links-investingClubLockIcon,.mega-links-primaryLinkExpandedProAndIC .mega-links-proLockIcon{margin-top:26px}}.mega-links-primaryLinkExpanded .mega-links-investingClubLockIcon,.mega-links-primaryLinkExpandedProAndIC .mega-links-investingClubLockIcon{background:#071d39;height:15px;margin-left:8px;margin-top:5px;mask-image:url(https://static-redesign.cnbcfm.com/dist/2510aab92bf855eb1ad7.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/2510aab92bf855eb1ad7.svg);-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;mask-size:11px;-webkit-mask-size:11px;width:11px}@media (max-width:1339px){.mega-links-primaryLinkExpanded .mega-links-investingClubLockIcon,.mega-links-primaryLinkExpandedProAndIC .mega-links-investingClubLockIcon{margin-top:2px}}@media (max-width:1019px){.mega-links-primaryLinkExpanded .mega-links-investingClubLockIcon,.mega-links-primaryLinkExpandedProAndIC .mega-links-investingClubLockIcon{margin-top:28px}}@media (max-width:759px){.mega-links-primaryLinkExpanded .mega-links-investingClubLockIcon,.mega-links-primaryLinkExpandedProAndIC .mega-links-investingClubLockIcon{margin-top:26px}}.mega-links-primaryLinkExpanded button,.mega-links-primaryLinkExpandedProAndIC button{background:#071d39;color:#fff}.mega-links-primaryLinkExpanded button:before,.mega-links-primaryLinkExpandedProAndIC button:before{transform:scaleY(-1)}.mega-links-accountSubLinksPro,.mega-links-subLinksPro{display:flex;flex-direction:row;flex-wrap:wrap;margin:0;overflow:hidden;position:relative;transition:height .2s ease-in-out;width:100%}@media (min-width:1020px){.mega-links-accountSubLinksPro,.mega-links-subLinksPro{left:calc(100% + 20px);max-height:100vh;max-width:400px;overflow:auto;padding-right:20px;position:absolute;top:0;transition:visibility 0s,opacity .5s linear;width:calc(100% - 50px)}}@media (min-width:1340px){.mega-links-accountSubLinksPro,.mega-links-subLinksPro{left:calc(100% + 40px)}}.mega-links-accountSubLinksPro li,.mega-links-subLinksPro li{display:block;font-size:16px;font-weight:500;line-height:1.2;margin-bottom:13px;min-height:30px;padding-right:30px;position:relative;text-align:left;width:50%}.mega-links-accountSubLinksPro li a,.mega-links-subLinksPro li a{color:#071d39}.mega-links-accountSubLinksPro li a .mega-links-event,.mega-links-subLinksPro li a .mega-links-event{font-size:12px;margin-top:5px}.mega-links-accountSubLinksPro li a .mega-links-event .mega-links-location,.mega-links-subLinksPro li a .mega-links-event .mega-links-location{color:#747474}.mega-links-accountSubLinksPro li a:focus,.mega-links-accountSubLinksPro li a:focus .mega-links-location,.mega-links-accountSubLinksPro li a:hover,.mega-links-accountSubLinksPro li a:hover .mega-links-location,.mega-links-subLinksPro li a:focus,.mega-links-subLinksPro li a:focus .mega-links-location,.mega-links-subLinksPro li a:hover,.mega-links-subLinksPro li a:hover .mega-links-location{color:#00a857}@media (min-width:1020px){.mega-links-accountSubLinksPro li,.mega-links-subLinksPro li{font-size:15px;line-height:1;margin-bottom:15px;min-height:auto;padding:0;width:100%}}@media (min-width:1340px){.mega-links-accountSubLinksPro li,.mega-links-subLinksPro li{font-size:20px;margin-bottom:20px}}.mega-links-accountSubLinksIC,.mega-links-subLinksIC{display:flex;flex-direction:row;flex-wrap:wrap;margin:0;overflow:hidden;position:relative;transition:height .2s ease-in-out;width:100%}@media (min-width:1020px){.mega-links-accountSubLinksIC,.mega-links-subLinksIC{left:calc(100% + 20px);max-height:100vh;max-width:400px;overflow:auto;padding-right:20px;position:absolute;top:0;transition:visibility 0s,opacity .5s linear;width:calc(100% - 50px)}}@media (min-width:1340px){.mega-links-accountSubLinksIC,.mega-links-subLinksIC{left:calc(100% + 40px)}}.mega-links-accountSubLinksIC li,.mega-links-subLinksIC li{display:block;font-size:16px;font-weight:500;line-height:1.2;margin-bottom:13px;min-height:30px;padding-right:30px;position:relative;text-align:left;width:50%}.mega-links-accountSubLinksIC li a,.mega-links-subLinksIC li a{color:#071d39}.mega-links-accountSubLinksIC li a .mega-links-event,.mega-links-subLinksIC li a .mega-links-event{font-size:12px;margin-top:5px}.mega-links-accountSubLinksIC li a .mega-links-event .mega-links-location,.mega-links-subLinksIC li a .mega-links-event .mega-links-location{color:#747474}.mega-links-accountSubLinksIC li a:focus,.mega-links-accountSubLinksIC li a:focus .mega-links-location,.mega-links-accountSubLinksIC li a:hover,.mega-links-accountSubLinksIC li a:hover .mega-links-location,.mega-links-subLinksIC li a:focus,.mega-links-subLinksIC li a:focus .mega-links-location,.mega-links-subLinksIC li a:hover,.mega-links-subLinksIC li a:hover .mega-links-location{color:#0496ff}@media (min-width:1020px){.mega-links-accountSubLinksIC li,.mega-links-subLinksIC li{font-size:15px;line-height:1;margin-bottom:15px;min-height:auto;padding:0;width:100%}}@media (min-width:1340px){.mega-links-accountSubLinksIC li,.mega-links-subLinksIC li{font-size:20px;margin-bottom:20px}}.mega-links-investingClubLockIcon,.mega-links-proLockIcon{background:#005594;display:inline-block;height:15px;margin-left:4px;margin-top:5px;mask-image:url(https://static-redesign.cnbcfm.com/dist/2510aab92bf855eb1ad7.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/2510aab92bf855eb1ad7.svg);-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;mask-size:11px;-webkit-mask-size:11px;width:11px}@media (max-width:1339px){.mega-links-investingClubLockIcon,.mega-links-proLockIcon{margin-top:2px}}@media (max-width:1019px){.mega-links-investingClubLockIcon,.mega-links-proLockIcon{margin-top:28px}}@media (max-width:759px){.mega-links-investingClubLockIcon,.mega-links-proLockIcon{margin-top:26px}}.mega-links-investingClubLockIcon{margin-left:8px}.mega-links-accountSubLinks,.mega-links-subLinks{display:flex;flex-direction:row;flex-wrap:wrap;margin:0;overflow:hidden;position:relative;transition:height .2s ease-in-out;width:100%}@media (min-width:1020px){.mega-links-accountSubLinks,.mega-links-subLinks{left:calc(100% + 20px);max-height:100vh;max-width:400px;overflow:auto;padding-right:20px;position:absolute;top:0;transition:visibility 0s,opacity .5s linear;width:calc(100% - 50px)}}@media (min-width:1340px){.mega-links-accountSubLinks,.mega-links-subLinks{left:calc(100% + 40px)}}.mega-links-accountSubLinks li,.mega-links-subLinks li{display:block;font-size:16px;font-weight:500;line-height:1.2;margin-bottom:13px;min-height:30px;padding-right:30px;position:relative;text-align:left;width:50%}.mega-links-accountSubLinks li a,.mega-links-subLinks li a{color:#071d39}.mega-links-accountSubLinks li a .mega-links-event,.mega-links-subLinks li a .mega-links-event{font-size:12px;margin-top:5px}.mega-links-accountSubLinks li a .mega-links-event .mega-links-location,.mega-links-subLinks li a .mega-links-event .mega-links-location{color:#747474}.mega-links-accountSubLinks li a:focus,.mega-links-accountSubLinks li a:focus .mega-links-location,.mega-links-accountSubLinks li a:hover,.mega-links-accountSubLinks li a:hover .mega-links-location,.mega-links-subLinks li a:focus,.mega-links-subLinks li a:focus .mega-links-location,.mega-links-subLinks li a:hover,.mega-links-subLinks li a:hover .mega-links-location{color:#fcb700}@media (min-width:1020px){.mega-links-accountSubLinks li,.mega-links-subLinks li{font-size:15px;line-height:1;margin-bottom:15px;min-height:auto;padding:0;width:100%}}@media (min-width:1340px){.mega-links-accountSubLinks li,.mega-links-subLinks li{font-size:20px;margin-bottom:20px}}.mega-links-accountSubLinks li:first-child{height:40px;padding:10px 0;width:100%}@media (max-width:1019px){.mega-links-accountSubLinks li:first-child{background:#f8f8f8}}.mega-links-accountSubLinks li:first-child a{cursor:default}.mega-links-accountSubLinks li:first-child a:focus,.mega-links-accountSubLinks li:first-child a:hover{color:#071d39}.mega-links-accountSubLinksPro li:first-child{cursor:default;height:40px;padding:10px 0;width:100%}.mega-links-accountSubLinksPro li:first-child:focus,.mega-links-accountSubLinksPro li:first-child:hover{color:#071d39}@media (max-width:1019px){.mega-links-accountSubLinksPro li:first-child{background:#f8f8f8}}@media (min-width:1020px){.mega-links-buttonText{left:2px;position:absolute;right:30px;top:-15px;width:100%}}@media (min-width:1340px){.mega-links-buttonText{left:2px;position:absolute;right:30px;top:-14px!important;width:100%}}.mega-links-buttonLink{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#0376c9;border:1px solid #0376c9;color:#fff;font-size:22px;font-weight:500;height:70px;justify-content:center;letter-spacing:2px;line-height:70px;padding:0 20px;position:relative;text-align:left;text-transform:uppercase;transition:all .15s linear;width:100%}@media (min-width:1340px){.mega-links-buttonLink{border-radius:4px;float:right;font-size:16px!important;height:44px!important;width:73%!important}}@media (min-width:1020px){.mega-links-buttonLink{border-radius:4px;float:right;font-size:11px;font-weight:600;height:40px;letter-spacing:1px;padding:0!important;text-align:center;width:64%}}@media (max-width:359px){.mega-links-buttonLink{font-size:16px;font-weight:700}}.mega-menu-mobileTopBar{display:block;transition:transform .5s ease-in-out}@media (min-width:1020px){.mega-menu-mobileTopBar{display:none}}.mega-menu-desktopTopBar{display:none;transition:transform .5s ease-in-out}@media (min-width:1020px){.mega-menu-desktopTopBar{display:block}}.mega-menu-megaMenu{-webkit-overflow-scrolling:touch;background:#fff;color:#071d39;display:block;height:100%;left:0;opacity:1;overflow-y:scroll;padding-bottom:45px;position:fixed;top:45px;width:100%;z-index:999}@media (min-width:760px){.mega-menu-megaMenu{padding-bottom:0;top:0}}@media (min-width:1020px){.mega-menu-megaMenu{height:100%;overflow-x:hidden;overflow-y:auto;width:100%}}@media (min-width:760px) and (max-width:1019px){.mega-menu-megaMenu{padding-top:2.5rem}}@media (min-width:1020px){.mega-menu-megaMenuContainer{display:flex;flex-direction:row;margin:0 auto;max-width:100%;position:relative;width:100%}}@media (min-width:1020px) and (min-width:760px){.mega-menu-megaMenuContainer{max-width:678px}}@media (min-width:1020px) and (min-width:1020px){.mega-menu-megaMenuContainer{max-width:960px}}@media (min-width:1020px) and (min-width:1340px){.mega-menu-megaMenuContainer{max-width:1290px}}@media screen and (-ms-high-contrast:none){.mega-menu-megaMenuContainer{max-width:100%}}.mega-menu-searchToggle{background-color:#fff;border-bottom:1px solid #9b9b9b;display:block;padding:20px}@media (min-width:1020px){.mega-menu-searchToggle{background-color:transparent;border-bottom:none;padding:27px 40px;position:absolute;right:0;z-index:1}}.mega-menu-topBar{background-color:#005594}.mega-menu-topBarPro{background-color:#27313c}.mega-menu-topBarIC{background-color:#071d39}.mega-menu-topBar,.mega-menu-topBarPro{align-items:center;display:flex;flex-direction:row;height:45px;justify-content:space-between;left:0;max-height:45px;min-height:45px;padding:0 30px 0 20px;position:fixed;top:0;width:100%;z-index:10000}@media (min-width:760px){.mega-menu-topBar,.mega-menu-topBarPro{justify-content:flex-start}}@media (min-width:1020px){.mega-menu-topBar,.mega-menu-topBarPro{align-items:center;background-color:transparent;flex-wrap:wrap;height:102px;left:0;max-height:102px;min-height:92px;padding:0 0 0 8px;position:absolute;top:0;width:50%}}@media (min-width:1340px){.mega-menu-topBar,.mega-menu-topBarPro{height:102px;max-height:102px}}.mega-menu-closePro{background:none;color:#fff;font-size:17px;order:2}.mega-menu-closePro span:before{display:block}.mega-menu-closePro:hover{color:#00a857}.mega-menu-closePro:focus{color:#fff}.mega-menu-closePro:focus:hover{color:#00a857}@media (min-width:1020px){.mega-menu-closePro:focus{color:#27313c}}@media (min-width:760px){.mega-menu-closePro{order:1}}@media (min-width:1020px){.mega-menu-closePro{color:#27313c;font-size:15px}}.mega-menu-closeIC{background:none;color:#fff;font-size:17px;order:2}.mega-menu-closeIC span:before{display:block}.mega-menu-closeIC:hover{color:#0496ff}.mega-menu-closeIC:focus{color:#fff}.mega-menu-closeIC:focus:hover{color:#0496ff}@media (min-width:1020px){.mega-menu-closeIC:focus{color:#27313c}}@media (min-width:760px){.mega-menu-closeIC{order:1}}@media (min-width:1020px){.mega-menu-closeIC{color:#27313c;font-size:15px}}.mega-menu-close{background:none;color:#fff;font-size:17px;order:2}.mega-menu-close span:before{display:block}.mega-menu-close:hover{color:#fcb700}.mega-menu-close:focus{color:#fff}.mega-menu-close:focus:hover{color:#fcb700}@media (min-width:1020px){.mega-menu-close:focus{color:#005594}}@media (min-width:760px){.mega-menu-close{order:1}}@media (min-width:1020px){.mega-menu-close{color:#005594;font-size:15px}}.mega-menu-logo{flex:1;max-width:35px;min-width:35px;order:1}@media (min-width:760px){.mega-menu-logo{margin-left:30px;order:2}}@media (min-width:1020px){.mega-menu-logo{max-width:120px;min-width:120px}}.mega-menu-logo img{width:100%}@media (min-width:1020px){.mega-menu-logoSmall{display:none;height:22px;width:125px}}.mega-menu-logoLargeProAndIC{display:none}@media (min-width:1020px){.mega-menu-logoLargeProAndIC{display:block;height:36px;width:216px!important}}.mega-menu-logoLarge{display:none}@media (min-width:1020px){.mega-menu-logoLarge{display:block;height:20px;width:138px}}.mega-menu-search{color:#005594;font-size:14px;font-weight:600;letter-spacing:1px;margin-right:30px}@media (min-width:1340px){.mega-menu-search{margin-right:75px}}.mega-menu-searchPro{color:#005594;font-size:14px;font-weight:600;letter-spacing:1px;margin-right:30px}@media (min-width:1340px){.mega-menu-searchPro{margin-right:75px}}.mega-menu-accountLinks{display:flex;flex-direction:row;flex-wrap:wrap;justify-content:space-between}.mega-menu-accountLinks li{height:70px;line-height:70px;padding:0 20px;text-align:center}.mega-menu-accountLinks a{color:#071d39;font-size:14px;font-weight:600;letter-spacing:.85px}.mega-menu-accountLinks li:first-child,.mega-menu-accountLinks li:nth-child(2),.mega-menu-accountLinks li:nth-child(3){flex:auto;width:33.3333%}.mega-menu-accountLinks li:nth-child(4),.mega-menu-accountLinks li:nth-child(5){border-top:1px solid #f2f2f2;flex:auto;text-align:center;width:50%}.mega-menu-accountLinks li:nth-child(5){border-left:1px solid #f2f2f2}.mega-menu-accountLinks li:nth-child(5) a{margin:0 14px}.mega-menu-accountLinks li:nth-child(5) a:last-child:before{color:#000;content:"•";font-size:10px;left:-14px;position:relative;top:-2px}.mega-menu-accountLinks .icon-offsite-arrow{display:inline-block;line-height:14px;margin-left:5px;vertical-align:middle}.mega-menu-accountLinks .icon-offsite-arrow:before{color:rgba(7,29,57,.4);font-size:12px;line-height:14px}@media (min-width:1020px){.mega-menu-accountLinks{display:none}}.SearchEntry-inputContainer{background-color:#005594}.SearchEntry-inputContainerPro{background-color:#27313c}.SearchEntry-inputContainerIC{background-color:#071d39}.SearchEntry-inputContainer,.SearchEntry-inputContainerIC,.SearchEntry-inputContainerPro{opacity:1;padding:20px;position:relative;z-index:2}@media (min-width:360px){.SearchEntry-inputContainer,.SearchEntry-inputContainerIC,.SearchEntry-inputContainerPro{padding-top:45px}}@media (min-width:760px){.SearchEntry-inputContainer,.SearchEntry-inputContainerIC,.SearchEntry-inputContainerPro{padding:15px 0 25px}.SearchEntry-inputContainer>*,.SearchEntry-inputContainerIC>*,.SearchEntry-inputContainerPro>*{opacity:1}.SearchEntry-enter .SearchEntry-inputContainer>*,.SearchEntry-enter .SearchEntry-inputContainerIC>*,.SearchEntry-enter .SearchEntry-inputContainerPro>*{opacity:0!important}.SearchEntry-enter-active .SearchEntry-inputContainer>*,.SearchEntry-enter-active .SearchEntry-inputContainerIC>*,.SearchEntry-enter-active .SearchEntry-inputContainerPro>*{opacity:1!important;transition:opacity .1s ease-in .3s}.SearchEntry-exit .SearchEntry-inputContainer>*,.SearchEntry-exit .SearchEntry-inputContainerIC>*,.SearchEntry-exit .SearchEntry-inputContainerPro>*{opacity:1!important}.SearchEntry-exit-active .SearchEntry-inputContainer>*,.SearchEntry-exit-active .SearchEntry-inputContainerIC>*,.SearchEntry-exit-active .SearchEntry-inputContainerPro>*{opacity:0!important;transition:transform .1s ease-out}}@media (min-width:1020px){.SearchEntry-inputContainer,.SearchEntry-inputContainerIC,.SearchEntry-inputContainerPro{background-color:#fff;padding:10px 20px 0}.SearchEntry-inputContainer input[type=search]::-webkit-search-cancel-button,.SearchEntry-inputContainerIC input[type=search]::-webkit-search-cancel-button,.SearchEntry-inputContainerPro input[type=search]::-webkit-search-cancel-button{-webkit-appearance:none}.SearchEntry-inputContainer input[type=search]::-webkit-search-cancel-button,.SearchEntry-inputContainer input[type=search]::-webkit-search-decoration,.SearchEntry-inputContainer input[type=search]::-webkit-search-results-button,.SearchEntry-inputContainer input[type=search]::-webkit-search-results-decoration,.SearchEntry-inputContainerIC input[type=search]::-webkit-search-cancel-button,.SearchEntry-inputContainerIC input[type=search]::-webkit-search-decoration,.SearchEntry-inputContainerIC input[type=search]::-webkit-search-results-button,.SearchEntry-inputContainerIC input[type=search]::-webkit-search-results-decoration,.SearchEntry-inputContainerPro input[type=search]::-webkit-search-cancel-button,.SearchEntry-inputContainerPro input[type=search]::-webkit-search-decoration,.SearchEntry-inputContainerPro input[type=search]::-webkit-search-results-button,.SearchEntry-inputContainerPro input[type=search]::-webkit-search-results-decoration{display:none}.SearchEntry-inputContainer button,.SearchEntry-inputContainerIC button,.SearchEntry-inputContainerPro button{right:0;width:30px}.SearchEntry-inputContainer button:before,.SearchEntry-inputContainerIC button:before,.SearchEntry-inputContainerPro button:before{font-size:20px;line-height:36px}.SearchEntry-inputContainer input,.SearchEntry-inputContainerIC input,.SearchEntry-inputContainerPro input{border-bottom:1px solid #979797;font-size:14px;height:35px;padding:0 40px 0 0}}.SearchEntry-container{background-color:transparent;padding:0 20px;position:relative;width:100%}@media (min-width:760px){.SearchEntry-container{padding:0 150px}}@media (min-width:1020px){.SearchEntry-container{padding:0}}.SearchEntry-container.SearchEntry-standardVariant{padding:20px 0 0}@media (min-width:360px){.SearchEntry-container.SearchEntry-standardVariant{padding:45px 20px 20px}}@media (min-width:760px){.SearchEntry-container.SearchEntry-standardVariant{padding:0}}@media (min-width:1020px){.SearchEntry-container.SearchEntry-standardVariant{padding:8px 80px 40px}}.SearchEntry-searchForm{display:block;position:relative}.SearchEntry-overlay .SearchEntry-searchForm{border-bottom:0}.SearchEntry-searchForm ::-moz-placeholder{color:#a2a2a2}.SearchEntry-searchForm ::placeholder{color:#a2a2a2}.SearchEntry-overlay{margin:0 auto;padding:0;width:100%}@media (min-width:760px){.SearchEntry-overlay{max-width:560px}}@media (min-width:1020px){.SearchEntry-overlay{max-width:800px}}@media (min-width:1340px){.SearchEntry-overlay{max-width:1132px}}.SearchEntry-inputCallToAction{display:none}@media (min-width:1020px){.SearchEntry-inputCallToAction{display:block;font-size:15px;font-weight:600;letter-spacing:1px;line-height:15px;margin-bottom:5px}.SearchEntry-overlay .SearchEntry-inputCallToAction{color:#fff}}.SearchEntry-querySuggest{background:#fff;border:1px solid transparent;color:grey;margin:0;opacity:1;position:absolute;width:calc(100% - 30px)}.SearchEntry-query{background:transparent;border:1px solid;border-color:#888 #888 #ccc;-o-border-image:initial;border-image:initial;margin:0;opacity:1;position:relative;width:calc(100% - 30px);z-index:2}.SearchEntry-searchInput{-webkit-appearance:none;background-color:#fff;border:0;box-sizing:border-box!important;color:#171717;display:block;font-size:16px;font-weight:500;height:50px;letter-spacing:1px;line-height:1;padding:0 50px 0 15px;width:100%}.SearchEntry-standardVariant .SearchEntry-searchInput{text-transform:uppercase}.SearchEntry-overlay .SearchEntry-searchInput{border-radius:3px}@media (min-width:1020px){.SearchEntry-searchInput{border-bottom:1px solid #979797;font-size:14px;font-weight:600;height:35px;padding:0 40px 0 0}.SearchEntry-overlay .SearchEntry-searchInput{border-radius:0}.SearchEntry-searchInput::-webkit-search-cancel-button{-webkit-appearance:none}.SearchEntry-searchInput::-webkit-search-cancel-button,.SearchEntry-searchInput::-webkit-search-decoration,.SearchEntry-searchInput::-webkit-search-results-button,.SearchEntry-searchInput::-webkit-search-results-decoration{display:none}}.SearchEntry-searchButton{bottom:0;height:0;margin:auto;overflow:hidden;padding-top:30px;position:absolute;right:10px;top:0;width:30px;z-index:2}.SearchEntry-searchButton:before{color:#2077b6;font-size:26px;height:100%;left:0;line-height:30px;position:absolute;text-align:center;top:0;width:100%}@media (min-width:1020px){.SearchEntry-searchButton{padding-top:40px;right:0;width:30px}.SearchEntry-searchButton:before{font-size:20px;line-height:36px}}.SearchEntry-suggestActive{color:#000}.SearchEntry-suggestActiveInput{opacity:.7}.SearchEntry-suggestNotActive{display:none!important}.SearchEntry-suggestNotActiveInput{opacity:1!important}.SearchEntry-waitingIcon{background-color:#fff;position:absolute;right:40px;top:2px;z-index:2}@media (min-width:1020px){.SearchEntry-waitingIcon{right:35px;top:0}}.SearchEntry-waitingIcon img{height:45px;width:60px}@media (min-width:1020px){.SearchEntry-waitingIcon img{height:30px;width:50px}}@media (max-width:1019px){.SearchResults-moreResults{margin-bottom:-20px!important}.SearchResults-tickerContainerHeader{margin-top:20px}}.SearchResults-contentContainer{background-color:#fff;opacity:1;padding-bottom:10px;z-index:1}@media (min-width:760px){.SearchResults-enter .SearchResults-contentContainer{opacity:0!important}.SearchResults-enter-active .SearchResults-contentContainer{opacity:1!important;transition:opacity .1s ease-in .3s}.SearchResults-exit .SearchResults-contentContainer{opacity:1!important}.SearchResults-exit-active .SearchResults-contentContainer{opacity:0!important;transition:opacity .1s ease-out}}.SearchResults-focusable:hover,.SearchResults-highlight{background:#e4e4e4!important}.SearchResults-paddingExceptLeft{padding:5px 5px 5px 0}div:not(:first-child)>a>.SearchResults-articleItem{border-top:1px solid #ccc}.SearchResults-articleItem{height:80px;margin:0 20px;padding:5px;position:relative}.SearchResults-articleItemThumbnail{background-color:#ccc;background-position:50%;float:right;height:60px;margin-left:10px;position:relative;width:106px}.SearchResults-iconArrowRightLong{float:right;padding:4px}.SearchResults-iconArrowRightLong:before{content:"\E90A"}.SearchResults-upper{text-transform:uppercase}.SearchResults-empty{font-size:12px;padding-bottom:30px;padding-left:30px;padding-top:10px}.SearchResults-groupContainer{min-height:35px}.SearchResults-articleItemText{color:#171717;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:13px;font-weight:600;line-height:14px;padding-bottom:20px;text-align:left}.SearchResults-articleTitle{height:44px;left:5px;overflow:hidden;position:absolute;top:5px;width:calc(100% - 120px)}.SearchResults-termHighlight{background-color:#e7ecf1}.SearchResults-articlePubDate{color:#747474;font-size:9px;font-weight:600;height:24px;letter-spacing:.02em;line-height:12px;overflow:hidden;position:absolute;top:50px;width:calc(100% - 120px)}.SearchResults-articlePubTime{white-space:nowrap}.SearchResults-moreResults{display:block;font-size:14px;margin-bottom:0;margin-left:20px;margin-right:20px;text-transform:uppercase}.SearchResults-moreResults a,.SearchResults-moreResults a:active,.SearchResults-moreResults a:hover{color:#005594}.SearchResults-containerHeader{border-top:1px solid #005594;color:#000;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:600;line-height:17px;margin-left:20px;margin-right:20px;padding:10px 10px 10px 0;text-decoration:underline;-webkit-text-decoration-color:#005594;text-decoration-color:#005594;text-transform:uppercase;text-underline-offset:3px}.SearchResults-playIcon{border:3px solid #fff;border-radius:100%;box-shadow:inset 0 1px 0 #555,inset 1px 0 0 #555,inset 0 -1px 0 #555,inset -1px 0 0 #555,0 1px 0 #555,1px 0 0 #555,0 -1px 0 #555,-1px 0 0 #555;height:32px;left:calc(50% - 16px);position:absolute;top:5px;width:32px}.SearchResults-playIcon>:first-child{border:8px solid transparent;border-left:13px solid #555;left:8px;position:absolute;top:5px}.SearchResults-playIcon>:last-child{border:6px solid transparent;border-left:10px solid #fff;left:9px;position:absolute;top:7px}.SearchResults-videoDuration{bottom:0;font-size:14px;font-weight:700;padding:0 5px;position:absolute;text-shadow:0 1px 0 #555,1px 0 0 #555,0 -1px 0 #555,-1px 0 0 #555;width:100%}.SearchResults-video{color:#fcb700;float:left;letter-spacing:.7px;text-transform:uppercase}.SearchResults-duration{color:#fff;float:right}.SymbolResultItem-link{align-items:center;display:flex;overflow:hidden;position:relative;white-space:nowrap}.SymbolResultItem-link:hover>.SymbolResultItem-item,.SymbolResultItem-selected{background-color:#e4e4e4}.SymbolResultItem-item{align-items:center;border:.5px solid #cfd8e2;border-radius:7px;color:#4a4a4a;display:flex;font-family:Proxima Nova,sans-serif;font-size:12px;line-height:12px;overflow:hidden;padding:8px;position:relative;white-space:nowrap}.SymbolResultItem-name{color:#4a4a4a;font-weight:500;margin:0;overflow:hidden;text-overflow:ellipsis}.SymbolResultItem-separator{color:#4a4a4a;margin:0 5px}.SymbolResultItem-last,.SymbolResultItem-symbol{color:#171717;font-weight:700;margin:0}.SymbolResultItem-positiveChange{color:#008456;font-weight:700;margin:0}.SymbolResultItem-negativeChange{color:#d0021b;font-weight:700;margin:0}.SymbolResultItem-unchanged{color:#747474;font-weight:700;margin:0}.SymbolResults-tickerContainerHeader{border-top:1px solid #005594;color:#000;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:600;line-height:17px;margin-left:20px;margin-right:20px;padding:10px 10px 10px 0;text-decoration:none}@media (max-width:1019px){.SymbolResults-tickerContainerHeader{margin-top:20px}}.SymbolResults-tickerContainer{display:flex;flex-wrap:wrap;gap:10px 15px;margin:0 20px 10px;min-height:30px;padding:0;text-indent:0}.SymbolResults-noSymbols{font-size:12px;padding-bottom:20px;padding-left:30px;padding-top:10px}.Search-query_suggest{background:#fff;border:1px solid transparent;color:grey;position:absolute}.Search-query,.Search-query_suggest{margin:0;opacity:1;padding:6px;width:calc(100% - 30px)}.Search-query{background:transparent;border:1px solid;border-color:#888 #888 #ccc;-o-border-image:initial;border-image:initial;position:relative;z-index:2}.Search-container{background-color:transparent;padding:0 20px;position:relative;width:100%}@media (min-width:760px){.Search-container{padding:0 150px}}@media (min-width:1020px){.Search-container{padding:0 160px}}@media (min-width:1340px){.Search-container{padding:0 290px}}.Search-container.Search-standardVariant{padding:20px 0 0}@media (min-width:360px){.Search-container.Search-standardVariant{padding:45px 20px 20px}}@media (min-width:760px){.Search-container.Search-standardVariant{padding:0}}@media (min-width:1020px){.Search-container.Search-standardVariant{padding:8px 80px 40px}}.Search-overlay{margin:0 auto;padding:0;width:100%}@media (min-width:760px){.Search-overlay{max-width:560px}}@media (min-width:1020px){.Search-overlay{max-width:800px}}@media (min-width:1340px){.Search-overlay{max-width:1132px}}.Search-inputCallToAction{display:none}@media (min-width:1020px){.Search-inputCallToAction{display:block;font-size:15px;font-weight:600;letter-spacing:1px;line-height:15px;margin-bottom:5px}.Search-overlay .Search-inputCallToAction{color:#fff}}.Search-form{display:block;position:relative}.Search-overlay .Search-form{border-bottom:0}.Search-form ::-moz-placeholder{color:#a2a2a2}.Search-form ::placeholder{color:#a2a2a2}.Search-searchInput{-webkit-appearance:none;background-color:#fff;border:0;box-sizing:border-box!important;color:#171717;display:block;font-size:16px;font-weight:500;height:50px;letter-spacing:1px;line-height:1;padding:0 50px 0 15px;width:100%}.Search-standardVariant .Search-searchInput{text-transform:uppercase}.Search-overlay .Search-searchInput{border-radius:3px}@media (min-width:1020px){.Search-searchInput{font-size:36px;font-weight:600;height:60px;padding:0 80px 0 30px}.Search-overlay .Search-searchInput{border-radius:0}}.Search-submitBtn{bottom:0;height:0;margin:auto;overflow:hidden;padding-top:30px;position:absolute;right:10px;top:0;width:30px;z-index:2}.Search-submitBtn:before{color:#2077b6;font-size:26px;height:100%;left:0;line-height:30px;position:absolute;text-align:center;top:0;width:100%}@media (min-width:1020px){.Search-submitBtn{padding-top:40px;right:30px;width:40px}.Search-submitBtn:before{font-size:36px;line-height:40px}}.Search-suggestNotActive{display:none!important}.Search-suggestNotActiveInput{opacity:1!important}@media (max-width:1019px){body #SearchDropDown-moreResults{margin-bottom:-20px}body #SearchDropDown-tickerContainerHeader{margin-top:20px}}body #SearchDropDown-tickerContainer #tickercontainer{gap:10px 15px;padding-bottom:10px!important}.icon-buffett-backtotop:before{font-size:1.5em;padding-left:3px}body #back-top-top{background:#005594;bottom:40px;color:#fff;cursor:pointer;display:none;height:auto;padding:10px;position:fixed;right:0}body #back-top-top:hover{background:#2077b6}@media (min-width:1340px){body .searchResultsCols{max-width:1290px}}@media (min-width:1020px){body .searchCol4{max-width:35%;min-width:35%}body .searchCol8{max-width:60%;min-width:60%;padding-right:0}body .searchResultsCols{max-width:100%;min-width:100%;padding:0 60px}}@media (min-width:1340px){body .searchCol4{max-width:420px;min-width:420px}body .searchCol8{max-width:820px;min-width:820px;padding-right:0}body .searchResultsCols{max-width:1320px;min-width:1320px;padding:0 20px}}.SearchDropDown-searchResultsContainer{margin:0 auto;padding:0 20px}.SearchDropDown-dropDownContainer{-webkit-overflow-scrolling:touch;display:flex;flex-direction:column;height:100vh;left:0;overflow-x:hidden;overflow-y:auto;position:fixed;top:0;width:100%;z-index:1000}.SearchDropDown-dropDownContainer.SearchDropDown-enter{transform:translateX(100%)}.SearchDropDown-dropDownContainer.SearchDropDown-enter-active{transform:translateX(0);transition:transform .4s ease-in}.SearchDropDown-dropDownContainer.SearchDropDown-exit{transform:translateX(0)}.SearchDropDown-dropDownContainer.SearchDropDown-exit-active{transform:translateX(100%);transition:transform .3s ease-out}@media (min-width:760px){.SearchDropDown-dropDownContainer{background-color:transparent}.SearchDropDown-dropDownContainer.SearchDropDown-enter,.SearchDropDown-dropDownContainer.SearchDropDown-enter-active,.SearchDropDown-dropDownContainer.SearchDropDown-exit,.SearchDropDown-dropDownContainer.SearchDropDown-exit-active{transform:none;transition:none}}@media (min-width:1020px){.SearchDropDown-dropDownContainer{box-shadow:0 2px 4px 0 hsla(0,0%,59%,.5);height:auto;left:auto;max-height:calc(100vh - 130px);padding:0;position:absolute;right:0;top:16px!important;width:440px}}@media (min-width:1020px) and (min-width:760px){.SearchDropDown-dropDownContainer{padding-left:0;padding-right:0}}@media (min-width:1020px) and (min-width:1020px){.SearchDropDown-dropDownContainer{padding-left:0;padding-right:0}}@media (min-width:1020px) and (min-width:1340px){.SearchDropDown-dropDownContainer{padding-left:0;padding-right:0}}@media (min-width:1020px){.SearchDropDown-dropDownContainer .Search-container{padding:0}}@media (min-width:1180px){.SearchDropDown-dropDownContainer{padding:0}}@media (min-width:1340px){.SearchDropDown-dropDownContainer{padding:0}}.SearchDropDown-brandingContainer{background-color:#005594;position:relative;width:100%;z-index:5}.SearchDropDown-brandingContainerPro{background-color:#27313c;position:relative;width:100%;z-index:5}.SearchDropDown-brandingContainerIC{background-color:#071d39;position:relative;width:100%;z-index:5}.SearchDropDown-branding{left:0;position:relative;top:0;width:100%;z-index:3}@media (min-width:760px){.SearchDropDown-branding{height:46px}.SearchDropDown-branding [class*=-button]{display:block;transition:none!important}.SearchDropDown-branding [class*=-button][class*=-makeit]{width:20px!important}.SearchDropDown-branding [class*=-button]:before{display:none}.SearchDropDown-branding [class*=-button] span{transform:translateY(-70px);visibility:hidden}}@media (min-width:1020px){.SearchDropDown-branding{display:none}}@media (min-width:1180px){.SearchDropDown-branding{max-width:1077px}}@media (min-width:1340px){.SearchDropDown-branding{max-width:1290px}}@media (min-width:760px){.SearchDropDown-enter .SearchDropDown-branding{background-color:rgba(0,85,148,0)}.SearchDropDown-enter .SearchDropDown-branding [class*=-button]{width:140px}}@media (min-width:760px) and (min-width:760px){.SearchDropDown-enter .SearchDropDown-branding [class*=-button]{transform:translateY(-10px)}}@media (min-width:760px){.SearchDropDown-enter-active .SearchDropDown-branding{background-color:#005594;transition:background-color .1s ease-in}.SearchDropDown-enter-active .SearchDropDown-branding [class*=-button]{transition:width .2s ease-in;width:75px}}@media (min-width:760px) and (min-width:760px){.SearchDropDown-enter-active .SearchDropDown-branding [class*=-button]{transform:translateY(0);transition:transform .2s ease-in .1s,width .2s ease-in,background-color .1s ease-in}}@media (min-width:760px){.SearchDropDown-exit .SearchDropDown-branding{background-color:#005594}.SearchDropDown-exit .SearchDropDown-branding [class*=-button]{width:75px}}@media (min-width:760px) and (min-width:760px){.SearchDropDown-exit .SearchDropDown-branding [class*=-button]{opacity:1;transform:translateY(0)}}@media (min-width:760px){.SearchDropDown-exit-active .SearchDropDown-branding{background-color:rgba(0,85,148,0);transition:background-color .1s ease-out .2s}.SearchDropDown-exit-active .SearchDropDown-branding [class*=-button]{transition:width .1s ease-in .2s;width:140px}}@media (min-width:760px) and (min-width:760px){.SearchDropDown-exit-active .SearchDropDown-branding [class*=-button]{opacity:0;transform:translateY(-10px);transition:transform .2s ease-out,opacity .2s ease-out,background-color .1s ease-out .2s}}.SearchDropDown-brandingLogo{display:block;left:20px;position:absolute;top:12px;width:127px}@media (min-width:760px){.SearchDropDown-brandingLogo{transform:translateY(11px)}.SearchDropDown-enter .SearchDropDown-brandingLogo{transform:translateY(0)}.SearchDropDown-enter-active .SearchDropDown-brandingLogo{transform:translateY(11px);transition:transform .2s ease-in .1s}.SearchDropDown-exit .SearchDropDown-brandingLogo{transform:translateY(11px)}.SearchDropDown-exit-active .SearchDropDown-brandingLogo{transform:translateY(0);transition:transform .2s ease-out}}@media (min-width:1020px){.SearchDropDown-brandingLogo{left:0;transform:translateY(25px)}.SearchDropDown-enter .SearchDropDown-brandingLogo{transform:translateY(0)}.SearchDropDown-enter-active .SearchDropDown-brandingLogo{transform:translateY(25px);transition:transform .2s ease-in .1s}.SearchDropDown-exit .SearchDropDown-brandingLogo{transform:translateY(25px)}.SearchDropDown-exit-active .SearchDropDown-brandingLogo{transform:translateY(0);transition:transform .2s ease-out}}.SearchDropDown-content{background-color:#fff;box-shadow:0 5px 20px 5px rgba(0,0,0,.1);min-height:100%;position:relative}@media (min-width:760px){.SearchDropDown-content{transform-origin:top}.SearchDropDown-enter .SearchDropDown-content{transform:scaleY(0)}.SearchDropDown-enter-active .SearchDropDown-content{transform:scaleY(1);transition:transform .3s ease-in}.SearchDropDown-exit .SearchDropDown-content{transform:scaleY(1)}.SearchDropDown-exit-active .SearchDropDown-content{transform:scaleY(0);transition:transform .2s ease-out .1s}}.SearchDropDown-inputContainer{background-color:#005594}.SearchDropDown-inputContainerPro{background-color:#27313c}.SearchDropDown-inputContainerIC{background-color:#071d39}.SearchDropDown-inputContainer,.SearchDropDown-inputContainerIC,.SearchDropDown-inputContainerPro{opacity:1;padding:20px;position:relative;z-index:2}@media (min-width:360px){.SearchDropDown-inputContainer,.SearchDropDown-inputContainerIC,.SearchDropDown-inputContainerPro{padding-top:45px}}@media (min-width:760px){.SearchDropDown-inputContainer,.SearchDropDown-inputContainerIC,.SearchDropDown-inputContainerPro{padding:15px 0 25px}.SearchDropDown-inputContainer>*,.SearchDropDown-inputContainerIC>*,.SearchDropDown-inputContainerPro>*{opacity:1}.SearchDropDown-enter .SearchDropDown-inputContainer>*,.SearchDropDown-enter .SearchDropDown-inputContainerIC>*,.SearchDropDown-enter .SearchDropDown-inputContainerPro>*{opacity:0!important}.SearchDropDown-enter-active .SearchDropDown-inputContainer>*,.SearchDropDown-enter-active .SearchDropDown-inputContainerIC>*,.SearchDropDown-enter-active .SearchDropDown-inputContainerPro>*{opacity:1!important;transition:opacity .1s ease-in .3s}.SearchDropDown-exit .SearchDropDown-inputContainer>*,.SearchDropDown-exit .SearchDropDown-inputContainerIC>*,.SearchDropDown-exit .SearchDropDown-inputContainerPro>*{opacity:1!important}.SearchDropDown-exit-active .SearchDropDown-inputContainer>*,.SearchDropDown-exit-active .SearchDropDown-inputContainerIC>*,.SearchDropDown-exit-active .SearchDropDown-inputContainerPro>*{opacity:0!important;transition:transform .1s ease-out}}@media (min-width:1020px){.SearchDropDown-inputContainer,.SearchDropDown-inputContainerIC,.SearchDropDown-inputContainerPro{background-color:#fff;padding:10px 20px 0}.SearchDropDown-inputContainer input[type=search]::-webkit-search-cancel-button,.SearchDropDown-inputContainerIC input[type=search]::-webkit-search-cancel-button,.SearchDropDown-inputContainerPro input[type=search]::-webkit-search-cancel-button{-webkit-appearance:none}.SearchDropDown-inputContainer input[type=search]::-webkit-search-cancel-button,.SearchDropDown-inputContainer input[type=search]::-webkit-search-decoration,.SearchDropDown-inputContainer input[type=search]::-webkit-search-results-button,.SearchDropDown-inputContainer input[type=search]::-webkit-search-results-decoration,.SearchDropDown-inputContainerIC input[type=search]::-webkit-search-cancel-button,.SearchDropDown-inputContainerIC input[type=search]::-webkit-search-decoration,.SearchDropDown-inputContainerIC input[type=search]::-webkit-search-results-button,.SearchDropDown-inputContainerIC input[type=search]::-webkit-search-results-decoration,.SearchDropDown-inputContainerPro input[type=search]::-webkit-search-cancel-button,.SearchDropDown-inputContainerPro input[type=search]::-webkit-search-decoration,.SearchDropDown-inputContainerPro input[type=search]::-webkit-search-results-button,.SearchDropDown-inputContainerPro input[type=search]::-webkit-search-results-decoration{display:none}.SearchDropDown-inputContainer button,.SearchDropDown-inputContainerIC button,.SearchDropDown-inputContainerPro button{right:0;width:30px}.SearchDropDown-inputContainer button:before,.SearchDropDown-inputContainerIC button:before,.SearchDropDown-inputContainerPro button:before{font-size:20px;line-height:36px}.SearchDropDown-inputContainer input,.SearchDropDown-inputContainerIC input,.SearchDropDown-inputContainerPro input{border-bottom:1px solid #979797;font-size:14px;height:35px;padding:0 40px 0 0}}.SearchDropDown-contentContainer{background-color:#fff;opacity:1;z-index:1}@media (min-width:760px){.SearchDropDown-enter .SearchDropDown-contentContainer{opacity:0!important}.SearchDropDown-enter-active .SearchDropDown-contentContainer{opacity:1!important;transition:opacity .1s ease-in .3s}.SearchDropDown-exit .SearchDropDown-contentContainer{opacity:1!important}.SearchDropDown-exit-active .SearchDropDown-contentContainer{opacity:0!important;transition:opacity .1s ease-out}}.SearchDropDown-contentWrapper{flex-grow:1;overflow-x:hidden;padding:0;position:relative}@media (min-width:1020px){.SearchDropDown-contentWrapper{max-width:1200px}}@media (min-width:1340px){.SearchDropDown-contentWrapper{max-width:1350px}}.SignInMenu-accountContainer,.SignInMenu-signInContainer,.SignInMenu-signInContainerBtn{align-items:center;bottom:auto;display:block;float:right;margin:18px auto 0;position:absolute;right:0;top:auto;transition:transform .25s,height .25s}@media (max-width:759px){.SignInMenu-accountContainer,.SignInMenu-signInContainer,.SignInMenu-signInContainerBtn{display:none}}@media (max-width:1019px){.SignInMenu-accountContainer{right:20px}}@media (min-width:1020px){.SignInMenu-accountContainerNextToSubscribeMenu{right:135px}}@media (min-width:760px){.SignInMenu-signInContainerBtn{right:22px}}@media (min-width:1020px){.SignInMenu-signInContainerBtn{right:180px}}@media (min-width:760px){.SignInMenu-signInContainer{right:22px}}@media (min-width:1020px){.SignInMenu-signInContainer{right:0}}.SignInMenu-signInContainerSticky{display:none}.SignInMenu-accountMenu,.SignInMenu-accountMenuIC,.SignInMenu-accountMenuPro,.SignInMenu-signInMenu{color:#fff;display:flex;font-size:12px;font-weight:700;letter-spacing:1px;line-height:12px;text-transform:uppercase}@media (min-width:1020px){.SignInMenu-accountMenu:hover,.SignInMenu-accountMenuIC:hover,.SignInMenu-accountMenuPro:hover,.SignInMenu-signInMenu:hover{color:#fcb700}.SignInMenu-accountMenu:hover .SignInMenu-dropdownUpArrow,.SignInMenu-accountMenuIC:hover .SignInMenu-dropdownUpArrow,.SignInMenu-accountMenuPro:hover .SignInMenu-dropdownUpArrow,.SignInMenu-signInMenu:hover .SignInMenu-dropdownUpArrow{background:#fcb700;mask-image:url(https://static-redesign.cnbcfm.com/dist/24f214b19a613fd9a0e2.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/24f214b19a613fd9a0e2.svg)}.SignInMenu-accountMenu:hover .SignInMenu-dropdownArrow,.SignInMenu-accountMenuIC:hover .SignInMenu-dropdownArrow,.SignInMenu-accountMenuPro:hover .SignInMenu-dropdownArrow,.SignInMenu-signInMenu:hover .SignInMenu-dropdownArrow{background:#fcb700;mask-image:url(https://static-redesign.cnbcfm.com/dist/95a89411c4cb62dc5920.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/95a89411c4cb62dc5920.svg)}}.SignInMenu-accountMenu,.SignInMenu-accountMenuIC,.SignInMenu-accountMenuPro{font-size:12px;line-height:14px;margin:0}@media (min-width:1020px){.SignInMenu-accountMenuPro:hover{color:#00a857}.SignInMenu-accountMenuPro:hover .SignInMenu-dropdownUpArrow{background:#00a857;mask-image:url(https://static-redesign.cnbcfm.com/dist/24f214b19a613fd9a0e2.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/24f214b19a613fd9a0e2.svg)}.SignInMenu-accountMenuPro:hover .SignInMenu-dropdownArrow{background:#00a857;mask-image:url(https://static-redesign.cnbcfm.com/dist/95a89411c4cb62dc5920.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/95a89411c4cb62dc5920.svg)}.SignInMenu-accountMenuIC:hover{color:#0496ff}.SignInMenu-accountMenuIC:hover .SignInMenu-dropdownUpArrow{background:#0496ff;mask-image:url(https://static-redesign.cnbcfm.com/dist/24f214b19a613fd9a0e2.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/24f214b19a613fd9a0e2.svg)}.SignInMenu-accountMenuIC:hover .SignInMenu-dropdownArrow{background:#0496ff;mask-image:url(https://static-redesign.cnbcfm.com/dist/95a89411c4cb62dc5920.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/95a89411c4cb62dc5920.svg)}}.SignInMenu-dropdownUpArrow{margin-top:3px;mask-image:url(https://static-redesign.cnbcfm.com/dist/24f214b19a613fd9a0e2.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/24f214b19a613fd9a0e2.svg)}.SignInMenu-dropdownArrow,.SignInMenu-dropdownUpArrow{background:#fff;height:12px;margin-left:7px;width:12px}.SignInMenu-dropdownArrow{mask-image:url(https://static-redesign.cnbcfm.com/dist/95a89411c4cb62dc5920.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/95a89411c4cb62dc5920.svg)}.SignInMenu-navLinks{box-shadow:0 1px 3px 1px rgba(0,0,0,.08);height:185px;margin-top:10px;position:absolute;right:0;width:187px;z-index:10}.SignInMenu-primaryLink ul li{align-self:center;background:#fff;border-bottom:2px solid #f3f5f7;height:37px;position:relative}.SignInMenu-primaryLink ul li:last-child{border-bottom:none}.SignInMenu-primaryLink ul li a{color:#005594;font-size:12px;font-weight:500;letter-spacing:1.32168px;line-height:18.5px;padding:10px 0 10px 20px;position:absolute;text-transform:uppercase;width:100%}.SignInMenu-primaryLink ul li:first-child a{color:#747474;cursor:default;display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:160px}.SignInMenu-primaryLink ul li:not(:first-child):hover{background:#f3f5f7}.SignInMenu-primaryLink ul li:not(:first-child):hover a{font-weight:700}.SignInMenu-underlineLabel{border-bottom:1px solid #071d39;padding-bottom:3px}.SubscribeMenu-subscribeContainer{margin-top:6px}.SubscribeMenu-subscribeBtn{align-items:center;background-color:#fff;border-radius:7px;color:#071d39;display:flex;font-size:12px;font-weight:600;justify-content:space-between;letter-spacing:1.32168px;padding:2px 8px;text-transform:uppercase;width:115px}.SubscribeMenu-subscribeBtn:hover{background:#cfd8e2}.SubscribeMenu-subscribeBtnExpanded{border-radius:7px 7px 0 0}.SubscribeMenu-navLinks{display:flex;flex-direction:column}.SubscribeMenu-link{background-color:#fff;border-top:.5px solid #d9d9d9;font-size:11px;font-weight:600;letter-spacing:1.2px;padding:3px 5px;text-transform:uppercase}.SubscribeMenu-link:last-of-type{border-radius:0 0 7px 7px;box-shadow:0 5px 5px 0 rgba(0,0,0,.3);-webkit-box-shadow:0 5px 5px 0 rgba(0,0,0,.3);-moz-box-shadow:0 5px 5px 0 rgba(0,0,0,.3)}.SubscribeMenu-icLink{color:#336aa0!important}.SubscribeMenu-icLink:hover{color:#1896ff!important}.SubscribeMenu-proLink{color:#008456!important}.SubscribeMenu-proLink:hover{color:#00a857!important}.SubscribeMenu-upArrow{margin-top:4px;mask-image:url(https://static-redesign.cnbcfm.com/dist/24f214b19a613fd9a0e2.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/24f214b19a613fd9a0e2.svg)}.SubscribeMenu-downArrow,.SubscribeMenu-upArrow{background:#071d39;display:block;height:12px;width:12px}.SubscribeMenu-downArrow{margin-bottom:2px;mask-image:url(https://static-redesign.cnbcfm.com/dist/95a89411c4cb62dc5920.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/95a89411c4cb62dc5920.svg)}.SignUpMenu-signUpContainer{align-items:center;bottom:auto;display:block;float:right;margin:8px auto 0;position:absolute;right:0;top:auto;transition:transform .25s,height .25s}@media (max-width:759px){.SignUpMenu-signUpContainer{display:none}}@media (min-width:760px){.SignUpMenu-signUpContainer{display:none}}@media (min-width:1020px){.SignUpMenu-signUpContainer{display:block;right:0}}.SignUpMenu-signUpContainerSticky{display:none}.SignUpMenu-signUpMenu{background-color:#fff;border-radius:2px;color:#002f6c;display:flex;font-size:11px;font-weight:700;letter-spacing:1px;line-height:8px;margin-top:6px;text-transform:uppercase}@media (min-width:1020px){.SignUpMenu-signUpMenu:hover{background-color:#cfd8e2;color:#002f6c}}.SignUpMenu-signUpMenu a{color:#002f6c;padding:6px}.SignUpMenu-signUpMenu a:hover{color:#002f6c}.CNBCGlobalNav-mobileNavMenu{display:block;transition:transform .5s ease-in-out}@media (min-width:760px){.CNBCGlobalNav-mobileNavMenu{display:none}}.CNBCGlobalNav-desktopNavMenu{display:none;transition:transform .5s ease-in-out}@media (min-width:760px){.CNBCGlobalNav-desktopNavMenu{display:block}}.CNBCGlobalNav-globalNavigation,.CNBCGlobalNav-globalNavigationIC,.CNBCGlobalNav-globalNavigationPro{position:relative}@media (min-width:760px){.CNBCGlobalNav-globalNavigation,.CNBCGlobalNav-globalNavigationIC,.CNBCGlobalNav-globalNavigationPro{background-color:#005594;height:85px;position:relative;top:0;transition:all .25s;width:100%;z-index:0}.CNBCGlobalNav-globalNavigation.CNBCGlobalNav-sticky,.CNBCGlobalNav-globalNavigationIC.CNBCGlobalNav-sticky,.CNBCGlobalNav-globalNavigationPro.CNBCGlobalNav-sticky{height:45px}}@media (min-width:1020px){.CNBCGlobalNav-globalNavigation.CNBCGlobalNav-sticky,.CNBCGlobalNav-globalNavigationIC.CNBCGlobalNav-sticky,.CNBCGlobalNav-globalNavigationPro.CNBCGlobalNav-sticky{height:50px}.CNBCGlobalNav-globalNavigation:after,.CNBCGlobalNav-globalNavigationIC:after,.CNBCGlobalNav-globalNavigationPro:after{background-color:#005594;content:"";height:70px;left:0;position:absolute;top:0;width:100%;z-index:-1}}@media (min-width:760px){.CNBCGlobalNav-globalNavigationPro{background-color:#27313c;transition:background-color .5s ease-in}}@media (min-width:1020px){.CNBCGlobalNav-globalNavigationPro:after{background-color:#27313c;transition:background-color .5s ease-in}}@media (min-width:760px){.CNBCGlobalNav-globalNavigationIC{background-color:#071d39;transition:background-color .5s ease-in}}@media (min-width:1020px){.CNBCGlobalNav-globalNavigationIC:after{background-color:#071d39;transition:background-color .5s ease-in}}@media (min-width:760px){.CNBCGlobalNav-globalNavigationSticky,.CNBCGlobalNav-globalNavigationStickyIC,.CNBCGlobalNav-globalNavigationStickyPro{height:45px}}@media (min-width:1020px){.CNBCGlobalNav-globalNavigationSticky,.CNBCGlobalNav-globalNavigationStickyIC,.CNBCGlobalNav-globalNavigationStickyPro{height:50px}}.CNBCGlobalNav-globalNavigationSticky.CNBCGlobalNav-globalNavigationArticle,.CNBCGlobalNav-globalNavigationStickyIC.CNBCGlobalNav-globalNavigationArticle,.CNBCGlobalNav-globalNavigationStickyPro.CNBCGlobalNav-globalNavigationArticle{background:#fff}@media (min-width:1020px){.CNBCGlobalNav-globalNavigationSticky:after,.CNBCGlobalNav-globalNavigationStickyIC:after,.CNBCGlobalNav-globalNavigationStickyPro:after{display:none}}.CNBCGlobalNav-container{-webkit-backface-visibility:hidden;backface-visibility:hidden;position:fixed;top:0;width:100%;z-index:1999}@media (min-width:1020px){.CNBCGlobalNav-gridContainer{margin:0 auto;max-width:100%}}@media (min-width:1020px) and (min-width:760px){.CNBCGlobalNav-gridContainer{max-width:678px}}@media (min-width:1020px) and (min-width:1020px){.CNBCGlobalNav-gridContainer{max-width:960px}}@media (min-width:1020px) and (min-width:1340px){.CNBCGlobalNav-gridContainer{max-width:1290px}}@media (min-width:1020px){.CNBCGlobalNav-wrapper{flex-grow:0;flex-shrink:0;max-width:calc(225% - 30px);max-width:100%!important;min-width:calc(225% - 30px);position:relative}}@media (min-width:1020px) and (min-width:760px){.CNBCGlobalNav-wrapper{max-width:calc(75% - 30px);min-width:calc(75% - 30px)}}@media (min-width:1020px) and (min-width:1020px){.CNBCGlobalNav-wrapper{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media screen and (min-width:1020px) and (min-width:1020px) and (-ms-high-contrast:none){.CNBCGlobalNav-wrapper{max-width:100%;min-width:100%}}@media (min-width:1020px) and (min-width:1340px){.CNBCGlobalNav-wrapper{max-width:calc(75% - 30px);min-width:calc(75% - 30px)}}@media (min-width:1340px){.CNBCGlobalNav-wrapper{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:1340px) and (min-width:760px){.CNBCGlobalNav-wrapper{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1340px) and (min-width:1020px){.CNBCGlobalNav-wrapper{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:1340px) and (min-width:1020px) and (-ms-high-contrast:none){.CNBCGlobalNav-wrapper{max-width:100%;min-width:100%}}@media (min-width:1340px) and (min-width:1340px){.CNBCGlobalNav-wrapper{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}.CNBCGlobalNav-progressBarContainer{display:none}@media (min-width:760px){.CNBCGlobalNav-progressBarContainer{display:block}}.CNBCGlobalNav-watchListContainer,.CNBCGlobalNav-watchListContainerLoggedIn{align-items:center;bottom:auto;color:#fff;display:flex;float:right;font-size:12px;font-weight:700;letter-spacing:1px;line-height:12px;margin:18px auto 0;padding-right:6px;position:absolute;right:240px;text-transform:uppercase;top:auto;transition:transform .25s,height .25s}@media (max-width:759px){.CNBCGlobalNav-watchListContainer,.CNBCGlobalNav-watchListContainerLoggedIn{display:none}}@media (min-width:760px){.CNBCGlobalNav-watchListContainer,.CNBCGlobalNav-watchListContainerLoggedIn{display:block;right:72px}}@media (min-width:1020px){.CNBCGlobalNav-watchListContainer,.CNBCGlobalNav-watchListContainerLoggedIn{right:50px}}.CNBCGlobalNav-watchListContainer:after,.CNBCGlobalNav-watchListContainerLoggedIn:after{content:"|";font-size:14px;padding-left:10px;padding-right:5px}.CNBCGlobalNav-watchListContainerBtn{align-items:center;bottom:auto;color:#fff;display:flex;float:right;font-size:12px;font-weight:700;letter-spacing:1px;line-height:12px;margin:18px auto 0;padding-right:6px;position:absolute;right:240px;text-transform:uppercase;top:auto;transition:transform .25s,height .25s}@media (max-width:759px){.CNBCGlobalNav-watchListContainerBtn{display:none}}@media (min-width:760px){.CNBCGlobalNav-watchListContainerBtn{right:72px}}@media (min-width:1020px){.CNBCGlobalNav-watchListContainerBtn{right:228px}}.CNBCGlobalNav-watchListContainerBtn:after{content:"|";font-size:14px;padding-left:10px;padding-right:5px}.CNBCGlobalNav-watchListContainerLoggedIn{right:110px;top:1px}@media (max-width:759px){.CNBCGlobalNav-watchListContainerLoggedIn{display:none}}@media (min-width:760px){.CNBCGlobalNav-watchListContainerLoggedIn{right:130px}}@media (min-width:1020px){.CNBCGlobalNav-watchListContainerLoggedIn{right:110px}.CNBCGlobalNav-watchListContainerLoggedInNextToSubscribeMenu{right:245px}}.CNBCGlobalNav-watchListContainerSticky{display:none}.CNBCGlobalNav-hoverPro a:hover{color:#00a857}.CNBCGlobalNav-hoverIC a:hover{color:#0496ff}
/*# sourceMappingURL=source-maps/CNBCGlobalNav-575281ad8d264efbc303.css.map*/
.MarketsBanner-container{background-color:#f2f2f2;margin-bottom:15px;padding:15px 20px;position:relative}@media (min-width:760px){.MarketsBanner-container{margin-bottom:15px;padding:15px 40px;top:16px}}@media (min-width:1020px){.MarketsBanner-container{background-color:#fff;display:flex;flex-direction:row;flex-wrap:wrap;margin:0 auto 30px;max-width:960px;padding:15px 0 0;top:16px;width:100%}}@media (min-width:1340px){.MarketsBanner-container{max-width:1290px;padding:15px 0 0}}@media (max-width:759px){.MarketsBanner-berkshireEvent{margin-bottom:0}}.MarketsBanner-main{border-top:1px solid hsla(0,0%,61%,.5);display:block;min-height:53px}.MarketsBanner-main h2{margin-bottom:0;margin-top:5px}@media (min-width:1020px){.MarketsBanner-main{flex:100%;min-height:59px}}@media (min-width:1340px){.MarketsBanner-main{order:3}}.MarketsBanner-marketData{-webkit-overflow-scrolling:touch;align-items:flex-start;display:flex;flex-direction:row;flex-wrap:nowrap;justify-content:space-between;margin:0 -20px;overflow-x:auto;overflow-y:hidden;padding:10px 0;position:relative}@media (min-width:760px){.MarketsBanner-marketData{margin-left:-40px;margin-right:-40px;padding:10px 0 0}}@media (min-width:1020px){.MarketsBanner-marketData{margin-left:0;margin-right:0}}.MarketsBanner-marketData::-webkit-scrollbar{display:none}.MarketsBanner-teaser{display:block;height:auto;margin-left:-20px;margin-right:-20px;overflow:hidden;padding:0 20px;position:relative}.MarketsBanner-teaser a{color:#000;display:block;font-size:17px;font-weight:600;line-height:1.2}.MarketsBanner-teaser a:focus,.MarketsBanner-teaser a:hover{color:#000;text-decoration:underline}.MarketsBanner-container .MarketsBanner-teaser{padding-top:15px}@media (min-width:760px){.MarketsBanner-teaser{padding:15px 20px 0}.MarketsBanner-teaser a{height:auto}}@media (min-width:1340px){.MarketsBanner-teaser{margin:0;order:2;padding:0 0 0 15px}.MarketsBanner-container .MarketsBanner-teaser{padding-top:0}}.MarketsBanner-ad{height:0;margin-top:auto;overflow:hidden;width:0}@media (min-width:1020px){.MarketsBanner-ad{height:32px;margin-left:9px;width:89px}}@media (min-width:1340px){.MarketsBanner-ad{margin-left:25px}}.MarketsBannerMenu-container{align-items:baseline;display:flex;flex-direction:row;justify-content:space-between;margin-bottom:3px}@media (max-width:759px){.MarketsBannerMenu-container{margin-bottom:-2px;overflow-x:auto;overflow-y:hidden;padding-bottom:5px}.MarketsBannerMenu-container::-webkit-scrollbar{display:none}}@media (min-width:760px){.MarketsBannerMenu-container{justify-content:flex-start}}@media (min-width:1340px){.MarketsBannerMenu-container{margin-bottom:3px;order:1;position:relative}.MarketsBannerMenu-container:after{background-color:hsla(0,0%,61%,.5);bottom:0;content:"";display:block;height:13px;margin:auto;position:absolute;right:0;top:0;width:1px}}.MarketsBannerMenu-marketOption{color:#747474;font-size:14px;font-weight:600;letter-spacing:.23px;line-height:1.2;margin:0 10px;position:relative;transition:color .15s linear;white-space:nowrap}.MarketsBannerMenu-marketOption:focus,.MarketsBannerMenu-marketOption:hover{color:#2e2e2e}.MarketsBannerMenu-marketOption:first-child{margin-left:0}.MarketsBannerMenu-marketOption:last-child{margin-right:0}@media (min-width:760px){.MarketsBannerMenu-marketOption{font-size:14px;letter-spacing:.5px;padding-bottom:3px}}@media (min-width:1340px){.MarketsBannerMenu-marketOption{margin:0 7px}.MarketsBannerMenu-marketOption:first-child{margin-left:0}.MarketsBannerMenu-marketOption:last-child{margin-right:16px}}.MarketsBannerMenu-activeMarket{color:#005594;font-weight:700}.MarketsBannerMenu-activeMarket:after{background-color:#005594;bottom:-5px;content:"";display:block;height:3px;left:0;position:absolute;width:100%}.MarketsBannerMenu-activeMarket:focus,.MarketsBannerMenu-activeMarket:hover{color:#005594}@media (min-width:1340px){.MarketsBannerMenu-activeMarket:after{bottom:auto;height:2px}}.MarketCard-container{background-color:#9b9b9b;color:#fff;display:block;height:66px;margin:0 5px;max-width:152px;min-width:152px;position:relative}.MarketCard-container:focus,.MarketCard-container:hover{color:hsla(0,0%,100%,.9)}.MarketCard-container:first-child{margin-left:20px}.MarketCard-container:nth-child(5):after{content:"";display:block;height:1px;position:absolute;right:-20px;width:20px}.MarketCard-container:last-child{box-sizing:content-box;margin-right:0;padding-right:20px}@media (min-width:760px){.MarketCard-container{height:62px;margin-left:7px}.MarketCard-container:first-child{margin-left:40px}.MarketCard-container:nth-child(5):after{content:"";display:block;height:1px;position:absolute;right:-40px;width:40px}.MarketCard-container:last-child{padding-right:40px}}@media (min-width:1020px){.MarketCard-container{height:66px;margin:0 7px;max-width:160px;min-width:160px}.MarketCard-container:first-child{margin-left:0}.MarketCard-container:last-child{margin-right:0;padding-right:0}}@media (min-width:1340px){.MarketCard-container{margin:0 25px;max-width:190px;min-width:190px}.MarketCard-container:first-child{margin-left:0}.MarketCard-container:last-child{margin-right:0}}.MarketCard-symbol{font-size:13px;font-weight:700;line-height:1.2}.MarketCard-stockPosition{font-size:13px;font-weight:600;line-height:1.2}.MarketCard-row{align-items:center;display:flex;flex-direction:row;height:33.33%;justify-content:space-between;padding:0 10px;width:100%}.MarketCard-row:first-child{transform:translateY(2px)}.MarketCard-row:last-child{transform:translateY(-2px)}.MarketCard-down{background-color:#ce2b2b}.MarketCard-up{background-color:#008456}.MarketCard-triangle-down,.MarketCard-triangle-up{border-left:5px solid transparent;border-right:5px solid transparent;height:0;width:0}.MarketCard-triangle-up{border-bottom:10px solid #fff}.MarketCard-container:focus .MarketCard-triangle-up,.MarketCard-container:hover .MarketCard-triangle-up{border-bottom:10px solid hsla(0,0%,100%,.9)}.MarketCard-triangle-down{border-top:10px solid #fff}.MarketCard-container:focus .MarketCard-triangle-down,.MarketCard-container:hover .MarketCard-triangle-down{border-top:10px solid hsla(0,0%,100%,.9)}.MarketCard-changeData{align-items:center;display:flex;flex-direction:row;margin-left:auto}.MarketCard-changesPct,.MarketCard-changesPts{font-size:13px;line-height:1.16;position:relative}.MarketCard-changesPct{font-weight:500;margin-left:5px}@media (min-width:1020px){.MarketCard-changesPct{margin-left:7px}}.MarketCard-changesPts{font-weight:600}.MarketCard-lastTime{font-size:9px;font-weight:600;opacity:.7}@media (max-width:759px){.MarketCard-container{height:86px;max-width:142px;min-width:142px}.MarketCard-row:first-child{align-items:flex-start;flex-direction:column;height:44%;justify-content:space-evenly;transform:translateY(2px)}.MarketCard-row:nth-child(2){height:28%;transform:translateY(2px)}.MarketCard-row:nth-child(3){height:28%;transform:translateY(0)}.MarketCard-wrap .MarketCard-changeData{flex-direction:column}.MarketCard-wrap .MarketCard-row:nth-child(2){height:28%;transform:translateY(0)}.MarketCard-wrap .MarketCard-triangle-down,.MarketCard-wrap .MarketCard-triangle-up{transform:translateY(2px)}}
/*# sourceMappingURL=source-maps/components-PcmModule-MarketsBanner-c7d8da93080b160b4d03.css.map*/
.QuickLinks-container{display:block;margin-bottom:20px;position:relative}@media (min-width:1020px){.QuickLinks-container{display:flex;margin:0 auto 20px;overflow:hidden;padding-left:0;width:960px}}@media (min-width:1340px){.QuickLinks-container{width:1290px}}.QuickLinks-scrollableContainer{-ms-overflow-style:none;-webkit-overflow-scrolling:touch;overflow-x:scroll;overflow-y:hidden;padding-left:20px;scrollbar-width:none;white-space:nowrap}.QuickLinks-scrollableContainer::-webkit-scrollbar{display:none}@media (min-width:760px){.QuickLinks-scrollableContainer{margin-bottom:-15px;padding-bottom:15px;padding-left:45px;white-space:nowrap}}@media (min-width:1020px){.QuickLinks-scrollableContainer{-webkit-overflow-scrolling:auto;padding-left:0}}.QuickLinks-leftGradient:after{background-image:linear-gradient(270deg,#fff,hsla(0,0%,100%,0) 106%);content:"";height:40px;left:0;pointer-events:none;position:absolute;transform:rotate(-180deg);width:40px;z-index:1}@media (max-width:1019px){.QuickLinks-leftGradient:after{display:none}}@supports (-ms-high-contrast:none){.QuickLinks-leftGradient:after{background:transparent}}@supports (-ms-accelerator:true){.QuickLinks-leftGradient:after{background:transparent}}.QuickLinks-rightGradient:before{background-image:linear-gradient(270deg,#fff,hsla(0,0%,100%,0) 106%);content:"";height:40px;pointer-events:none;position:absolute;right:0;width:40px;z-index:1}@media (max-width:1019px){.QuickLinks-rightGradient:before{display:none}}@supports (-ms-high-contrast:none){.QuickLinks-rightGradient:before{background:transparent}}@supports (-ms-accelerator:true){.QuickLinks-rightGradient:before{background:transparent}}.QuickLinks-desktopHeader{color:#414042;display:none;font-size:14px;font-weight:600;letter-spacing:.154px;line-height:20px;padding-right:10px;white-space:nowrap}@media (min-width:1020px){.QuickLinks-desktopHeader{display:inline}}.QuickLinks-deviceHeader{display:block;margin-bottom:5px;padding-left:20px}@media (min-width:760px){.QuickLinks-deviceHeader{padding-left:45px}}@media (min-width:1020px){.QuickLinks-deviceHeader{display:none}}.QuickLinks-quickLink{background:#edeff3;border-radius:4px;font-size:15px;font-weight:600;letter-spacing:.2375px;line-height:35px;margin-right:10px;padding:6.5px 20px;text-align:center;white-space:nowrap}.QuickLinks-quickLink:last-child{margin-right:20px}@media (min-width:760px){.QuickLinks-quickLink:last-child{margin-right:45px}}@media (min-width:1020px){.QuickLinks-quickLink:last-child{margin-right:0}}.QuickLinks-quickLink a{color:#005594}@media (min-width:1020px){.QuickLinks-mobileOnly{display:none}}
/*# sourceMappingURL=source-maps/components-PcmModule-QuickLinks-d75ce08e366a64559f4d.css.map*/
.FeaturedThumbnail-mediaContainer{display:none}@media (min-width:760px){.FeaturedThumbnail-mediaContainer{bottom:14px;display:block;position:relative}}.FeaturedThumbnail-featuredVideoContainer{height:90px;position:absolute;width:119.01px}.FeaturedThumbnail-playButton{position:relative}.FeaturedThumbnail-videoBackdrop{background:linear-gradient(180deg,hsla(0,0%,100%,0) 56%,rgba(0,0,0,.6) 74%,rgba(0,0,0,.6));height:100%;width:100%}.FeaturedThumbnail-videoText{bottom:0;color:#fcb700;font-size:10px;font-weight:800;letter-spacing:2px;line-height:12.18px;margin:0 0 10px 10px;position:absolute;text-transform:uppercase}.FeaturedThumbnail-videoDuration{color:#fff;font-size:10px;font-weight:700;letter-spacing:1.44px;line-height:12px;margin-left:10px;text-align:left}@media (max-width:1020px){.FeaturedThumbnail-imageStyle{height:90px;width:119.01px}}@media (max-width:360px){.FeaturedThumbnail-imageStyle{height:90px;width:119.01px}}.FeaturedThumbnail-promoImage{display:block;height:90px;width:119.01px}.ProIconWithBorder-container{display:none}@media (min-width:1020px){.ProIconWithBorder-container{display:flex}}.ProIconWithBorder-pcpContainer{display:none}@media (min-width:1020px){.ProIconWithBorder-pcpContainer{display:block;position:relative;top:7px}}.ProIconWithBorder-divider{border-bottom:1px dashed #747474;flex:1;margin:5px 18px 5px 0;max-width:94%}.ProIconWithBorder-logo{display:block;float:right;height:22px;width:130px}.ProHeadline-headlineCard{border-bottom:1px dashed #747474;padding-bottom:12px}.ProHeadline-eyebrow a{color:#002f6c;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-weight:700;letter-spacing:1.5px;line-height:16px;text-transform:uppercase}.ProHeadline-eyebrow a:focus,.ProHeadline-eyebrow a:hover{color:#fcb700;text-decoration:underline}.ProHeadline-eyebrow{margin-top:16px}.ProHeadline-headline{margin-top:4px}.ProHeadline-headline a{color:#171717;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:600;line-height:20px;margin:4px 0}.ProHeadline-headline a:focus,.ProHeadline-headline a:hover{color:#171717;text-decoration:underline}@media (max-width:759px){.ProHeadline-headline a{font-size:14px;line-height:18px}}.ProHeadline-pcpUnderline{border-bottom:1px solid #d9d9d9}.ProHeadline-videoIndicatorImage{display:inline-block;height:14px;margin-left:5px;width:14px}.ProHeadlines-container{overflow:hidden;padding-top:0}@media (min-width:1020px){.ProHeadlines-container{padding-left:27px}.ProHeadlines-pcpProHeadlinesContainer{margin-top:-20px}}.ProHeadlines-collapsedContainer{display:flex;gap:30px}.ProHeadlines-proArticlesBelowVideoContainer{margin-top:20px;width:calc(55% - 15px)}.ProHeadlines-featuredCard{border-bottom:1px dashed #747474;display:block;padding-bottom:12px}.ProHeadlines-featuredVideo{border-bottom:1px dashed #747474;display:flex;padding-bottom:12px}.ProHeadlines-featuredEyebrow a{color:#002f6c;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-weight:700;letter-spacing:1.5px;line-height:16px;text-transform:uppercase}.ProHeadlines-featuredEyebrow a:focus,.ProHeadlines-featuredEyebrow a:hover{color:#fcb700;text-decoration:underline}.ProHeadlines-featuredEyebrow{margin-top:18px}@media (min-width:760px){.ProHeadlines-featuredEyebrow{margin-top:32px}}@media (min-width:1020px){.ProHeadlines-featuredEyebrow{margin-top:16px}}.ProHeadlines-featuredHeadline{margin-top:4px}.ProHeadlines-featuredHeadline a{color:#171717;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:18px;font-weight:600;letter-spacing:.03px;line-height:22px}.ProHeadlines-featuredHeadline a:focus,.ProHeadlines-featuredHeadline a:hover{color:#171717;text-decoration:underline}@media (min-width:760px){.ProHeadlines-featuredHeadline a{font-size:22px;line-height:26px}}@media (min-width:1020px){.ProHeadlines-featuredHeadline a{font-size:18px;line-height:22px}}@media (min-width:1340px){.ProHeadlines-featuredHeadline a{font-size:22px;line-height:26px}}.ProHeadlines-summary{color:#171717;display:block;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:18px;font-weight:400;letter-spacing:-.001em;line-height:24px;margin-top:4px;text-align:left}@media (max-width:1339px){.ProHeadlines-summary{font-size:16px;line-height:19.49px}}@media (max-width:1019px){.ProHeadlines-summary{display:none}}.ProHeadlines-featuredVideoImage{display:inline-block;height:14px;margin-left:5px;width:14px}@media (min-width:1020px){.ProHeadlines-featuredVideoImage{display:none}}.ProHeadlines-buttonContainer{position:relative}.ProHeadlines-collapseButton,.ProHeadlines-expandButton{color:#002f6c;display:flex;justify-content:center;margin-top:24px;width:100%;z-index:99}.ProHeadlines-collapseButton{background-image:url(https://static-redesign.cnbcfm.com/dist/510b37b77304b13eb511.svg);background-repeat:no-repeat;background-size:contain;height:30px;margin-left:auto;margin-right:auto;width:30px}@media (max-width:759px){.ProHeadlines-collapseButton{height:12px;margin-top:20px;width:20px}}.ProHeadlines-expandButton{border:1px solid #002f6c;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-weight:700;letter-spacing:1.09px;line-height:12px;padding-bottom:14px;padding-top:14px;text-transform:uppercase}.ProHeadlines-dropdownArrow{background:#002f6c;height:12px;margin-left:8px;mask-image:url(https://static-redesign.cnbcfm.com/dist/95a89411c4cb62dc5920.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/95a89411c4cb62dc5920.svg);width:12px}.ProLiveTVWithSelections-container{background-color:#171717;border-radius:4px;left:0;padding-top:56.25%;position:relative;top:0;width:100%}.ProPlayerChannel-channelContainer{background-color:#171717;display:block;height:100%;overflow:hidden;width:100%}.ProPlayerChannel-channelContainer *{box-sizing:border-box}.ProPlayerChannel-pcpChannelContainer{border-radius:4px}.ProPlayerChannel-channelHolder{background-color:#171717;display:flex;flex-wrap:wrap;justify-content:center;padding:0 8px;width:100%}@media (max-width:1019px){.ProPlayerChannel-channelHolder{align-items:center;flex-direction:column}}.ProPlayerChannel-leftContainer{display:block;width:295px}@media (max-width:1339px){.ProPlayerChannel-leftContainer{display:none}}.ProPlayerChannel-channels,.ProPlayerChannel-rightContainer{display:flex;text-align:center}.ProPlayerChannel-channels{background:rgba(60,184,120,.2);border-radius:26px;flex-direction:row;height:31px;margin-bottom:16px;margin-top:16px;position:relative;width:336px}.ProPlayerChannel-channels .ProPlayerChannel-slider{background-color:#3cb878;border-radius:30px;height:31px;left:0;position:absolute;top:0;transition:left .2s ease-in-out;width:33.33%}@media (max-width:759px){.ProPlayerChannel-channels .ProPlayerChannel-slider{width:88px}}.ProPlayerChannel-channels .ProPlayerChannel-buttonContainer{display:flex;flex-wrap:nowrap;width:100%}.ProPlayerChannel-channels .ProPlayerChannel-buttonContainer .ProPlayerChannel-selector{color:#fff;cursor:pointer;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:700;height:31px;line-height:17px;transition:color .2s ease-in;width:33.33%;z-index:1}.ProPlayerChannel-channels .ProPlayerChannel-buttonContainer .ProPlayerChannel-activeStream{color:#000}@media (max-width:759px){.ProPlayerChannel-channels{width:264px}}.ProPlayerChannel-embeddedPlayerSpacing{align-items:center;flex-direction:column}.ProPlayerChannel-embeddedPlayerSpacing .ProPlayerChannel-rightContainer{justify-content:space-around;padding:0 22px 16px;text-align:center;width:295px}@media (max-width:1019px){.ProPlayerChannel-embeddedPlayerSpacing .ProPlayerChannel-rightContainer{padding:0 16px 16px;width:300px}}@media (max-width:759px){.ProPlayerChannel-embeddedPlayerSpacing .ProPlayerChannel-rightContainer{padding:0 22px 16px;width:300px}}.ProPlayerChannel-embeddedPlayerSpacing .ProPlayerChannel-channels{background:rgba(60,184,120,.2);border-radius:26px;flex-direction:row;height:31px;margin-bottom:16px;margin-top:16px;position:relative;width:336px}.ProPlayerChannel-embeddedPlayerSpacing .ProPlayerChannel-channels .ProPlayerChannel-slider{background-color:#3cb878;border-radius:30px;height:31px;left:0;position:absolute;top:0;transition:left .2s ease-in-out;width:33.33%}.ProPlayerChannel-embeddedPlayerSpacing .ProPlayerChannel-channels .ProPlayerChannel-buttonContainer{display:flex;flex-wrap:nowrap;width:100%}.ProPlayerChannel-embeddedPlayerSpacing .ProPlayerChannel-channels .ProPlayerChannel-buttonContainer .ProPlayerChannel-selector{color:#fff;cursor:pointer;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:700;height:31px;line-height:17px;transition:color .2s ease-in;width:33.33%;z-index:1}.ProPlayerChannel-embeddedPlayerSpacing .ProPlayerChannel-channels .ProPlayerChannel-buttonContainer .ProPlayerChannel-activeStream{color:#000}@media (max-width:1019px){.ProPlayerChannel-embeddedPlayerSpacing .ProPlayerChannel-channels{width:276px}}@media (max-width:759px){.ProPlayerChannel-embeddedPlayerSpacing .ProPlayerChannel-channels{width:264px}}.ProPlayerChannel-rightContainer{justify-content:space-around;padding:16px 22px;text-align:center;width:295px}@media (max-width:1019px){.ProPlayerChannel-rightContainer{padding:0 16px 16px;width:300px}}@media (max-width:759px){.ProPlayerChannel-rightContainer{padding:0 22px 16px;width:300px}}.ProPlayerChannel-rightContainer .ProPlayerChannel-linkButton{cursor:pointer;display:flex;text-decoration:none;transition:background-color .15s ease-in 50ms}.ProPlayerChannel-rightContainer .ProPlayerChannel-linkButton>.ProPlayerChannel-withEmphasis{height:26px;justify-content:center;padding:4px 0;transition:color .1s ease-in;width:133px}.ProPlayerChannel-rightContainer .ProPlayerChannel-linkButton>.ProPlayerChannel-noEmphasis{height:26px;justify-content:center;padding:4px 0;transition:color .1s ease-in}.ProPlayerChannel-rightContainer .ProPlayerChannel-noEmphasisIcon,.ProPlayerChannel-rightContainer .ProPlayerChannel-withEmphasisIcon{fill:#d9d9d9;margin-right:8px;margin-top:2px;transition:fill .1s ease-in}.ProPlayerChannel-rightContainer .ProPlayerChannel-linkButton:hover .ProPlayerChannel-noEmphasis,.ProPlayerChannel-rightContainer .ProPlayerChannel-linkButton:hover .ProPlayerChannel-withEmphasis{color:#3cb878}.ProPlayerChannel-rightContainer .ProPlayerChannel-linkButton:hover .ProPlayerChannel-noEmphasisIcon,.ProPlayerChannel-rightContainer .ProPlayerChannel-linkButton:hover .ProPlayerChannel-withEmphasisIcon{fill:#3cb878}.ProPlayerChannel-rightContainer .ProPlayerChannel-linkButton:active .ProPlayerChannel-withEmphasis{background-color:#3cb878;border-radius:30px;color:#171717}.ProPlayerChannel-rightContainer .ProPlayerChannel-linkButton:active .ProPlayerChannel-withEmphasisIcon{fill:#171717}.ProPlayerChannel-rightContainer .ProPlayerChannel-linkButton>span>img{display:inline-block;padding-right:8px;width:24px}.ProPlayerChannel-rightContainer .ProPlayerChannel-linkButton>span{color:#d9d9d9;display:inline-flex;flex-wrap:nowrap;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-style:normal;font-weight:700;text-decoration:none}@media (max-width:1019px){.ProPlayerChannel-rightContainer{flex-direction:row;margin-left:0;text-align:center;top:40px}}.ProPlayerToast-overlay{background-color:#171717;position:absolute;top:0;width:100%;z-index:1}.ProPlayerToast-toastMessageContainer{color:#fff;left:0;padding-top:12px;position:absolute;text-align:center;top:0;width:100%}.StreamToast-toastMessage{background-color:#171717;border-radius:3px;display:flex;flex-direction:column;justify-content:center;margin:auto;opacity:.85!important;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content}.StreamToast-textAndButton{color:#fff;display:flex;flex-direction:row;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-style:normal;font-weight:600;justify-content:center;line-height:22px;padding:12px 24px}.StreamToast-textAndButton .StreamToast-dismissButton{margin-left:18px}@media (max-width:425px){.StreamToast-textAndButton{font-size:12px;line-height:16px;padding:8px 12px}.StreamToast-textAndButton .StreamToast-dismissButton{height:14px;margin-left:10px;width:14px}}@media (max-width:1020px){.StreamToast-embeddedPlayerContainer{font-size:12px;line-height:16px;padding:8px 12px}.StreamToast-embeddedPlayerContainer .StreamToast-dismissButton{height:14px;margin-left:10px;width:14px}}@media (max-width:759px){.StreamToast-embeddedPlayerContainer{font-size:16px;line-height:24px;padding:12px 24px}.StreamToast-embeddedPlayerContainer .StreamToast-dismissButton{margin-left:18px}}@media (max-width:425px){.StreamToast-embeddedPlayerContainer{font-size:12px;line-height:16px;padding:8px 12px}.StreamToast-embeddedPlayerContainer .StreamToast-dismissButton{height:14px;margin-left:10px;width:14px}}.StreamToastWithCTA-toastMessage{background-color:#171717;border-radius:3px;color:#fff;display:flex;flex-direction:column;justify-content:center;margin:auto;opacity:.85!important;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content}.StreamToastWithCTA-textAndButton{display:flex;flex-direction:row;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-style:normal;font-weight:600;justify-content:center;line-height:22px;padding:12px 24px}.StreamToastWithCTA-textAndButton .StreamToastWithCTA-dismissButton{margin-left:18px}.StreamToastWithCTA-textAndButton .StreamToastWithCTA-switchButton{border:1px solid #fff;color:#fff;font-size:12px;font-style:normal;font-weight:700;letter-spacing:1.09px;line-height:12px;margin-left:18px;padding:10px 31px;text-transform:uppercase}@media (max-width:425px){.StreamToastWithCTA-textAndButton{font-size:12px;line-height:16px;padding:8px 12px}.StreamToastWithCTA-textAndButton .StreamToastWithCTA-switchButton{font-size:10px;line-height:12px;margin-left:10px;padding:5.5px 14.5px}.StreamToastWithCTA-textAndButton .StreamToastWithCTA-dismissButton{height:14px;margin-left:10px;width:14px}}@media (max-width:1020px){.StreamToastWithCTA-embeddedPlayerContainer{font-size:12px;line-height:16px;padding:8px 12px}.StreamToastWithCTA-embeddedPlayerContainer .StreamToastWithCTA-switchButton{font-size:10px;line-height:12px;margin-left:10px;padding:5.5px 14.5px}.StreamToastWithCTA-embeddedPlayerContainer .StreamToastWithCTA-dismissButton{height:14px;margin-left:10px;width:14px}}@media (max-width:759px){.StreamToastWithCTA-embeddedPlayerContainer{font-size:16px;line-height:24px;padding:12px 24px}.StreamToastWithCTA-embeddedPlayerContainer .StreamToastWithCTA-switchButton{font-size:12px;line-height:12px;margin-left:10px;padding:10px 31px}.StreamToastWithCTA-embeddedPlayerContainer .StreamToastWithCTA-dismissButton{margin-left:18px}}@media (max-width:425px){.StreamToastWithCTA-embeddedPlayerContainer{font-size:12px;line-height:16px;padding:8px 12px}.StreamToastWithCTA-embeddedPlayerContainer .StreamToastWithCTA-switchButton{font-size:10px;line-height:12px;margin-left:10px;padding:5.5px 14.5px}.StreamToastWithCTA-embeddedPlayerContainer .StreamToastWithCTA-dismissButton{height:14px;margin-left:10px;width:14px}}.StreamToastWithCTA-text{align-self:center}.StreamToastAutoSwitch-toastMessage{background-color:#171717;border-radius:3px;display:flex;flex-direction:column;justify-content:center;margin:auto;opacity:.85!important;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content}.StreamToastAutoSwitch-textAndButton{color:#fff;display:flex;flex-direction:row;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-style:normal;font-weight:600;justify-content:center;line-height:22px;padding:12px 24px}.StreamToastAutoSwitch-textAndButton .StreamToastAutoSwitch-dismissButton{margin-left:18px}@media (max-width:425px){.StreamToastAutoSwitch-textAndButton{font-size:12px;line-height:16px;padding:8px 12px}.StreamToastAutoSwitch-textAndButton .StreamToastAutoSwitch-dismissButton{height:14px;margin-left:10px;width:14px}}@media (max-width:1020px){.StreamToastAutoSwitch-embeddedPlayerContainer{font-size:12px;line-height:16px;padding:8px 12px}.StreamToastAutoSwitch-embeddedPlayerContainer .StreamToastAutoSwitch-dismissButton{height:14px;margin-left:10px;width:14px}}@media (max-width:759px){.StreamToastAutoSwitch-embeddedPlayerContainer{font-size:16px;line-height:24px;padding:12px 24px}.StreamToastAutoSwitch-embeddedPlayerContainer .StreamToastAutoSwitch-dismissButton{margin-left:18px}}@media (max-width:425px){.StreamToastAutoSwitch-embeddedPlayerContainer{font-size:12px;line-height:16px;padding:8px 12px}.StreamToastAutoSwitch-embeddedPlayerContainer .StreamToastAutoSwitch-dismissButton{height:14px;margin-left:10px;width:14px}}.CNBCHomepageProWrapper-main:after{clear:both;content:"";display:table}@media (min-width:1340px){.CNBCHomepageProWrapper-main:after{display:none}}.CNBCHomepageProWrapper-loggedInContainer{margin:0 auto;max-width:1290px}.CNBCHomepageProWrapper-loggedInContainerCollapsable{display:flex;flex-direction:column}.CNBCHomepageProWrapper-videoContainer{border-top:none}@media (min-width:1020px){.CNBCHomepageProWrapper-videoContainer{float:left;width:calc(45% - 15px)}}@media (min-width:1340px){.CNBCHomepageProWrapper-videoContainer{width:calc(50% - 15px)}}.CNBCHomepageProWrapper-pcpVideoContainer{box-shadow:5px 5px 20px 0 #00000040}.CNBCHomepageProWrapper-pcpVideoContainerClosed{float:none}.CNBCHomepageProWrapper-content{display:flex;flex-direction:column;margin-top:20px;padding-bottom:105px;position:relative}@media (min-width:760px){.CNBCHomepageProWrapper-content{float:left;margin:0 0 0 30px;width:calc(50% - 15px)}}@media (min-width:1020px){.CNBCHomepageProWrapper-content{width:calc(44.44% - 15px)}}@media (min-width:1340px){.CNBCHomepageProWrapper-content{width:calc(50% - 15px)}}@media (min-width:360px){.CNBCHomepageProWrapper-content{padding-bottom:25px}}.CNBCHomepageProWrapper-proicon{display:block;margin-bottom:15px;width:42px}.CNBCHomepageProWrapper-proicon img{max-width:100%}@media (min-width:760px){.CNBCHomepageProWrapper-proicon{width:37px}}@media (min-width:1020px){.CNBCHomepageProWrapper-proicon{width:52px}}.CNBCHomepageProWrapper-title{color:#002f6c;font-size:28px;font-weight:700;line-height:1.07;margin:0 0 10px}@media (min-width:760px){.CNBCHomepageProWrapper-title{font-size:30px;line-height:1.06;margin-bottom:20px}.CNBCHomepageProWrapper-loggedInContainer .CNBCHomepageProWrapper-title{margin-bottom:15px}}@media (min-width:1020px){.CNBCHomepageProWrapper-title{font-size:40px;line-height:1.1;max-width:410px}.CNBCHomepageProWrapper-loggedInContainer .CNBCHomepageProWrapper-title{margin-bottom:20px}}@media (min-width:1340px){.CNBCHomepageProWrapper-title{font-size:48px;line-height:1.02}}.CNBCHomepageProWrapper-description{color:#cfd8e2;font-size:18px;font-weight:500;line-height:1.375;margin:0}@media (min-width:360px){.CNBCHomepageProWrapper-description{font-size:16px}}.CNBCHomepageProWrapper-description span{color:#fff;font-weight:600;text-transform:uppercase}@media (min-width:1020px){.CNBCHomepageProWrapper-description{max-width:340px}}@media (min-width:1340px){.CNBCHomepageProWrapper-description{max-width:520px}}.CNBCHomepageProWrapper-description a{color:#002f6c}.CNBCHomepageProWrapper-description a:hover{color:#fcb700}.CNBCHomepageProWrapper-iframeContainer{border:none;height:470px;width:100%}.CNBCHomepageProWrapper-proliveCollapsableContainer{align-items:center;background:linear-gradient(181.49deg,#171717 1.27%,hsla(0,0%,9%,0) 427.68%);border-top-left-radius:4px;border-top-right-radius:4px;box-shadow:5px 5px 20px 0 #00000040;display:flex}@media (min-width:1020px){.CNBCHomepageProWrapper-proliveCollapsableContainer{float:left;height:52px;width:calc(45% - 15px)}}@media (min-width:1340px){.CNBCHomepageProWrapper-proliveCollapsableContainer{width:calc(50% - 15px)}}.CNBCHomepageProWrapper-proliveCollapsedContainer{border-radius:4px}.CNBCHomepageProWrapper-liveIndicatorContainer{color:#fff;display:flex;font-size:14px;font-weight:700;left:20px;line-height:16px;position:relative}.CNBCHomepageProWrapper-liveIndicator{background:#e80101;border-radius:50%;content:"";height:8px;margin-right:6px;opacity:1;position:relative;top:4px;transition:opacity .15s cubic-bezier(0,.25,.25,1);width:8px}.CNBCHomepageProWrapper-proLivePlayerCloseOrExpand{cursor:pointer;margin-left:auto;position:relative;right:20px;transition:all .1s linear}.CNBCHomepageProWrapper-dismissButton{height:16px;pointer-events:none;width:16px}.CNBCHomepageProWrapper-proLivePlayerClosed{transform:rotate(45deg)}.LegacyPlayerContainer-legacyPlayerContainer{background-color:#f7f7f7;margin-bottom:30px;padding:20px;width:100vw}@media (min-width:1340px){.LegacyPlayerContainer-legacyPlayerContainer{max-width:none}}@media (min-width:760px){.LegacyPlayerContainer-legacyPlayerContainer{padding:40px}}@media (min-width:1020px){.LegacyPlayerContainer-legacyPlayerContainer{margin-bottom:40px;padding-bottom:40px;padding-top:30px}}
/*# sourceMappingURL=source-maps/components-PcmModule-LegacyPlayerContainer-04645e4097853b563fe3.css.map*/
.NewsHeroImage-videoFooter{background:linear-gradient(180deg,rgba(30,87,153,0) 0,#000);bottom:0;filter:progid:dximagetransform.microsoft.gradient(startColorstr="#001e5799",endColorstr="#000000",GradientType=0);height:40px;padding-left:10px;padding-top:15px;position:absolute;width:100%}.NewsHeroImage-videoLabel{color:#fcb700;font-size:10px;font-weight:800;letter-spacing:1.67px;line-height:12px}@media (min-width:760px){.NewsHeroImage-videoLabel{font-size:12px;letter-spacing:2px;line-height:15px}}.NewsHeroImage-videoTime{color:hsla(0,0%,100%,.8);font-weight:600;letter-spacing:1.2px;padding-left:10px}@media (min-width:760px){.NewsHeroImage-videoTime{letter-spacing:1.44px}}.PackageItem-link:hover{color:#fff;text-decoration:underline}.PackageItem-container{margin-bottom:8px}.PackageItem-container a:hover{color:#fff;text-decoration:underline}.PackageItem-videoIcon{display:inline;max-width:20px;transform:translateY(4px)}.PackageItems-link:hover{color:#fff;text-decoration:underline}.PackageItems-container{margin-bottom:8px}.PackageItems-container a:hover{color:#fff;text-decoration:underline}.PackageItems-container li{border-top:1px solid #747474;font-size:14px;font-style:normal;font-weight:600;line-height:16px;padding:12px 0}@media (min-width:760px){.PackageItems-container li{font-size:16px;line-height:18px}}@media (min-width:1020px){.PackageItems-container li{font-size:14px;line-height:16px}}@media (min-width:1340px){.PackageItems-container li{font-size:16px}}.PackageItems-videoIcon{max-width:20px}.FeaturedCard-container{background-color:#071d39;cursor:pointer;height:auto;margin:0 -2px 32px 0;position:relative;width:auto}@media (min-width:360px){.FeaturedCard-container{height:440px;left:-1px;min-width:375px}}@media (min-width:760px){.FeaturedCard-container{height:auto;left:0;min-height:440px}}@media (min-width:1020px){.FeaturedCard-container{height:405px;min-height:unset;min-width:410px}}@media (min-width:1340px){.FeaturedCard-container{height:515px;min-width:630px}}.FeaturedCard-container:hover .FeaturedCard-title a{color:#fff;text-decoration:underline}.FeaturedCard-container img{height:auto;width:100%}.FeaturedCard-container .FeaturedCard-content{background:#071d39;bottom:0;padding:0 32px;position:absolute;width:100%;z-index:2}.FeaturedCard-container .FeaturedCard-content .FeaturedCard-contentText{position:relative;top:-12px}.FeaturedCard-container .FeaturedCard-content h2{font-size:24px;line-height:27px;margin-bottom:0}.FeaturedCard-container .FeaturedCard-content .FeaturedCard-packagedCardTitle a,.FeaturedCard-container .FeaturedCard-content .FeaturedCard-title a{color:#fff}.FeaturedCard-container .FeaturedCard-content .FeaturedCard-packagedCardTitle a:hover{text-decoration:underline}.FeaturedCard-container .FeaturedCard-content p{color:#fff;font-size:14px;line-height:16px;margin-top:8px}@media (min-width:360px){.FeaturedCard-container .FeaturedCard-content{padding:0 24px}.FeaturedCard-container .FeaturedCard-content h2{font-size:24px;line-height:27px;margin-bottom:0}.FeaturedCard-container .FeaturedCard-content .FeaturedCard-title{line-height:27px}.FeaturedCard-container .FeaturedCard-content .FeaturedCard-title a{font-size:24px;line-height:27px}}@media (min-width:760px){.FeaturedCard-container .FeaturedCard-content{contentText-top:-18px;padding:0 40px}.FeaturedCard-container .FeaturedCard-content .FeaturedCard-title a,.FeaturedCard-container .FeaturedCard-content h2{font-size:34px;line-height:38px}.FeaturedCard-container .FeaturedCard-content .FeaturedCard-investingClubPill,.FeaturedCard-container .FeaturedCard-content .FeaturedCard-proPill,.FeaturedCard-container .FeaturedCard-content .FeaturedCard-watchLivePill{margin-top:-.2em;vertical-align:middle}}@media (min-width:1020px){.FeaturedCard-container .FeaturedCard-content{padding:0 24px}.FeaturedCard-container .FeaturedCard-content h2{font-size:20px;line-height:22px;margin-bottom:0}.FeaturedCard-container .FeaturedCard-content .FeaturedCard-title{line-height:22px}.FeaturedCard-container .FeaturedCard-content .FeaturedCard-title a{font-size:20px;line-height:22px}}@media (min-width:1340px){.FeaturedCard-container .FeaturedCard-content{padding:0 32px}.FeaturedCard-container .FeaturedCard-content .FeaturedCard-title a,.FeaturedCard-container .FeaturedCard-content h2{font-size:32px;line-height:36px}.FeaturedCard-container .FeaturedCard-content .FeaturedCard-investingClubPill,.FeaturedCard-container .FeaturedCard-content .FeaturedCard-proPill,.FeaturedCard-container .FeaturedCard-content .FeaturedCard-watchLivePill{margin-top:-.2em;vertical-align:middle}}.FeaturedCard-container .FeaturedCard-content:before{background:linear-gradient(transparent,#071d39);content:"";height:65px;left:0;position:absolute;top:-65px;width:100%}@media (min-width:760px){.FeaturedCard-container .FeaturedCard-content:before{height:120px;top:-118px}}@media (min-width:1020px){.FeaturedCard-container .FeaturedCard-content:before{height:28px;top:-28px}}@media (min-width:1340px){.FeaturedCard-container .FeaturedCard-content:before{height:63px;top:-63px}}.FeaturedCard-imageContainer{position:relative}.FeaturedCard-videoIcon{display:inline;margin-bottom:4px;max-width:48px;padding-right:5px;position:relative;top:1px}@media (min-width:760px){.FeaturedCard-videoIcon{margin-bottom:10px}}@media (min-width:1020px){.FeaturedCard-videoIcon{margin-bottom:4px}}@media (min-width:1340px){.FeaturedCard-videoIcon{margin-bottom:8px}}.FeaturedNewsHero-container{display:block;margin:0 -20px}@media (min-width:360px){.FeaturedNewsHero-container{display:block;margin:0 -20px}}@media (min-width:760px){.FeaturedNewsHero-container{left:-1px;margin-left:-45px;margin-right:-45px;min-width:768px;position:relative}}@media (min-width:1020px){.FeaturedNewsHero-container{display:flex;margin:0;min-width:0}}.SecondaryCard-container img{height:auto;width:100%}@media (min-width:1020px){.SecondaryCard-container{width:190px}}@media (min-width:1340px){.SecondaryCard-container{width:300px}}.SecondaryCard-headline{padding:10px 0 30px}.SecondaryCard-headline a{color:#171717;font-size:17px;font-weight:600}.SecondaryCard-headline a:focus,.SecondaryCard-headline a:hover{color:#171717;text-decoration:underline}@media (min-width:360px){.SecondaryCard-headline a{font-size:18px;line-height:20px}}@media (min-width:1020px){.SecondaryCard-headline a{font-size:16px;line-height:18px}}@media (min-width:1340px){.SecondaryCard-headline{padding:10px 0 30px}.SecondaryCard-headline a{font-size:18px;line-height:20px}}.SecondaryCard-headlineHovered a{text-decoration:underline}.SecondaryCard-imageContainer{position:relative}@media (min-width:360px){.SecondaryCard-imageContainer{min-width:318px}}@media (min-width:760px){.SecondaryCard-imageContainer{min-width:324px}}@media (min-width:1020px){.SecondaryCard-imageContainer{min-width:0;width:190px;width:unset}}.SecondaryCardContainer-container{padding:0 21px}@media (min-width:760px){.SecondaryCardContainer-container{float:left;padding:0 41px;width:100%}.SecondaryCardContainer-container ul>li:first-child{margin-right:30px}.SecondaryCardContainer-container ul>li{float:left;width:47%}}@media (min-width:1020px){.SecondaryCardContainer-container{padding:0 0 0 30px}.SecondaryCardContainer-container ul>li,.SecondaryCardContainer-container ul>ol{width:100%}}@media (min-width:1340px){.SecondaryCardContainer-container{min-width:330px;padding:0 0 0 30px}}.SecondaryCardContainer-container li,.SecondaryCardContainer-container ol,.SecondaryCardContainer-container ul{list-style:none;margin:0;padding:0}
/*# sourceMappingURL=source-maps/components-PcmModule-FeaturedNewsHero-ecd44de8999485226854.css.map*/
.QuoteResult-resultContainer{border-bottom:1px dashed #9b9b9b;display:flex;font-size:12px;font-weight:500;justify-content:space-between;min-height:50px;padding:10px 0}.QuoteResult-resultContainer:focus .QuoteResult-symbol,.QuoteResult-resultContainer:hover .QuoteResult-symbol{color:#2077b6}.QuoteResult-container{padding:10px}.QuoteResult-container:nth-child(odd){background-color:#f8f8f8}.QuoteResult-leftSide{text-align:left}.QuoteResult-leftSideNotSearchResult{position:relative}.QuoteResult-leftSideNotSearchResult a{position:absolute;top:50%;transform:translateY(-50%)}.QuoteResult-rightSide{display:flex;flex-direction:column;justify-content:center;text-align:right}.QuoteResult-symbol{color:#171717;font-size:14px;font-weight:700}.QuoteResult-name{color:#5d5d5d;font-size:12px;font-weight:500}.QuoteResult-watchlistButton{color:#002f6c;font-weight:600;letter-spacing:1px}.QuoteResult-watchlistButton:focus,.QuoteResult-watchlistButton:hover{text-decoration:underline}.QuoteResult-unchanged{color:#5d5d5d;font-weight:500;text-transform:uppercase}.QuoteResult-value{color:#008456;font-size:12px;font-weight:500}.QuoteResult-negValue{color:#ce2b2b}.QuoteResult-price{color:#171717;font-size:14px;font-weight:600;line-height:114%}.AutoSuggestList-container{background-color:#fff;border:1px solid #979797;left:0;padding:10px 20px 20px;position:static;top:39px;width:100%}.AutoSuggestList-viewResults{color:#2077b6;font-size:12px;font-weight:500;letter-spacing:1px;padding-top:20px;text-transform:uppercase}.AutoSuggestList-viewResults:hover{text-decoration:underline}.QuoteList-title{border-bottom:1px dashed #9b9b9b;color:#071d39;font-size:14px;font-weight:500;letter-spacing:1.2px;margin:0;padding:20px 10px 18px}.QuoteFinder-container{margin-bottom:27px;position:relative}@media (min-width:360px) and (max-width:759px){.QuoteFinder-container{margin-bottom:20px}}@media (min-width:760px) and (max-width:1019px){.QuoteFinder-container{margin-bottom:20px}}.QuoteFinder-title{border-top:6px solid #002f6c;color:#002f6c;font-size:18px;font-weight:800;margin:0 0 8px;padding:10px 0 0;text-transform:uppercase}.QuoteFinder-form{display:block;position:relative}.QuoteFinder-form ::-moz-placeholder{color:#747474;margin-left:10px;text-transform:uppercase}.QuoteFinder-form ::placeholder{color:#747474;margin-left:10px;text-transform:uppercase}input.QuoteFinder-searchInput[type=search]{-webkit-appearance:none;border:none;border-bottom:1px solid #071d39;border-radius:1px;color:#071d39;display:block;font-size:14px;font-weight:500;height:40px;letter-spacing:1.28px;padding-left:10px;text-transform:uppercase;width:100%}.QuoteFinder-submitBtn{background-color:#fff;bottom:0;height:0;margin-top:6px;overflow:hidden;padding:20px 10px 0 0;position:absolute;right:0;top:0;width:30px}.QuoteFinder-submitBtn:before{color:#2077b6;font-size:20px;height:100%;left:0;line-height:20px;position:absolute;text-align:center;top:0;width:100%}@media (min-width:360px) and (max-width:759px){.QuoteFinder-hideOnMobile{display:none}}@media (min-width:760px) and (max-width:1019px){.QuoteFinder-hideOnMobile{display:none}}
/*# sourceMappingURL=source-maps/components-PcmModule-QuoteFinder-4cf460eb003271a4e4e4.css.map*/
.MarketMoversMenu-moverContainer{align-items:baseline;border-bottom:1px solid #747474;display:flex;flex-direction:row;padding-bottom:3px}@media (max-width:759px){.MarketMoversMenu-moverContainer{-ms-overflow-style:none;overflow-x:auto;overflow-y:hidden;overflow:-moz-scrollbars-none}.MarketMoversMenu-moverContainer::-webkit-scrollbar{display:none}}@media (min-width:760px){.MarketMoversMenu-moverContainer{border:none;justify-content:flex-start;padding-top:6px}}@media (min-width:1020px){.MarketMoversMenu-moverContainer{margin-bottom:11px;order:1;padding-top:9px;position:relative}}.MarketMoversMenu-moverContainerFullWidth{border-color:#979797}@media (min-width:760px){.MarketMoversMenu-moverContainerFullWidth{margin-bottom:0;position:relative;top:7px}}.MarketMoversMenu-moverPlusContainer{border-bottom:hidden;margin:9px 0;padding-left:5px}@media (min-width:760px){.MarketMoversMenu-moverPlusContainer{margin:12px 0;padding:0}}@media (min-width:1020px){.MarketMoversMenu-moverPlusContainer{margin:9px 0;padding-left:5px}}.MarketMoversMenu-moverPlusContainer .MarketMoversMenu-marketOption{font-size:14px;font-weight:600;letter-spacing:.5px;line-height:16px;margin:0 7.5px}@media (min-width:760px){.MarketMoversMenu-moverPlusContainer .MarketMoversMenu-marketOption{padding-bottom:0}}@media (min-width:1020px){.MarketMoversMenu-moverPlusContainer .MarketMoversMenu-marketOption{margin:0 5px}}.MarketMoversMenu-marketOption{color:#747474;font-size:13px;font-weight:600;letter-spacing:.23px;line-height:1.2;margin:0 7px;position:relative;transition:color .15s linear;white-space:nowrap}.MarketMoversMenu-marketOption:focus,.MarketMoversMenu-marketOption:hover{color:#2e2e2e}.MarketMoversMenu-marketOption:first-child{margin-left:0}.MarketMoversMenu-marketOption:last-child{margin-right:0}@media (min-width:760px){.MarketMoversMenu-marketOption{font-size:14px;letter-spacing:.5px;padding-bottom:3px}}@media (min-width:1340px){.MarketMoversMenu-marketOption{margin:0 7px}.MarketMoversMenu-marketOption:first-child{margin-left:0}.MarketMoversMenu-marketOption:last-child{margin-right:16px}}.MarketMoversMenu-activeMarket{color:#005594;font-weight:700}.MarketMoversMenu-activeMarket:after{background-color:#005594;bottom:-5px;content:"";display:block;height:3px;left:0;position:absolute;width:100%}.MarketMoversMenu-activeMarket:focus,.MarketMoversMenu-activeMarket:hover{color:#005594}@media (min-width:1340px){.MarketMoversMenu-activeMarket:after{bottom:auto;height:2px}}.MarketMoverPlusTable-container{margin-bottom:15px;width:100%}@media (min-width:1020px){.MarketMoverPlusTable-container{margin-bottom:20px}}.MarketMoverPlusTable-tableContainer{width:100%}.MarketMoverPlusTable-dataContainer{background:#f8f8f8;padding:8px}.MarketMoverPlusTable-dataContainer:nth-child(2n){background:#fff}@media (min-width:760px){.MarketMoverPlusTable-dataContainer{padding:8px 27px}}@media (min-width:1020px){.MarketMoverPlusTable-dataContainer{padding:8px}}.MarketMoverPlusTable-dataRow{display:flex;justify-content:space-between}.MarketMoverPlusTable-companyName{color:#747474;font-size:14px;font-weight:600;letter-spacing:.5px;line-height:16px;max-height:20px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}@media (min-width:1020px){.MarketMoverPlusTable-companyName{font-size:12px;line-height:14px}}.MarketMoverPlusTable-tableHeader{color:#747474;font-size:14px;font-weight:600;letter-spacing:.35px;line-height:24px;padding-left:8px;text-transform:uppercase}@media (min-width:760px){.MarketMoverPlusTable-tableHeader{padding-left:27px}}@media (min-width:1020px){.MarketMoverPlusTable-tableHeader{padding-left:8px}}.MarketMoverPlusTable-quoteGain{color:#008456;font-size:14px;font-weight:600;line-height:16px}@media (min-width:1020px){.MarketMoverPlusTable-quoteGain{font-size:12px;line-height:10px}}.MarketMoverPlusTable-symbolName{display:flex}.MarketMoverPlusTable-addWatchlist{left:2px;position:relative;top:-6px}@media (min-width:1020px){.MarketMoverPlusTable-dropdownStyles{left:5px!important;width:150px!important}}.MarketMoverPlusTable-quoteDecline{color:#ce2b2b;font-size:14px;font-weight:600;line-height:16px}@media (min-width:1020px){.MarketMoverPlusTable-quoteDecline{font-size:12px;line-height:10px}}.MarketMoverPlusTable-quoteDecline span:first-child,.MarketMoverPlusTable-quoteGain span:first-child{padding-left:8px;padding-right:5px}.MarketMoverPlusTable-lastPrice,.MarketMoverPlusTable-symbolName{color:#171717;font-size:14px;font-weight:600;font-weight:700;line-height:16px}.MarketMoversPlus-container{border-top:6px solid #002f6c;display:none}@media (min-width:1020px){.MarketMoversPlus-container{display:block}}.MarketMoversPlus-containerPersistent{border-top:6px solid #002f6c;display:block}@media (min-width:1020px){.MarketMoversPlus-sponsorLogo{margin-top:0}}@media (min-width:1340px){.MarketMoversPlus-sponsorLogo{margin-top:-5px}}.MarketMoversPlus-decoration{background-color:#0089d0;display:block;height:6px;left:0;position:absolute;top:-5px;width:80px}@media (min-width:760px){.MarketMoversPlus-decoration{width:110px}}.MarketMoversPlus-header{display:flex;font-weight:800;justify-content:space-between;margin-top:10px}.MarketMoversPlus-header a{color:#002f6c;font-size:18px;letter-spacing:.5px;line-height:21px;text-transform:uppercase}@media (min-width:1020px){.MarketMoversPlus-header a{font-size:18px;line-height:15px}}@media (min-width:1340px){.MarketMoversPlus-header a{font-size:18px;line-height:21px}}.MarketMoversPlus-header a:hover{color:#2077b6}
/*# sourceMappingURL=source-maps/components-PcmModule-MarketMoversPlus-c087c083d91f93c5aa96.css.map*/
.NativeRiver-container{align-items:center;align-self:center;display:flex;display:none;justify-content:center;margin:0}.RiverPlusCard-container{display:flex;justify-content:space-between;padding:14px 0}@media (min-width:760px){.RiverPlusCard-container{border-bottom:1px solid #dedede}}.RiverPlusCard-cardLeft{display:flex;flex-direction:column;justify-content:space-between}.RiverPlusCard-breakerCardContainer{flex-basis:0;flex-grow:1;margin:15px 0;padding-right:15px}.RiverPlusCard-breakerCardContainer:nth-child(2){border-left:1px solid #dedede;padding-left:15px;padding-right:0}.RiverByline-bylineContainer{display:none}@media (min-width:760px){.RiverByline-bylineContainer{display:flex}}.RiverByline-mobileBylineContainer{border-bottom:1px solid #dedede;display:flex;padding-bottom:16px}@media (min-width:760px){.RiverByline-mobileBylineContainer{display:none}}.RiverByline-authorBylineContainer{display:flex}.RiverByline-hasSeparator{padding-bottom:5px}@media (min-width:760px){.RiverByline-hasSeparator{height:14px;padding-bottom:0}}@media (min-width:1020px){.RiverByline-hasSeparator{height:auto}}@media (min-width:1340px){.RiverByline-hasSeparator{height:14px}}.RiverByline-datePublished{margin-bottom:5px}.RiverByline-datePublished,.RiverByline-watchLive{color:#747474;font-size:11px;font-weight:600;letter-spacing:1.2px;line-height:13px;text-transform:uppercase;white-space:nowrap}.RiverByline-breakerSeparator,.RiverByline-separator{color:#002f6c;font-size:20px;font-weight:800;padding:0 5px;position:relative;top:-7px}.RiverByline-breakerSeparator{display:none}@media (min-width:760px){.RiverByline-breakerSeparator{display:block}}.RiverByline-authorByline{color:#005594;font-family:Lyon,Helvetica,Arial,sans-serif;font-size:12px;font-weight:600;letter-spacing:.461538px;line-height:14px}.RiverByline-authorByline a{color:inherit}.RiverByline-authorByline a:focus,.RiverByline-authorByline a:hover{text-decoration:underline}.RiverByline-byText,.RiverByline-bylineComma{padding-right:4px}.RiverThumbnail-thumbnailContainer{margin-left:24px}@media (min-width:1340px){.RiverThumbnail-thumbnailContainer{margin-left:40px}}.RiverThumbnail-thumbnailContainer img{height:auto;width:100px}@media (min-width:760px){.RiverThumbnail-thumbnailContainer img{width:120px}}@media (min-width:1020px){.RiverThumbnail-thumbnailContainer img{width:112px}}@media (min-width:1340px){.RiverThumbnail-thumbnailContainer img{width:120px}}.RiverThumbnail-breakerImage{margin-bottom:16px}@media (min-width:760px){.RiverThumbnail-breakerImage{margin-bottom:none}}.RiverThumbnail-breakerImage img{height:auto;width:100%}.RiverThumbnail-imageThumbnail{position:relative}.RiverThumbnail-videoFooter{background:linear-gradient(180deg,rgba(30,87,153,0) 0,#000);bottom:0;filter:progid:dximagetransform.microsoft.gradient(startColorstr="#001e5799",endColorstr="#000000",GradientType=0);height:40px;padding-left:10px;padding-top:15px;position:absolute;width:100%}.RiverThumbnail-videoLabel{color:#fcb700;font-size:10px;font-weight:800;letter-spacing:1.67px;line-height:12px}@media (min-width:760px){.RiverThumbnail-videoLabel{font-size:12px;letter-spacing:2px;line-height:15px}}.RiverThumbnail-videoTime{color:hsla(0,0%,100%,.8);font-weight:600;letter-spacing:1.2px;padding-left:10px}@media (min-width:760px){.RiverThumbnail-videoTime{letter-spacing:1.44px}}.RiverHeadline-headline{font-size:16px;font-weight:600;letter-spacing:.03px;line-height:18px;padding-bottom:24px}@media (min-width:760px){.RiverHeadline-headline{font-size:20px;line-height:24px;padding-right:32px}}@media (min-width:1020px){.RiverHeadline-headline{font-size:17px;line-height:19px;padding-bottom:32px;padding-right:24px}}@media (min-width:1340px){.RiverHeadline-headline{font-size:20px;line-height:24px;padding-right:56px}}.RiverHeadline-headline a{color:#171717}.RiverHeadline-headline a:focus,.RiverHeadline-headline a:hover{color:#171717;text-decoration:underline}.RiverHeadline-headlineHovered a{text-decoration:underline}.RiverHeadline-hasThumbnail{padding-bottom:0;padding-right:0}@media (min-width:760px){.RiverHeadline-hasThumbnail{padding-bottom:16px}}@media (min-width:1340px){.RiverHeadline-hasThumbnail{padding-bottom:8px}}.RiverPlusBreaker-container{border-bottom:1px solid #dedede;display:flex;justify-content:space-around}.RiverPlus-riverPlusContainer{padding-bottom:32px}@media (max-width:759px){.RiverPlus-riverPlusContainer{padding-bottom:0}}
/*# sourceMappingURL=source-maps/components-PcmModule-RiverPlus-35f2d4596653f9b05a83.css.map*/
.MarketMoversMenu-moverContainer{align-items:baseline;border-bottom:1px solid #747474;display:flex;flex-direction:row;padding-bottom:3px}@media (max-width:759px){.MarketMoversMenu-moverContainer{-ms-overflow-style:none;overflow-x:auto;overflow-y:hidden;overflow:-moz-scrollbars-none}.MarketMoversMenu-moverContainer::-webkit-scrollbar{display:none}}@media (min-width:760px){.MarketMoversMenu-moverContainer{border:none;justify-content:flex-start;padding-top:6px}}@media (min-width:1020px){.MarketMoversMenu-moverContainer{margin-bottom:11px;order:1;padding-top:9px;position:relative}}.MarketMoversMenu-moverContainerFullWidth{border-color:#979797}@media (min-width:760px){.MarketMoversMenu-moverContainerFullWidth{margin-bottom:0;position:relative;top:7px}}.MarketMoversMenu-moverPlusContainer{border-bottom:hidden;margin:9px 0;padding-left:5px}@media (min-width:760px){.MarketMoversMenu-moverPlusContainer{margin:12px 0;padding:0}}@media (min-width:1020px){.MarketMoversMenu-moverPlusContainer{margin:9px 0;padding-left:5px}}.MarketMoversMenu-moverPlusContainer .MarketMoversMenu-marketOption{font-size:14px;font-weight:600;letter-spacing:.5px;line-height:16px;margin:0 7.5px}@media (min-width:760px){.MarketMoversMenu-moverPlusContainer .MarketMoversMenu-marketOption{padding-bottom:0}}@media (min-width:1020px){.MarketMoversMenu-moverPlusContainer .MarketMoversMenu-marketOption{margin:0 5px}}.MarketMoversMenu-marketOption{color:#747474;font-size:13px;font-weight:600;letter-spacing:.23px;line-height:1.2;margin:0 7px;position:relative;transition:color .15s linear;white-space:nowrap}.MarketMoversMenu-marketOption:focus,.MarketMoversMenu-marketOption:hover{color:#2e2e2e}.MarketMoversMenu-marketOption:first-child{margin-left:0}.MarketMoversMenu-marketOption:last-child{margin-right:0}@media (min-width:760px){.MarketMoversMenu-marketOption{font-size:14px;letter-spacing:.5px;padding-bottom:3px}}@media (min-width:1340px){.MarketMoversMenu-marketOption{margin:0 7px}.MarketMoversMenu-marketOption:first-child{margin-left:0}.MarketMoversMenu-marketOption:last-child{margin-right:16px}}.MarketMoversMenu-activeMarket{color:#005594;font-weight:700}.MarketMoversMenu-activeMarket:after{background-color:#005594;bottom:-5px;content:"";display:block;height:3px;left:0;position:absolute;width:100%}.MarketMoversMenu-activeMarket:focus,.MarketMoversMenu-activeMarket:hover{color:#005594}@media (min-width:1340px){.MarketMoversMenu-activeMarket:after{bottom:auto;height:2px}}@media (min-width:760px){.MarketTop-container{max-width:48%;width:48%}}.MarketTop-topTable{margin:10px 0}.MarketTop-topTable tr{padding:0}.MarketTop-topTable td{line-height:15px;padding:5px 10px 5px 0}.MarketTop-name{color:#747474;font-size:14px;font-weight:600;letter-spacing:.5px;line-height:15px;max-width:25%}.MarketTop-name div{max-height:20px;max-width:120px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.MarketTop-barContainer{width:23%}@media (min-width:760px){.MarketTop-barContainer{width:11%}}@media (min-width:1180px){.MarketTop-barContainer{width:21%}}@media (min-width:1340px){.MarketTop-barContainer{width:42%}}.MarketTop-title{color:#171717;font-size:16px;font-weight:600;letter-spacing:.4px;line-height:24px;margin:20px 0 10px;text-transform:uppercase}.MarketTop-fullWidthContainer,.MarketTop-fullWidthContainer .MarketTop-topTable{width:100%}.MarketTop-fullWidthContainer .MarketTop-title{margin:10px 0}@media (min-width:1020px){.MarketTop-fullWidthContainer .MarketTop-name div{max-width:200px}}.MarketTop-bar{background-color:pink;height:16px}.MarketTop-gainBar{background-color:#008456}.MarketTop-declineBar{background-color:#ce2b2b}.MarketTop-quoteChange{font-size:12px;font-weight:600;line-height:15px;text-align:right}.MarketTop-quoteGain{color:#008456}.MarketTop-quoteDecline{color:#ce2b2b}.MarketTop-symbol a{word-wrap:break-word;color:#4a4a4a;font-size:12px;font-weight:700;letter-spacing:0;line-height:15px;max-width:75px;text-transform:uppercase;width:10%}.MarketTop-symbol a:focus,.MarketTop-symbol a:hover{color:#2077b6}.MarketTop-value{color:#171717;font-size:12px;font-weight:600;line-height:15px;text-align:right}.PageBuilder-article .MarketMovers-container a{text-decoration:none}.PageBuilder-article .MarketMovers-container .MarketTop-symbol a{color:#171717}.PageBuilder-article .MarketMovers-container .MarketTop-symbol a:hover{color:#2077b6}.MarketMovers-container{background-color:rgba(207,216,226,.1);border:1px dashed #b9c7d5;border-top:6px solid #002f6c;margin-bottom:30px;padding:10px;width:100%}@media (min-width:760px){.MarketMovers-container{padding-left:20px;padding-top:15px}}@media (min-width:1340px){.MarketMovers-container{padding-left:30px;padding-top:25px}}.MarketMovers-fullWidthContainer{margin-bottom:0}.MarketMovers-title{color:#002f6c;font-size:20px;font-weight:800;line-height:24px;margin:0 0 20px;position:relative;text-transform:uppercase}.MarketMovers-title a{color:inherit}.MarketMovers-title a:focus,.MarketMovers-title a:hover{color:#2077b6}@media (min-width:1020px){.MarketMovers-title{font-size:24px;line-height:29px}}.MarketMovers-title a{color:#002f6c!important}.MarketMovers-title a:hover{color:#2077b6!important}@media (min-width:760px){.MarketMovers-title{letter-spacing:.36px;margin:0 40px 0 0}}@media (min-width:1020px){.MarketMovers-title{font-size:24px;letter-spacing:.4px;line-height:29px}}.MarketMovers-marketTopContainer{min-height:110px}@media (min-width:760px){.MarketMovers-marketTopContainer{display:flex;justify-content:space-between}}.MarketMovers-fullWidthMarketTopContainer{min-height:110px;width:100%}.MarketMovers-marketTopContainerStacked{display:flex;flex-direction:column}@media (min-width:760px){.MarketMovers-titleContainer{display:flex;justify-content:flex-start}}.MarketMovers-loadingContainer{align-items:center;display:flex;height:100%;justify-content:center;padding:30px 0 20px;width:100%}.RiverPlusCard-container{display:flex;justify-content:space-between;padding:14px 0}@media (min-width:760px){.RiverPlusCard-container{border-bottom:1px solid #dedede}}.RiverPlusCard-cardLeft{display:flex;flex-direction:column;justify-content:space-between}.RiverPlusCard-breakerCardContainer{flex-basis:0;flex-grow:1;margin:15px 0;padding-right:15px}.RiverPlusCard-breakerCardContainer:nth-child(2){border-left:1px solid #dedede;padding-left:15px;padding-right:0}.MarketNews-container{border-top:6px solid #002f6c;flex-grow:0;flex-shrink:0;max-width:100%;min-width:100%}@media (min-width:760px){.MarketNews-container{margin-bottom:30px}}.MarketNews-title{color:#002f6c;font-size:20px;font-weight:800;line-height:24px;margin:10px 0;text-transform:uppercase}.MarketNews-title a{color:inherit}.MarketNews-title a:focus,.MarketNews-title a:hover{color:#2077b6}@media (min-width:1020px){.MarketNews-title{font-size:24px;line-height:29px}}.MarketNews-authorBylineContainer{display:flex}.MarketNews-hasSeparator{padding-bottom:5px}@media (min-width:760px){.MarketNews-hasSeparator{height:14px;padding-bottom:0}}@media (min-width:1020px){.MarketNews-hasSeparator{height:auto}}@media (min-width:1340px){.MarketNews-hasSeparator{height:14px}}.MarketNews-datePublished,.MarketNews-watchLive{color:#747474;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:11px;font-weight:600;letter-spacing:1.2px;line-height:13px;text-transform:uppercase;white-space:nowrap}.MarketNews-separator{color:#002f6c;font-size:20px;font-weight:800;padding:0 5px;position:relative;top:-5px}.MarketNews-byText,.MarketNews-bylineComma{padding-right:4px}.MarketsModule-container{padding-top:5px;width:100%}.MarketsModule-title{border-top:1px solid #747474;display:flex;justify-content:space-between;margin:0;padding:10px 0 20px;position:relative}.MarketsModule-title:before{background:#fcb700;content:"";height:6px;left:0;position:absolute;top:-6px;width:110px}@media (min-width:760px){.MarketsModule-title{padding-top:15px}}@media (min-width:1340px){.MarketsModule-title{padding-top:20px}}.MarketsModule-title h2{margin:0;padding:0;width:93%}.MarketsModule-title h2 a{color:#002f6c;font-size:40px;font-weight:800;letter-spacing:.33px;line-height:37px;text-transform:uppercase}.MarketsModule-title h2 a:hover{color:#2077b6}@media (min-width:1020px){.MarketsModule-title h2 a{font-size:32px}.MarketsModule-title h2{font-size:40px;letter-spacing:.44px;line-height:40px}}.MarketsModule-sponsorLogo{height:0;overflow:hidden;width:0}@media (min-width:1020px){.MarketsModule-sponsorLogo{height:30px;width:auto}}@media (min-width:760px){.MarketsModule-row{display:flex}}@media (min-width:1020px){.MarketsModule-row{margin-right:-30px}.MarketsModule-top{flex-grow:0;flex-shrink:0;max-width:100%;min-width:100%}}@media (min-width:1340px){.MarketsModule-top{flex-grow:0;flex-shrink:0;max-width:100%;min-width:100%}}.MarketsModule-leftColumn{margin-bottom:30px}@media (min-width:760px){.MarketsModule-leftColumn{flex-grow:0;flex-shrink:0;margin-right:30px;max-width:calc(58.33333% - 30px);min-width:calc(58.33333% - 30px)}.MarketsModule-leftColumn:last-child{margin-right:0}}@media (min-width:1020px){.MarketsModule-leftColumn{flex-grow:0;flex-shrink:0;max-width:calc(50% - 30px);min-width:calc(50% - 30px)}}@media (min-width:1340px){.MarketsModule-leftColumn{flex-grow:0;flex-shrink:0;max-width:calc(55.55556% - 30px);min-width:calc(55.55556% - 30px)}}.MarketsModule-marketTable{margin-bottom:30px}.MarketsModule-marketTable:last-child{margin-bottom:0}@media (min-width:760px){.MarketsModule-rightColumn{flex-grow:0;flex-shrink:0;margin-right:30px;max-width:calc(41.66667% - 30px);max-width:41.66667%;min-width:calc(41.66667% - 30px)}.MarketsModule-rightColumn:last-child{margin-right:0}}@media (min-width:1020px){.MarketsModule-rightColumn{flex-grow:0;flex-shrink:0;max-width:calc(50% - 30px);min-width:calc(50% - 30px)}}@media (min-width:1340px){.MarketsModule-rightColumn{flex-grow:0;flex-shrink:0;max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}
/*# sourceMappingURL=source-maps/components-PcmModule-MarketsModule-fbbd5f7fd26ac9e83d45.css.map*/
.NativeThreeUp-container,.NativeThreeUpStackv2-container{align-items:center;align-self:center;display:flex;justify-content:center;margin:0}.NativeThreeUpStackv2-container{display:none}.NativeUltraDense-container{align-items:center;align-self:center;display:flex;justify-content:center;margin:0}
/*# sourceMappingURL=source-maps/components-shared-Card-7f6cb31c2c0ec8ecade5.css.map*/
.ProLiveTVWithSelections-container{background-color:#171717;border-radius:4px;left:0;padding-top:56.25%;position:relative;top:0;width:100%}.ProPlayerChannel-channelContainer{background-color:#171717;display:block;height:100%;overflow:hidden;width:100%}.ProPlayerChannel-channelContainer *{box-sizing:border-box}.ProPlayerChannel-pcpChannelContainer{border-radius:4px}.ProPlayerChannel-channelHolder{background-color:#171717;display:flex;flex-wrap:wrap;justify-content:center;padding:0 8px;width:100%}@media (max-width:1019px){.ProPlayerChannel-channelHolder{align-items:center;flex-direction:column}}.ProPlayerChannel-leftContainer{display:block;width:295px}@media (max-width:1339px){.ProPlayerChannel-leftContainer{display:none}}.ProPlayerChannel-channels,.ProPlayerChannel-rightContainer{display:flex;text-align:center}.ProPlayerChannel-channels{background:rgba(60,184,120,.2);border-radius:26px;flex-direction:row;height:31px;margin-bottom:16px;margin-top:16px;position:relative;width:336px}.ProPlayerChannel-channels .ProPlayerChannel-slider{background-color:#3cb878;border-radius:30px;height:31px;left:0;position:absolute;top:0;transition:left .2s ease-in-out;width:33.33%}@media (max-width:759px){.ProPlayerChannel-channels .ProPlayerChannel-slider{width:88px}}.ProPlayerChannel-channels .ProPlayerChannel-buttonContainer{display:flex;flex-wrap:nowrap;width:100%}.ProPlayerChannel-channels .ProPlayerChannel-buttonContainer .ProPlayerChannel-selector{color:#fff;cursor:pointer;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:700;height:31px;line-height:17px;transition:color .2s ease-in;width:33.33%;z-index:1}.ProPlayerChannel-channels .ProPlayerChannel-buttonContainer .ProPlayerChannel-activeStream{color:#000}@media (max-width:759px){.ProPlayerChannel-channels{width:264px}}.ProPlayerChannel-embeddedPlayerSpacing{align-items:center;flex-direction:column}.ProPlayerChannel-embeddedPlayerSpacing .ProPlayerChannel-rightContainer{justify-content:space-around;padding:0 22px 16px;text-align:center;width:295px}@media (max-width:1019px){.ProPlayerChannel-embeddedPlayerSpacing .ProPlayerChannel-rightContainer{padding:0 16px 16px;width:300px}}@media (max-width:759px){.ProPlayerChannel-embeddedPlayerSpacing .ProPlayerChannel-rightContainer{padding:0 22px 16px;width:300px}}.ProPlayerChannel-embeddedPlayerSpacing .ProPlayerChannel-channels{background:rgba(60,184,120,.2);border-radius:26px;flex-direction:row;height:31px;margin-bottom:16px;margin-top:16px;position:relative;width:336px}.ProPlayerChannel-embeddedPlayerSpacing .ProPlayerChannel-channels .ProPlayerChannel-slider{background-color:#3cb878;border-radius:30px;height:31px;left:0;position:absolute;top:0;transition:left .2s ease-in-out;width:33.33%}.ProPlayerChannel-embeddedPlayerSpacing .ProPlayerChannel-channels .ProPlayerChannel-buttonContainer{display:flex;flex-wrap:nowrap;width:100%}.ProPlayerChannel-embeddedPlayerSpacing .ProPlayerChannel-channels .ProPlayerChannel-buttonContainer .ProPlayerChannel-selector{color:#fff;cursor:pointer;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:700;height:31px;line-height:17px;transition:color .2s ease-in;width:33.33%;z-index:1}.ProPlayerChannel-embeddedPlayerSpacing .ProPlayerChannel-channels .ProPlayerChannel-buttonContainer .ProPlayerChannel-activeStream{color:#000}@media (max-width:1019px){.ProPlayerChannel-embeddedPlayerSpacing .ProPlayerChannel-channels{width:276px}}@media (max-width:759px){.ProPlayerChannel-embeddedPlayerSpacing .ProPlayerChannel-channels{width:264px}}.ProPlayerChannel-rightContainer{justify-content:space-around;padding:16px 22px;text-align:center;width:295px}@media (max-width:1019px){.ProPlayerChannel-rightContainer{padding:0 16px 16px;width:300px}}@media (max-width:759px){.ProPlayerChannel-rightContainer{padding:0 22px 16px;width:300px}}.ProPlayerChannel-rightContainer .ProPlayerChannel-linkButton{cursor:pointer;display:flex;text-decoration:none;transition:background-color .15s ease-in 50ms}.ProPlayerChannel-rightContainer .ProPlayerChannel-linkButton>.ProPlayerChannel-withEmphasis{height:26px;justify-content:center;padding:4px 0;transition:color .1s ease-in;width:133px}.ProPlayerChannel-rightContainer .ProPlayerChannel-linkButton>.ProPlayerChannel-noEmphasis{height:26px;justify-content:center;padding:4px 0;transition:color .1s ease-in}.ProPlayerChannel-rightContainer .ProPlayerChannel-noEmphasisIcon,.ProPlayerChannel-rightContainer .ProPlayerChannel-withEmphasisIcon{fill:#d9d9d9;margin-right:8px;margin-top:2px;transition:fill .1s ease-in}.ProPlayerChannel-rightContainer .ProPlayerChannel-linkButton:hover .ProPlayerChannel-noEmphasis,.ProPlayerChannel-rightContainer .ProPlayerChannel-linkButton:hover .ProPlayerChannel-withEmphasis{color:#3cb878}.ProPlayerChannel-rightContainer .ProPlayerChannel-linkButton:hover .ProPlayerChannel-noEmphasisIcon,.ProPlayerChannel-rightContainer .ProPlayerChannel-linkButton:hover .ProPlayerChannel-withEmphasisIcon{fill:#3cb878}.ProPlayerChannel-rightContainer .ProPlayerChannel-linkButton:active .ProPlayerChannel-withEmphasis{background-color:#3cb878;border-radius:30px;color:#171717}.ProPlayerChannel-rightContainer .ProPlayerChannel-linkButton:active .ProPlayerChannel-withEmphasisIcon{fill:#171717}.ProPlayerChannel-rightContainer .ProPlayerChannel-linkButton>span>img{display:inline-block;padding-right:8px;width:24px}.ProPlayerChannel-rightContainer .ProPlayerChannel-linkButton>span{color:#d9d9d9;display:inline-flex;flex-wrap:nowrap;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-style:normal;font-weight:700;text-decoration:none}@media (max-width:1019px){.ProPlayerChannel-rightContainer{flex-direction:row;margin-left:0;text-align:center;top:40px}}.ProPlayerToast-overlay{background-color:#171717;position:absolute;top:0;width:100%;z-index:1}.ProPlayerToast-toastMessageContainer{color:#fff;left:0;padding-top:12px;position:absolute;text-align:center;top:0;width:100%}.StreamToast-toastMessage{background-color:#171717;border-radius:3px;display:flex;flex-direction:column;justify-content:center;margin:auto;opacity:.85!important;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content}.StreamToast-textAndButton{color:#fff;display:flex;flex-direction:row;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-style:normal;font-weight:600;justify-content:center;line-height:22px;padding:12px 24px}.StreamToast-textAndButton .StreamToast-dismissButton{margin-left:18px}@media (max-width:425px){.StreamToast-textAndButton{font-size:12px;line-height:16px;padding:8px 12px}.StreamToast-textAndButton .StreamToast-dismissButton{height:14px;margin-left:10px;width:14px}}@media (max-width:1020px){.StreamToast-embeddedPlayerContainer{font-size:12px;line-height:16px;padding:8px 12px}.StreamToast-embeddedPlayerContainer .StreamToast-dismissButton{height:14px;margin-left:10px;width:14px}}@media (max-width:759px){.StreamToast-embeddedPlayerContainer{font-size:16px;line-height:24px;padding:12px 24px}.StreamToast-embeddedPlayerContainer .StreamToast-dismissButton{margin-left:18px}}@media (max-width:425px){.StreamToast-embeddedPlayerContainer{font-size:12px;line-height:16px;padding:8px 12px}.StreamToast-embeddedPlayerContainer .StreamToast-dismissButton{height:14px;margin-left:10px;width:14px}}.StreamToastWithCTA-toastMessage{background-color:#171717;border-radius:3px;color:#fff;display:flex;flex-direction:column;justify-content:center;margin:auto;opacity:.85!important;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content}.StreamToastWithCTA-textAndButton{display:flex;flex-direction:row;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-style:normal;font-weight:600;justify-content:center;line-height:22px;padding:12px 24px}.StreamToastWithCTA-textAndButton .StreamToastWithCTA-dismissButton{margin-left:18px}.StreamToastWithCTA-textAndButton .StreamToastWithCTA-switchButton{border:1px solid #fff;color:#fff;font-size:12px;font-style:normal;font-weight:700;letter-spacing:1.09px;line-height:12px;margin-left:18px;padding:10px 31px;text-transform:uppercase}@media (max-width:425px){.StreamToastWithCTA-textAndButton{font-size:12px;line-height:16px;padding:8px 12px}.StreamToastWithCTA-textAndButton .StreamToastWithCTA-switchButton{font-size:10px;line-height:12px;margin-left:10px;padding:5.5px 14.5px}.StreamToastWithCTA-textAndButton .StreamToastWithCTA-dismissButton{height:14px;margin-left:10px;width:14px}}@media (max-width:1020px){.StreamToastWithCTA-embeddedPlayerContainer{font-size:12px;line-height:16px;padding:8px 12px}.StreamToastWithCTA-embeddedPlayerContainer .StreamToastWithCTA-switchButton{font-size:10px;line-height:12px;margin-left:10px;padding:5.5px 14.5px}.StreamToastWithCTA-embeddedPlayerContainer .StreamToastWithCTA-dismissButton{height:14px;margin-left:10px;width:14px}}@media (max-width:759px){.StreamToastWithCTA-embeddedPlayerContainer{font-size:16px;line-height:24px;padding:12px 24px}.StreamToastWithCTA-embeddedPlayerContainer .StreamToastWithCTA-switchButton{font-size:12px;line-height:12px;margin-left:10px;padding:10px 31px}.StreamToastWithCTA-embeddedPlayerContainer .StreamToastWithCTA-dismissButton{margin-left:18px}}@media (max-width:425px){.StreamToastWithCTA-embeddedPlayerContainer{font-size:12px;line-height:16px;padding:8px 12px}.StreamToastWithCTA-embeddedPlayerContainer .StreamToastWithCTA-switchButton{font-size:10px;line-height:12px;margin-left:10px;padding:5.5px 14.5px}.StreamToastWithCTA-embeddedPlayerContainer .StreamToastWithCTA-dismissButton{height:14px;margin-left:10px;width:14px}}.StreamToastWithCTA-text{align-self:center}.StreamToastAutoSwitch-toastMessage{background-color:#171717;border-radius:3px;display:flex;flex-direction:column;justify-content:center;margin:auto;opacity:.85!important;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content}.StreamToastAutoSwitch-textAndButton{color:#fff;display:flex;flex-direction:row;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-style:normal;font-weight:600;justify-content:center;line-height:22px;padding:12px 24px}.StreamToastAutoSwitch-textAndButton .StreamToastAutoSwitch-dismissButton{margin-left:18px}@media (max-width:425px){.StreamToastAutoSwitch-textAndButton{font-size:12px;line-height:16px;padding:8px 12px}.StreamToastAutoSwitch-textAndButton .StreamToastAutoSwitch-dismissButton{height:14px;margin-left:10px;width:14px}}@media (max-width:1020px){.StreamToastAutoSwitch-embeddedPlayerContainer{font-size:12px;line-height:16px;padding:8px 12px}.StreamToastAutoSwitch-embeddedPlayerContainer .StreamToastAutoSwitch-dismissButton{height:14px;margin-left:10px;width:14px}}@media (max-width:759px){.StreamToastAutoSwitch-embeddedPlayerContainer{font-size:16px;line-height:24px;padding:12px 24px}.StreamToastAutoSwitch-embeddedPlayerContainer .StreamToastAutoSwitch-dismissButton{margin-left:18px}}@media (max-width:425px){.StreamToastAutoSwitch-embeddedPlayerContainer{font-size:12px;line-height:16px;padding:8px 12px}.StreamToastAutoSwitch-embeddedPlayerContainer .StreamToastAutoSwitch-dismissButton{height:14px;margin-left:10px;width:14px}}.MvpdLogout-mvpdLogout{background-position:50%;background-repeat:no-repeat;background-size:contain;font-weight:700;height:50px;position:absolute;right:10px;top:5px;width:100px}.MvpdLogout-mvpdLogout:hover .MvpdLogout-mvpdLogoutDropdown{display:block}.MvpdLogout-mvpdLogoutDropdown{background-color:#f2f2f2;cursor:pointer;display:none;font-weight:700;padding:10px 20px;position:absolute;right:0;top:50px;white-space:nowrap}.MvpdServiceProvider-mvpdProvider{display:flex;position:relative}.MvpdServiceProvider-mvpdProvider--twc:after{color:#fff;content:"*";font-size:1.5rem;position:absolute;right:10px;top:8px}.MvpdServiceProvider-mvpdProviderFeatured{background:#383838;box-sizing:border-box;height:70px;margin:0 2px 2px 0;max-width:122px;padding:10px;width:calc(33% - 2px)}.MvpdServiceProvider-mvpdProviderFeatured:nth-child(3n){margin-right:0}@media (min-width:1020px){.MvpdServiceProvider-mvpdProviderFeatured{height:68px;margin:0 3px 3px 0;max-width:122px;width:calc(20% - 3px)}.MvpdServiceProvider-mvpdProviderFeatured:nth-child(3n){margin-right:3px}.MvpdServiceProvider-mvpdProviderFeatured:nth-child(5n){margin-right:0}}@media (min-width:1340px){.MvpdServiceProvider-mvpdProviderFeatured{height:92px;max-width:190px}}.MvpdServiceProvider-mvpdProviderFeatured:hover{background-color:#484848}.MvpdServiceProvider-mvpdProviderFeatured .MvpdServiceProvider-mvpdProviderContent{height:100%;margin:auto;max-height:28px;max-width:97px;position:relative;width:100%}@media (min-width:1020px){.MvpdServiceProvider-mvpdProviderFeatured .MvpdServiceProvider-mvpdProviderContent{max-height:30px;max-width:102px}}@media (min-width:1340px){.MvpdServiceProvider-mvpdProviderFeatured .MvpdServiceProvider-mvpdProviderContent{max-height:35px;max-width:138px}}.MvpdServiceProvider-mvpdProviderFeatured img{bottom:0;left:0;margin:auto;max-height:100%;max-width:100%;position:absolute;right:0;top:0}.MvpdServiceProvider-mvpdProviderFull .MvpdServiceProvider-mvpdProviderContent{color:#000;padding:7px 30px;text-transform:none}.MvpdServiceProvider-mvpdProviderFull .MvpdServiceProvider-mvpdProviderContent:hover{background:#fff}.MvpdPredictiveResults-mvpdPredictive{position:relative}@media (min-width:760px){.MvpdPredictiveResults-mvpdPredictive{margin:0}}.MvpdPredictiveResults-mvpdPredictiveResults{background-color:#eee;border:1px solid #e6e6e6;list-style-type:none;margin-top:18px;padding:0}.MvpdPredictiveResults-mvpdPredictiveItem{border-bottom:1px solid #e6e6e6;box-sizing:border-box;color:#000;font-size:1.25rem;height:48px;line-height:1.125rem;padding:14px 15px;text-align:left}@media (min-width:1020px){.MvpdPredictiveResults-mvpdPredictiveItem{font-size:1.125rem;height:50px;padding:16px 15px}}@media (min-width:1340px){.MvpdPredictiveResults-mvpdPredictiveItem{height:54px;line-height:1.5rem}}.MvpdPredictiveResults-mvpdPredictiveItem:hover{background-color:#e6e6e6;cursor:pointer}.MvpdPredictiveResults-mvpdPredictiveItem a{text-transform:none}.MvpdPredictiveResults-mvpdPredictiveItemSelected{background-color:#e6e6e6;cursor:pointer}.MvpdPredictiveResults-mvpdPredictiveResultsList{position:relative}.MvpdPredictiveResults-mvpdPredictiveResultsFull{margin-bottom:18px;margin-top:0;max-height:352px;overflow-y:scroll}@media (min-width:1020px){.MvpdPredictiveResults-mvpdPredictiveResultsFull{margin-bottom:26px;max-height:246px}}@media (min-width:1340px){.MvpdPredictiveResults-mvpdPredictiveResultsFull{margin-bottom:42px;max-height:308px}}.MvpdPredictiveInput-mvpdPredictive{position:relative}@media (min-width:760px){.MvpdPredictiveInput-mvpdPredictive{margin:0}}.MvpdPredictiveInput-mvpdPredictiveIcon{height:26px;pointer-events:none;position:absolute;right:15px;top:50%;transform:translateY(-50%);width:26px}@media (min-width:1020px){.MvpdPredictiveInput-mvpdPredictiveIcon{height:24px;width:24px}}@media (min-width:1340px){.MvpdPredictiveInput-mvpdPredictiveIcon{height:26px;width:26px}}.MvpdPredictiveInput-mvpdPredictiveIcon:before{color:#666;font-size:12px;pointer-events:all;position:relative}.MvpdPredictiveInput-mvpdPredictiveIconClose:before{cursor:pointer;font-size:18px;top:3px}.MvpdPredictiveInput-mvpdPredictiveIconSearch:before{font-size:20px;top:2px}.MvpdPredictiveInput-mvpdPredictiveInput{border:none;box-sizing:border-box;color:#1e1e1e;font-size:1.25rem;height:48px;padding:0 15px;pointer-events:all;width:100%}@media (min-width:1020px){.MvpdPredictiveInput-mvpdPredictiveInput{font-size:1.125rem;height:50px;padding:0 20px}}@media (min-width:1340px){.MvpdPredictiveInput-mvpdPredictiveInput{font-size:1.5rem}}.MvpdFooter-mvpdDialogFaq{color:#fff;display:block;font-size:1.25rem;margin-top:20px;text-align:left}.MvpdFooter-mvpdDialogFaq a{text-transform:none!important}@media (min-width:1020px){.MvpdFooter-mvpdDialogFaq{font-size:1.125rem;margin-top:24px;text-align:center}}@media (min-width:1340px){.MvpdFooter-mvpdDialogFaq{font-size:1.375rem;margin-top:42px}}.MvpdDialog-episodePageEmbed{background:#000}.MvpdDialog-episodePageEmbed .MvpdDialog-mvpdDialog{padding:20px 15px}.MvpdDialog-mvpdDialog{background:#000;padding:20px 15px}@media (min-width:760px){.MvpdDialog-mvpdDialog{padding:15px}}@media (min-width:1020px){.MvpdDialog-mvpdDialog{padding:32px 15px}}@media (min-width:1340px){.MvpdDialog-mvpdDialog{padding:48px 15px 235px}}.MvpdDialog-mvpdDialog a{color:#005594;cursor:pointer;text-decoration:none;text-transform:uppercase}.MvpdDialog-mvpdDialog a:hover{opacity:.7}.MvpdDialog-mvpdDialog a.MvpdDialog-mvpdDialogBack{text-transform:none}.MvpdDialog-mvpd-dialog__animate-appear{opacity:.01}.MvpdDialog-mvpd-dialog__animate-appear.MvpdDialog-mvpd-dialog__animate-enter-active{opacity:1;transition:opacity .6s ease-in-out}.MvpdDialog-mvpd-dialog__animate-enter{opacity:.01}.MvpdDialog-mvpd-dialog__animate-enter.MvpdDialog-mvpd-dialog__animate-enter-active{opacity:1;transition:opacity .6s ease-in-out}.MvpdDialog-mvpdDialogIframe{box-sizing:border-box;display:table;margin:auto;max-width:370px;text-align:center}@media (min-width:1020px){.MvpdDialog-mvpdDialogIframe{max-width:612px}}@media (min-width:1340px){.MvpdDialog-mvpdDialogIframe{max-width:832px}}.MvpdDialog-mvpdDialogIframe iframe{border:none;max-width:100%}.MvpdDialog-mvpdDialogIframe .MvpdDialog-mvpdDialogBack{margin-bottom:1rem;position:static}.MvpdDialog-mvpdDialogFeatured,.MvpdDialog-mvpdDialogFull{margin:0 auto;text-align:center}.MvpdDialog-mvpdDialogFeatured{margin:auto;max-width:370px}@media (min-width:760px){.MvpdDialog-mvpdDialogFeatured{max-width:370px;min-height:475px}}@media (min-width:1020px){.MvpdDialog-mvpdDialogFeatured{max-width:612px;min-height:475px}}@media (min-width:1340px){.MvpdDialog-mvpdDialogFeatured{max-width:832px}}.MvpdDialog-mvpdDialogFeatured .MvpdDialog-mvpdDialogProviders{display:flex;flex-wrap:wrap;justify-content:center;margin-bottom:30px}.MvpdDialog-mvpdDialogFull{max-width:370px;position:relative}@media (min-width:1020px){.MvpdDialog-mvpdDialogFull{max-width:612px}}@media (min-width:1340px){.MvpdDialog-mvpdDialogFull{max-width:832px}}.MvpdDialog-mvpdDialogFull .MvpdDialog-mvpdDialogProviders{text-align:left}.MvpdDialog-mvpdDialogTitle{color:#fff;font-size:1.5rem;line-height:1.5rem;margin-bottom:20px;text-transform:uppercase}@media (min-width:760px){.MvpdDialog-mvpdDialogTitle{margin-bottom:10px}}@media (min-width:1020px){.MvpdDialog-mvpdDialogTitle{font-size:1.75rem;margin-bottom:20px}}@media (min-width:1340px){.MvpdDialog-mvpdDialogTitle{font-size:1.875rem}}.MvpdDialog-mvpdDialogDescription{color:#fff;font-size:1.25rem;line-height:24px;margin-bottom:1rem;text-align:left}@media (min-width:760px){.MvpdDialog-mvpdDialogDescription{margin-bottom:11px}}@media (min-width:1020px){.MvpdDialog-mvpdDialogDescription{font-size:1.125rem;margin-bottom:24px;text-align:center}}@media (min-width:1340px){.MvpdDialog-mvpdDialogDescription{font-size:1.375rem}}.MvpdDialog-mvpd-dialog__twc{color:#f1f1f1;font-size:1rem;text-align:left}@media (min-width:1020px){.MvpdDialog-mvpd-dialog__twc{text-align:center}}.MvpdDialog-mvpdDialogFullLink{color:#fff;display:block;font-size:1.25rem;line-height:24px;margin:14px 0 12px;text-align:left}@media (min-width:1020px){.MvpdDialog-mvpdDialogFullLink{font-size:1.125rem;margin:26px 0 18px;text-align:center}}@media (min-width:1340px){.MvpdDialog-mvpdDialogFullLink{font-size:1.375rem;margin:42px 0 18px}}.MvpdDialog-mvpdDialogFullLink a{text-transform:none}.MvpdDialog-mvpdDialogBack{display:block;font-size:1.375rem;line-height:20px;margin-bottom:18px;text-align:left;text-transform:none}@media (min-width:1020px){.MvpdDialog-mvpdDialogBack{left:0;line-height:33px;position:absolute;top:42px}}@media (min-width:1340px){.MvpdDialog-mvpdDialogBack{top:45px}}.MvpdDialog-mvpd-dialog__predictive-input{border:none;width:100%}.MvpdDialog-mvpdDialogPredictive{position:relative}.MvpdDialog-mvpdDialogPredictive .MvpdDialog-mvpdPredictiveResults{left:0;max-height:240px;overflow-y:scroll;position:absolute;right:0;z-index:1}@media (min-width:1020px){.MvpdDialog-mvpdDialogPredictive .MvpdDialog-mvpdPredictiveResults{max-height:250px}}.MvpdDialog-mvpdDialogFullList{position:relative}.MvpdDialog-mvpdDialogFullList .MvpdDialog-mvpdDialogDescription{margin-top:20px}@media (min-width:760px){.MvpdDialog-mvpdDialogFullList .MvpdDialog-mvpdDialogDescription{font-size:1.375rem;margin-bottom:18px}}@media (min-width:1020px){.MvpdDialog-mvpdDialogFullList .MvpdDialog-mvpdDialogDescription{font-size:1.125rem;margin-top:32px}}@media (min-width:1340px){.MvpdDialog-mvpdDialogFullList .MvpdDialog-mvpdDialogDescription{font-size:1.375rem;margin-top:48px}}.MvpdDialog-mvpdDialogSubscribe{background-color:#383838;margin-bottom:5.5rem}.MvpdConcurrencyMessage-container{align-items:center;background:radial-gradient(51.05% 62.78% at 50% 26.48%,#062f62 0,#062956 37.18%,#051838 100%);display:flex;flex-direction:column;justify-content:center;padding:23px;width:100%}.MvpdConcurrencyMessage-logo{height:27px;margin-bottom:10px;width:185px}.MvpdConcurrencyMessage-message{margin-bottom:32px;width:350px}@media (max-width:359px){.MvpdConcurrencyMessage-message{width:266px}}.MvpdConcurrencyMessage-message p{color:#fff;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:23px;font-weight:700;line-height:28px;text-align:center}@media (max-width:359px){.MvpdConcurrencyMessage-message p{font-size:18px;line-height:24px}}.MvpdConcurrencyMessage-tryAgainButton{align-items:center;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#005594;border:1px solid #002f6c;border-radius:3px;color:#fff;cursor:pointer;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;height:50px!important;justify-content:center;letter-spacing:1px;margin:0 auto;padding:0 20px;padding:0!important;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%;width:191px}.MvpdConcurrencyMessage-tryAgainButton>span{display:block;line-height:12px}.MvpdConcurrencyMessage-tryAgainButton [class*=" icon-"],.MvpdConcurrencyMessage-tryAgainButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.MvpdConcurrencyMessage-tryAgainButton [class*=" icon-"]:before,.MvpdConcurrencyMessage-tryAgainButton [class^=icon-]:before{line-height:12px}.MvpdConcurrencyMessage-tryAgainButton:focus,.MvpdConcurrencyMessage-tryAgainButton:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}.MvpdConcurrencyMessage-tryAgainButton[class*=touchButton]:hover{background-color:#005594;border-color:#002f6c;color:#fff}@media (hover:hover){.MvpdConcurrencyMessage-tryAgainButton[class*=touchButton]:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}}@media (min-width:760px){.MvpdConcurrencyMessage-tryAgainButton{padding:0 30px;width:auto}}@media (max-width:359px){.MvpdConcurrencyMessage-tryAgainButton{width:100%}}@media (min-width:760px){.MvpdConcurrencyMessage-tryAgainButton{width:191px}}.MvpdConcurrencyMessage-tryAgainButton:last-child{margin-bottom:7px}.MvpdRedirect-unsupportedDevice{position:relative}.MvpdRedirect-redirectScreenMobile,.MvpdRedirect-redirectScreenTablet{height:auto;width:100%}.MvpdRedirect-appleButtonMobile{display:block;left:10%;position:absolute;top:55%;width:35%}.MvpdRedirect-appleButtonTablet{display:block;left:17%;position:absolute;top:70%;width:25%}.MvpdRedirect-androidButtonMobile{display:block;position:absolute;right:10%;top:55%;width:35%}.MvpdRedirect-androidButtonTablet{display:block;position:absolute;right:17%;top:70%;width:25%}.MvpdRedirect-downloadButton{height:auto;width:100%}.BionicPlayer-videoPlayer{height:100%;width:100%}.BionicPlayer-playerContainer{background-color:#000;height:90%;padding:60px 0}.BionicPlayer-playerContainer iframe{border:none}@media (min-width:760px){.BionicPlayer-playerContainer{margin:0 auto;max-height:calc(100vh - 130px);max-width:calc(177.77778vh - 231.11111px);padding:30px 120px}}.BionicPlayer-playerContainerUninitialized{background-color:transparent;position:absolute;top:0;width:100%}.BionicPlayer-playerContainerHidden{display:none}.BionicPlayer-slate{display:flex;height:100%;padding-top:20px;vertical-align:middle}.BionicPlayer-slateimg{margin:auto;max-height:50vh;max-width:100%}.video-player-progress{display:none!important}.video-player__controls{margin:0 auto 8%!important}@media (min-width:760px){.video-player__controls{margin:0 auto 6%!important}}.video-player__controls__container{background-color:transparent!important;height:39px!important}.PlayerLoader{position:unset!important}.video-ccoptions__overlay{display:block!important;position:unset!important;width:200px!important}.ccoptions-menu__content{bottom:40%!important;float:right!important;height:60px!important;position:absolute!important;right:12%!important;top:unset!important;width:unset!important;z-index:20!important}#ccPageOptions-audio-main,#ccPageOptions-captions-en,#ccPageOptions-edge-none{display:none!important}.video-ccoptions__header{border-bottom:1px solid #fcb700!important;color:#fcb700!important;font-family:Proxima Nova,Helvetica,Arial,sans-serif!important;font-size:20px!important;font-weight:700!important;margin-left:15px!important;padding:unset!important;padding-top:30px!important;width:90%!important}.video-ccoptions__close-button:before{margin-right:12px!important;margin-top:4px!important}.video-ccoptions__menu--item .video-ccoptions__menu--checkbox .checkbox__content{font-family:Proxima Nova,Helvetica,Arial,sans-serif!important;font-size:18px}.video-ccoptions__menu--item .video-ccoptions__menu--checkbox .checkbox__icon{float:right!important;position:absolute!important;right:0}.video-ccoptions__menu--item .video-ccoptions__item--icon{float:right;height:16px;margin-right:7px;position:absolute;right:0;width:16px}.video-ccoptions__submenu--title{font-family:Proxima Nova,Helvetica,Arial,sans-serif!important;font-size:16px!important}#audio-label{padding-top:20px}.video-ccoptions__close-button--wrapper .video-ccoptions__close-button:before{margin-top:10px!important}.ccpreferences-overlay__content,.video-ccpreferences__overlay{font-family:Proxima Nova,Helvetica,Arial,sans-serif!important}.ccpreferences-overlay__content{left:0!important}.video-ccpreferences__header{font-family:Proxima Nova,Helvetica,Arial,sans-serif!important}#captions-label{padding-top:10px!important}.video-ccoptions__panel{background-color:rgba(0,0,0,.7)!important}.BionicPlayer-geoErrorSlate{background:linear-gradient(#005594,#002f6c);height:50vh;margin:auto;position:relative;top:5vh;width:80vh}.BionicPlayer-geoErrorSlateText{color:#fff;font-size:26px;font-weight:500;line-height:2.5;margin:auto;position:relative;text-align:center;top:10vh}.BionicPlayer-geoRedirectLink{color:#fff;font-size:27px;font-weight:500;text-decoration:underline}.BionicPlayer-geoCNBCLogo{height:100px;margin:auto;position:relative;top:65px}@media only screen and (min-height:360px) and (max-height:700px){.BionicPlayer-geoErrorSlateText{font-size:18px;line-height:2;margin-top:10px}.BionicPlayer-geoRedirectLink{font-size:18px}.BionicPlayer-geoCNBCLogo{height:80px}}@media only screen and (max-width:1440px){.ccoptions-menu__content{right:8%!important}}@media only screen and (max-width:1340px){.ccoptions-menu__content{right:4%!important}}@media only screen and (min-width:1180px) and (max-width:1250px){.ccoptions-menu__content{height:70px!important}}@media only screen and (max-width:1020px){.ccoptions-menu__content{height:85px!important}.video-ccoptions__header{font-size:16px!important}.video-ccoptions__menu--item .video-ccoptions__menu--checkbox .checkbox__content{font-size:14px!important}.video-ccoptions__menu--item .video-ccoptions__item--icon{height:12px;width:12px}.video-ccoptions__submenu--title{font-size:12px!important}}@media only screen and (max-width:1180px){.ccoptions-menu__content{height:100px!important}}@media only screen and (max-height:800px){.ccoptions-menu__content{height:100px!important}}@media only screen and (max-height:700px){.ccoptions-menu__content{height:120px!important}.video-ccoptions__header{font-size:16px!important}.video-ccoptions__menu--item .video-ccoptions__menu--checkbox .checkbox__content{font-size:14px!important}.video-ccoptions__menu--item .video-ccoptions__item--icon{height:12px;width:12px}.video-ccoptions__submenu--title{font-size:12px!important}}.BionicPlayer-tempPassPlayerContainer{height:100%;width:100%}.BionicPlayer-tempPassPlayerContainer video{display:flex}.BionicPlayer-tempPassPlayerContainer .video-player__controls--cc,.BionicPlayer-tempPassPlayerContainer .video-player__controls--fullscreen{display:none!important}.BionicPlayer-tempPassPlayerContainer .video-player__controls{margin-bottom:0!important;padding:0!important}.BionicPlayer-tempPassPlayerContainer .video-player__controls__container{align-items:center;border-radius:0!important;height:28px!important}.BionicPlayer-tempPassPlayerContainer .video-player__controls--button{bottom:auto!important;height:24px!important;width:24px!important}.BionicPlayer-tempPassPlayerContainer .video-player__controls--button img,.BionicPlayer-tempPassPlayerContainer .video-player__controls--button svg{height:50%!important;transform:translate(-50%,-50%)!important}.BionicPlayer-tempPassPlayerContainer .video-player__controls--button:first-child{margin-left:5px!important}.BionicPlayer-tempPassPlayerContainer .video-player__controls__volume{bottom:auto!important;display:flex;left:30px!important;position:absolute!important}.BionicPlayer-tempPassPlayerContainer .video-player__controls--slider{display:none!important}.BionicPlayer-tempPassPlayerContainer .video-player__controls__top-button--icon{height:18px!important;width:18px!important}.LivePlayerChannel-channelContainer{background-color:#171717;display:block;overflow:visible;padding:10px;position:relative;width:100%}.LivePlayerChannel-channelContainer *{box-sizing:border-box}.LivePlayerChannel-channelHolder{background-color:#171717;display:flex;flex-wrap:wrap;justify-content:center;padding:5px 8px;width:100%}@media (max-width:1019px){.LivePlayerChannel-channelHolder{align-items:center;flex-direction:column;padding:5px 8px}}.LivePlayerChannel-leftContainer{display:block;width:295px}@media (max-width:1339px){.LivePlayerChannel-leftContainer{display:none}}.LivePlayerChannel-channels,.LivePlayerChannel-rightContainer{display:flex;text-align:center}.LivePlayerChannel-channels{background:rgba(60,184,120,.2);border-radius:26px;flex-direction:row;height:31px;margin-bottom:16px;margin-top:16px;position:relative;width:336px}.LivePlayerChannel-channels .LivePlayerChannel-slider{background-color:#3cb878;border-radius:30px;height:31px;left:0;position:absolute;top:0;transition:left .2s ease-in-out;width:112px}@media (max-width:759px){.LivePlayerChannel-channels .LivePlayerChannel-slider{width:88px}}.LivePlayerChannel-channels .LivePlayerChannel-buttonContainer{display:flex;flex-wrap:nowrap;width:336px}.LivePlayerChannel-channels .LivePlayerChannel-buttonContainer .LivePlayerChannel-selector{color:#000;cursor:pointer;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:700;height:31px;line-height:17px;transition:color .2s ease-in;width:112px;z-index:1}@media (max-width:759px){.LivePlayerChannel-channels .LivePlayerChannel-buttonContainer .LivePlayerChannel-selector{width:88px}}.LivePlayerChannel-channels .LivePlayerChannel-buttonContainer .LivePlayerChannel-buttonInactive{color:#fff;transition:color .2s ease-in}@media (max-width:759px){.LivePlayerChannel-channels{width:264px}}.LivePlayerChannel-embeddedPlayerSpacing{align-items:center;flex-direction:column}.LivePlayerChannel-embeddedPlayerSpacing .LivePlayerChannel-rightContainer{justify-content:space-around;padding:0 22px 16px;text-align:center;width:295px}@media (max-width:1019px){.LivePlayerChannel-embeddedPlayerSpacing .LivePlayerChannel-rightContainer{padding:0 16px 16px;width:300px}}@media (max-width:759px){.LivePlayerChannel-embeddedPlayerSpacing .LivePlayerChannel-rightContainer{padding:0 22px 16px;width:300px}}.LivePlayerChannel-embeddedPlayerSpacing .LivePlayerChannel-channels{background:rgba(60,184,120,.2);border-radius:26px;flex-direction:row;height:31px;margin-bottom:16px;margin-top:16px;position:relative;width:336px}.LivePlayerChannel-embeddedPlayerSpacing .LivePlayerChannel-channels .LivePlayerChannel-slider{background-color:#3cb878;border-radius:30px;height:31px;left:0;position:absolute;top:0;transition:left .2s ease-in-out;width:112px}@media (max-width:1019px){.LivePlayerChannel-embeddedPlayerSpacing .LivePlayerChannel-channels .LivePlayerChannel-slider{width:92px}}@media (max-width:759px){.LivePlayerChannel-embeddedPlayerSpacing .LivePlayerChannel-channels .LivePlayerChannel-slider{width:88px}}.LivePlayerChannel-embeddedPlayerSpacing .LivePlayerChannel-channels .LivePlayerChannel-buttonContainer{display:flex;flex-wrap:nowrap;width:336px}.LivePlayerChannel-embeddedPlayerSpacing .LivePlayerChannel-channels .LivePlayerChannel-buttonContainer .LivePlayerChannel-selector{color:#000;cursor:pointer;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:700;height:31px;line-height:17px;transition:color .2s ease-in;width:112px;z-index:1}@media (max-width:1019px){.LivePlayerChannel-embeddedPlayerSpacing .LivePlayerChannel-channels .LivePlayerChannel-buttonContainer .LivePlayerChannel-selector{width:92px}}@media (max-width:759px){.LivePlayerChannel-embeddedPlayerSpacing .LivePlayerChannel-channels .LivePlayerChannel-buttonContainer .LivePlayerChannel-selector{width:88px}}.LivePlayerChannel-embeddedPlayerSpacing .LivePlayerChannel-channels .LivePlayerChannel-buttonContainer .LivePlayerChannel-buttonInactive{color:#fff;transition:color .2s ease-in}@media (max-width:1019px){.LivePlayerChannel-embeddedPlayerSpacing .LivePlayerChannel-channels{width:276px}}@media (max-width:759px){.LivePlayerChannel-embeddedPlayerSpacing .LivePlayerChannel-channels{width:264px}}.LivePlayerChannel-rightContainer{justify-content:space-around;padding:8px 16px 22px;text-align:center;width:295px}@media (max-width:1019px){.LivePlayerChannel-rightContainer{padding:0 16px 16px;width:300px}}@media (max-width:759px){.LivePlayerChannel-rightContainer{padding:0 22px 16px;width:300px}}.LivePlayerChannel-rightContainer .LivePlayerChannel-linkButton{cursor:pointer;display:flex;text-decoration:none;transition:background-color .15s ease-in 50ms}.LivePlayerChannel-rightContainer .LivePlayerChannel-linkButton>.LivePlayerChannel-withEmphasis{height:26px;justify-content:center;padding:4px 0;transition:color .1s ease-in;width:133px}.LivePlayerChannel-rightContainer .LivePlayerChannel-linkButton>.LivePlayerChannel-noEmphasis{height:26px;justify-content:center;padding:4px 0;transition:color .1s ease-in}.LivePlayerChannel-rightContainer .LivePlayerChannel-noEmphasisIcon,.LivePlayerChannel-rightContainer .LivePlayerChannel-withEmphasisIcon{fill:#d9d9d9;margin-right:8px;margin-top:2px;transition:fill .1s ease-in}.LivePlayerChannel-rightContainer .LivePlayerChannel-linkButton:hover .LivePlayerChannel-noEmphasis,.LivePlayerChannel-rightContainer .LivePlayerChannel-linkButton:hover .LivePlayerChannel-withEmphasis{color:#fcb700}.LivePlayerChannel-rightContainer .LivePlayerChannel-linkButton:hover .LivePlayerChannel-noEmphasisIcon,.LivePlayerChannel-rightContainer .LivePlayerChannel-linkButton:hover .LivePlayerChannel-withEmphasisIcon{fill:#fcb700}.LivePlayerChannel-rightContainer .LivePlayerChannel-linkButton:active .LivePlayerChannel-withEmphasis{background-color:#fcb700;border-radius:30px;color:#171717}.LivePlayerChannel-rightContainer .LivePlayerChannel-linkButton:active .LivePlayerChannel-withEmphasisIcon{fill:#171717}.LivePlayerChannel-rightContainer .LivePlayerChannel-linkButton>span>img{display:inline-block;padding-right:8px;width:24px}.LivePlayerChannel-rightContainer .LivePlayerChannel-linkButton>span{color:#d9d9d9;display:inline-flex;flex-wrap:nowrap;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-style:normal;font-weight:700;text-decoration:none}@media (max-width:1019px){.LivePlayerChannel-rightContainer{flex-direction:row;margin-left:0;text-align:center;top:40px}}.WatchLiveRightRail-containerFluidWidths{margin:0 auto;width:100%}@media (min-width:1020px){.WatchLiveRightRail-containerFluidWidths{max-width:960px}}@media (min-width:1340px){.WatchLiveRightRail-containerFluidWidths{max-width:1290px}}.WatchLiveRightRail-containerWidth100{width:100%}.WatchLiveRightRail-page{display:block;margin-bottom:25px;overflow:visible}@media (min-width:760px){.WatchLiveRightRail-page{margin-bottom:28px}}.WatchLiveRightRail-pageGrid{margin-left:auto;margin-right:auto;max-width:1290px;overflow:visible;width:100%}.WatchLiveRightRail-pageWrapper{margin:0 auto;max-width:100%}@media (min-width:760px){.WatchLiveRightRail-pageWrapper{max-width:678px}}@media (min-width:1020px){.WatchLiveRightRail-pageWrapper{max-width:960px}}@media (min-width:1340px){.WatchLiveRightRail-pageWrapper{max-width:1290px}}@media (min-width:760px){.WatchLiveRightRail-pageWrapper{max-width:100%!important}}.WatchLiveRightRail-pageRow{display:flex;flex-direction:row;flex-wrap:wrap;padding:0 20px}@media (min-width:760px){.WatchLiveRightRail-pageRow{padding-left:0;padding-right:0}}@media (min-width:1020px){.WatchLiveRightRail-pageRow{display:flex;flex-direction:row;flex-wrap:wrap;padding:0 20px}}@media (min-width:1020px) and (min-width:760px){.WatchLiveRightRail-pageRow{padding-left:0;padding-right:0}}@media (max-width:1019px){.WatchLiveRightRail-pageRow{margin:0;padding:0}}@media (min-width:360px) and (max-width:759px){.WatchLiveRightRail-pageRow.WatchLiveRightRail-containerFluidWidths{padding:0 21px}}@media (min-width:760px) and (max-width:1019px){.WatchLiveRightRail-pageRow.WatchLiveRightRail-containerFluidWidths{padding:0 45px}}.WatchLiveRightRail-pageRowFlex{display:flex}.WatchLiveRightRail-rowUnderAd{margin-top:-29px}@media (min-width:1020px){.WatchLiveRightRail-rowUnderAd{margin-top:-50px}}@media (min-width:1340px){.WatchLiveRightRail-rowUnderAd{margin-top:-44px}}.WatchLiveRightRail-rowWithBackground{background:#cfd8e2;position:relative}.WatchLiveRightRail-rowWithBackground:after,.WatchLiveRightRail-rowWithBackground:before{background:#cfd8e2;content:"";display:block;height:100%;position:absolute;width:25vw}.WatchLiveRightRail-rowWithBackground:before{right:100%;top:0}.WatchLiveRightRail-rowWithBackground:after{left:100%;top:0}.WatchLiveRightRail-flipRowOrder .WatchLiveRightRail-col:first-child{order:2}@media (min-width:1020px){.WatchLiveRightRail-flipRowOrder .WatchLiveRightRail-col:first-child{order:1}}.WatchLiveRightRail-flipRowOrder .WatchLiveRightRail-col:last-child{order:1}@media (min-width:1020px){.WatchLiveRightRail-flipRowOrder .WatchLiveRightRail-col:last-child{order:2}}.WatchLiveRightRail-col{display:flex;flex-direction:column;flex-grow:0;flex-shrink:0;margin-right:30px;max-width:calc(100% - 30px);min-width:calc(100% - 30px)}@media (min-width:760px){.WatchLiveRightRail-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.WatchLiveRightRail-col{max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media screen and (min-width:1020px) and (-ms-high-contrast:none){.WatchLiveRightRail-col{max-width:100%;min-width:100%}}@media (min-width:1340px){.WatchLiveRightRail-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}.WatchLiveRightRail-col:last-child{margin-right:0}@media (min-width:360px) and (max-width:759px){.WatchLiveRightRail-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}}@media (min-width:760px) and (max-width:1019px){.WatchLiveRightRail-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}.WatchLiveRightRail-containerFluidWidths .WatchLiveRightRail-col{max-width:678px!important;min-width:678px}}@media (min-width:760px){.WatchLiveRightRail-col-3{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.WatchLiveRightRail-col-3{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.WatchLiveRightRail-col-3{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.WatchLiveRightRail-col-3{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.WatchLiveRightRail-col-3{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.WatchLiveRightRail-col-3{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(33.33333% - 20px);min-width:calc(33.33333% - 20px)}.WatchLiveRightRail-col-3:first-child{margin-left:0;margin-right:30px}}@media (min-width:1340px){.WatchLiveRightRail-col-3{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(25% - 22.5px);min-width:calc(25% - 22.5px)}}@media (min-width:760px){.WatchLiveRightRail-col-6{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.WatchLiveRightRail-col-6{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.WatchLiveRightRail-col-6{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.WatchLiveRightRail-col-6{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.WatchLiveRightRail-col-6{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.WatchLiveRightRail-col-6{flex-grow:0;flex-shrink:0;margin-left:0;margin-right:0;max-width:calc(44.44444% - 16.66667px);min-width:calc(44.44444% - 16.66667px)}.WatchLiveRightRail-col-6:first-child{margin-left:0;margin-right:30px}}@media (min-width:1340px){.WatchLiveRightRail-col-6{flex-grow:0;flex-shrink:0;margin-left:0;max-width:calc(50% - 15px);min-width:calc(50% - 15px)}}.WatchLiveRightRail-col-9 .BrandBanner-container{margin-bottom:30px;z-index:99}@media (min-width:1340px){.WatchLiveRightRail-col-9 .BrandBanner-container{margin-left:calc(-50vw - -538.5px)}}@media (min-width:760px){.WatchLiveRightRail-col-9 .BrandBanner-container{margin-bottom:-100px;margin-top:50px}.WatchLiveRightRail-col-9{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.WatchLiveRightRail-col-9{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.WatchLiveRightRail-col-9{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.WatchLiveRightRail-col-9{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.WatchLiveRightRail-col-9{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.WatchLiveRightRail-col-9{flex-grow:0;flex-shrink:0;margin-right:0;max-width:calc(66.66667% - 10px);min-width:calc(66.66667% - 10px)}.WatchLiveRightRail-col-9:last-child{margin-right:0}}@media (min-width:1340px){.WatchLiveRightRail-col-9{flex-grow:0;flex-shrink:0;max-width:calc(75% - 7.5px);min-width:calc(75% - 7.5px)}.WatchLiveRightRail-col-9.WatchLiveRightRail-article{flex-grow:0;flex-shrink:0;margin-left:calc(8.33333% + 2.5px);max-width:calc(58.33333% - 12.5px);min-width:calc(58.33333% - 12.5px)}}@media (min-width:760px){.WatchLiveRightRail-col-12{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.WatchLiveRightRail-col-12{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.WatchLiveRightRail-col-12{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.WatchLiveRightRail-col-12{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.WatchLiveRightRail-col-12{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.WatchLiveRightRail-col-12{flex-grow:0;flex-shrink:0;margin-right:0;max-width:100%;min-width:100%}.WatchLiveRightRail-col-12:last-child{margin-right:0}}@media (min-width:1340px){.WatchLiveRightRail-col-12{flex-grow:0;flex-shrink:0;max-width:100%;min-width:100%}}.WatchLiveRightRail-col-full{flex-grow:0;flex-shrink:0;margin-right:0;max-width:100%;min-width:100%}.WatchLiveRightRail-col-full .MyComponentName-container{width:100vw}@media (min-width:1340px){.WatchLiveRightRail-col-full .MyComponentName-container{max-width:none}}.WatchLiveRightRail-col-full:last-child{margin-right:0}.WatchLiveRightRail-clear-col-padding{padding-bottom:0;padding-top:0}.WatchLiveRightRail-paddedWrapper{padding-bottom:15px;padding-top:15px}@media (min-width:1020px){.WatchLiveRightRail-paddedWrapper{padding-bottom:20px;padding-top:25px}.WatchLiveRightRail-hasBanner{margin-bottom:130px}}.WatchLiveRightRail-sidebar{flex-grow:0;flex-shrink:0;max-width:calc(100% - 30px);min-width:calc(100% - 30px)}@media (min-width:760px){.WatchLiveRightRail-sidebar{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.WatchLiveRightRail-sidebar{max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media screen and (min-width:1020px) and (-ms-high-contrast:none){.WatchLiveRightRail-sidebar{max-width:100%;min-width:100%}}@media (min-width:1340px){.WatchLiveRightRail-sidebar{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:360px){.WatchLiveRightRail-sidebar{min-width:100%}}@media (min-width:760px){.WatchLiveRightRail-sidebar{flex-grow:0;flex-shrink:0;max-width:100%;min-width:100%}}@media (min-width:1020px){.WatchLiveRightRail-sidebar{flex-grow:0;flex-shrink:0;margin-bottom:40px;margin-left:30px;max-width:calc(33.33333% - 20px);min-width:calc(33.33333% - 20px)}}@media (min-width:1340px){.WatchLiveRightRail-sidebar{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(25% - 22.5px);min-width:calc(25% - 22.5px)}}.WatchLiveRightRail-sidebarLeft{flex-grow:0;flex-shrink:0;max-width:calc(100% - 30px);min-width:calc(100% - 30px)}@media (min-width:760px){.WatchLiveRightRail-sidebarLeft{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.WatchLiveRightRail-sidebarLeft{max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media screen and (min-width:1020px) and (-ms-high-contrast:none){.WatchLiveRightRail-sidebarLeft{max-width:100%;min-width:100%}}@media (min-width:1340px){.WatchLiveRightRail-sidebarLeft{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:360px){.WatchLiveRightRail-sidebarLeft{min-width:100%}}@media (min-width:760px){.WatchLiveRightRail-sidebarLeft{flex-grow:0;flex-shrink:0;max-width:100%;min-width:100%}}@media (min-width:1020px){.WatchLiveRightRail-sidebarLeft{flex-grow:0;flex-shrink:0;margin-bottom:40px;margin-left:0;margin-right:30px;max-width:calc(22.22222% - 23.33333px);min-width:calc(22.22222% - 23.33333px);z-index:1}}@media (min-width:1340px){.WatchLiveRightRail-sidebarLeft{flex-grow:0;flex-shrink:0;margin-left:0;max-width:calc(25% - 22.5px);min-width:calc(25% - 22.5px)}}.WatchLiveRightRail-sidebarLeftNav{max-width:none}.WatchLiveRightRail-sidebarPro{margin-left:0;margin-right:30px}@media (min-width:360px){.WatchLiveRightRail-rightRail{display:none}}@media (min-width:760px){.WatchLiveRightRail-rightRail{display:block}}@media (min-width:1020px){.WatchLiveRightRail-mobileBanner{display:none}}.WatchLiveRightRail-desktopBanner{display:none}@media (min-width:1020px){.WatchLiveRightRail-desktopBanner{display:block}}.WatchLiveRightRail-container{border:4px solid #002f6c;color:#002f6c;margin-bottom:30px;padding:8px 16px}.WatchLiveRightRail-container a{color:#002f6c}.WatchLiveRightRail-header{display:flex;justify-content:space-between;margin-bottom:10px}.WatchLiveRightRail-header a{display:flex}.WatchLiveRightRail-liveTV{background:#fff;display:flex;font-size:14px;font-style:normal;font-weight:800;height:20px;line-height:18px;margin:-18px 0 0 -8px;padding:2px 10px;width:65px}.WatchLiveRightRail-liveTV img{margin-right:2px;width:22px}.WatchLiveRightRail-currTitle{display:block;font-size:20px;font-weight:800;line-height:18px;margin-bottom:10px;width:70%}@media (min-width:760px) and (max-width:1019px){.WatchLiveRightRail-currTitle{max-width:205px}}.WatchLiveRightRail-currTitle:hover{color:#2a7bb4}.WatchLiveRightRail-wlButton,.WatchLiveRightRail-wlButtonMobile{background:#ce2b2b;color:#fff!important;display:flex;font-weight:700;justify-content:space-evenly;margin-bottom:10px}.WatchLiveRightRail-wlButton:hover,.WatchLiveRightRail-wlButtonMobile:hover{background:#b40909}.WatchLiveRightRail-wlButton{display:none;font-size:12px;height:30px;padding:6px 4px}@media (min-width:1020px){.WatchLiveRightRail-wlButton{display:flex;width:130px}}.WatchLiveRightRail-wlButton .WatchLiveRightRail-logo{width:18px}.WatchLiveRightRail-wlButtonMobile{font-size:12px;padding:4px 6px}@media (min-width:760px){.WatchLiveRightRail-wlButtonMobile{display:flex;padding:4px;width:260px}}@media (min-width:1020px){.WatchLiveRightRail-wlButtonMobile{display:none}}.WatchLiveRightRail-contents{align-items:center;display:flex;justify-content:space-between}.WatchLiveRightRail-nextTitle{font-weight:800}.WatchLiveRightRail-footer{display:flex;font-size:12px;justify-content:space-between}.WatchLiveRightRail-footer .WatchLiveRightRail-audio{align-items:center;display:flex;font-size:12px;font-style:normal;font-weight:700;line-height:19px;margin-top:-3px;text-transform:capitalize}.WatchLiveRightRail-footer .WatchLiveRightRail-audio span{text-decoration:underline}.WatchLiveRightRail-footer .WatchLiveRightRail-nextShow{padding-right:22px}.WatchLiveRightRail-inline{border:none;border-top:3px solid #002f6c;padding:8px 0}@media (min-width:760px){.WatchLiveRightRail-inline{display:none}}@media (min-width:1020px){.WatchLiveRightRail-inline{display:block;margin-left:calc(16.66667% + 5px);min-width:auto}}@media (min-width:1340px){.WatchLiveRightRail-inline{margin-left:calc(14.28571% + 4.28571px);min-width:auto}}.WatchLiveRightRail-inline .WatchLiveRightRail-audio,.WatchLiveRightRail-inline .WatchLiveRightRail-liveTV{display:none}.WatchLiveRightRail-inline .WatchLiveRightRail-wlButton{margin-bottom:-10px;margin-top:0}.WatchLiveRightRail-berkshireEvent{margin-bottom:30px;max-width:300px;width:100%}@media (max-width:759px){.WatchLiveRightRail-berkshireEvent{display:block;margin:auto auto 15px;max-width:318px;width:100%}}.WatchLiveRightRail-BHmobileBanner{display:block}@media (min-width:480px){.WatchLiveRightRail-BHmobileBanner{display:none}}.WatchLiveRightRail-BHinline{display:none}.WatchLiveRightRail-BHrightRail{display:block}@media (min-width:760px){.WatchLiveRightRail-BHrightRail{display:none}}@media (min-width:1020px){.WatchLiveRightRail-BHrightRail{display:block}}.TempPassOverlay-overlay{height:0;pointer-events:none;position:relative;width:100%;z-index:1}.TempPassOverlay-liveContainer{align-items:center;background:#27313c;border-radius:4px;display:flex;height:20px;justify-content:center;position:absolute;right:5px;top:5px;width:57px}@-webkit-keyframes TempPassOverlay-blink{25%{opacity:1}50%{opacity:.4}75%{opacity:1}}@keyframes TempPassOverlay-blink{25%{opacity:1}50%{opacity:.4}75%{opacity:1}}.TempPassOverlay-redIcon{-webkit-animation:TempPassOverlay-blink 2s linear infinite;animation:TempPassOverlay-blink 2s linear infinite;background-clip:content-box;background-color:#ce2b2b;border:1px solid #b40909;border-radius:50%;box-sizing:content-box;height:7px;margin-top:-1px;padding:2px;width:7px}.TempPassOverlay-liveText{color:#fff;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-style:normal;font-weight:800;letter-spacing:.01em;line-height:15px;margin-left:5px;text-transform:uppercase}.TempPassOverlay-timerContainer{align-items:center;display:flex;height:20px;justify-content:left;position:absolute;right:5px;top:25px;width:57px}.TempPassOverlay-time{color:#fff;display:inline-block;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-style:normal;font-weight:600;letter-spacing:.05em;line-height:14px;margin-left:5px;max-width:36px;min-width:36px;text-shadow:0 0 2px #000,0 0 1px #000;width:36px}.TempPassOverlay-linkOut{margin-top:2px;pointer-events:auto}.TempPassOverlay-linkIcon{filter:drop-shadow(0 0 .5px #000) drop-shadow(0 0 .5px #000)}.LogoOverlay-logoContainer{align-items:center;border-radius:4px;display:flex;height:20px;justify-content:center;pointer-events:none;position:absolute;right:66px;top:6px;width:auto;z-index:1}.LogoOverlay-logoContainer img{filter:drop-shadow(1px 1px 0 black) drop-shadow(-1px -1px 0 black) drop-shadow(-1px 1px 0 black) drop-shadow(1px -1px 0 black);height:auto;width:57px}.TempPass-playerContainer{background:#000;position:relative}.LiveTV-contentArea{background-color:#000;height:100%;min-height:60vh;width:100%}.LiveTV-slate{display:flex;height:100%;padding-top:20px;vertical-align:middle}.LiveTV-slateimg{margin:auto;max-height:50vh;max-width:100%}.liveTV{margin-bottom:0!important}.LiveTV-loadingContainer{align-items:center;display:flex;justify-content:center;min-height:60vh}.LiveTV-concurrencyMessage{align-items:stretch;display:flex;min-height:60vh}.LiveTV-wrapperForProAndTempPass{margin-bottom:20px;width:100%}.LiveTV-channel{height:-webkit-fit-content;height:-moz-fit-content;height:fit-content}.LiveTV-channels,.LiveTV-leftContainer,.LiveTV-rightContainer{width:100%!important}.LiveTV-channels .LiveTV-buttonContainer .LiveTV-selector{text-align:center}.LiveTV-rightContainer .LiveTV-linkButton{justify-content:center;width:50%!important}
/*# sourceMappingURL=source-maps/components-PcmModule-LiveTV-caae409a260779766f29.css.map*/
.FeaturedVideoHeader-container{background-color:#171717;display:flex;justify-content:space-between;padding:23px 0 15px;width:100%}@media (min-width:760px){.FeaturedVideoHeader-container{padding:40px 0 0}}@media (min-width:1020px){.FeaturedVideoHeader-container{padding-top:44px}}.FeaturedVideoHeader-lightMode{background:#f7f7f7}.FeaturedVideoHeader-lightMode .FeaturedVideoHeader-title{border-color:#747474;color:#002f6c}.FeaturedVideoHeader-lightMode .FeaturedVideoHeader-callToAction{border-color:#002f6c;color:#002f6c}.FeaturedVideoHeader-title{border-top:1px solid #fff;color:#fff;font-size:30px;font-weight:800;letter-spacing:.33px;line-height:40px;margin-bottom:10px;padding-top:15px;position:relative;text-transform:uppercase;width:calc(100% - 146px)}.FeaturedVideoHeader-title:before{background:#fcb700;content:"";height:6px;left:0;position:absolute;top:-6px;width:80px}@media (min-width:760px){.FeaturedVideoHeader-title:before{width:110px}.FeaturedVideoHeader-title{line-height:37px;width:calc(100% - 142px)}}@media (min-width:1020px){.FeaturedVideoHeader-titleWithTwoBtns{font-size:32px;letter-spacing:.44px;line-height:40px;padding-bottom:5px;width:calc(100% - 284px)}}.FeaturedVideoHeader-titleDecorator{height:6px;left:0;position:absolute;top:-6px;width:110px}.FeaturedVideoHeader-callToAction{border:1px solid #fff;border-radius:0;color:#fff;font-size:12px;font-weight:600;height:40px;letter-spacing:1px;width:120px}.FeaturedVideoHeader-callToAction:focus,.FeaturedVideoHeader-callToAction:hover{background-color:#fcb700;border-color:#fcb700;color:#000}.FeaturedVideoHeader-wideOnly{display:none}@media (min-width:1020px){.FeaturedVideoHeader-wideOnly{display:inline-block}}.VideoRecirculationLinks-mobileWrapper{overflow-x:hidden;overflow-y:hidden;position:relative}.VideoRecirculationLinks-mobileWrapper::-webkit-scrollbar{display:none}@media (min-width:1020px){.VideoRecirculationLinks-mobileWrapper{margin:0}.VideoRecirculationLinks-mobileWrapper:after{content:none}}.VideoRecirculationLinks-container{-webkit-overflow-scrolling:touch;display:flex;margin:0;overflow-x:scroll;padding-top:25px;z-index:1}@media (max-width:759px){.VideoRecirculationLinks-container{padding-left:22px;padding-top:52px}}@media (min-width:760px){.VideoRecirculationLinks-container{margin:0 -15px;overflow:hidden}}@media (min-width:1020px){.VideoRecirculationLinks-container{flex-direction:column;height:100%;margin:-15px 0;padding-left:35px;padding-top:0}}@media (max-width:1019px){.VideoRecirculationLinks-container{padding-top:0}}.VideoRecirculationLinks-card{margin-bottom:40px;margin-right:30px;width:190px}.VideoRecirculationLinks-card:hover{cursor:pointer}.VideoRecirculationLinks-card:hover .VideoRecirculationLinks-title{color:#fff;text-decoration:underline}.VideoRecirculationLinks-card:hover .VideoRecirculationLinks-title.VideoRecirculationLinks-lightMode{color:#000}@media (max-width:759px){.VideoRecirculationLinks-card{margin-right:57px}}@media (min-width:760px){.VideoRecirculationLinks-card{flex-grow:1;margin-left:0;margin-right:0;min-width:0;padding:0 15px;width:33.33%}}@media (max-width:1019px){.VideoRecirculationLinks-card{display:flex;flex:none;flex-direction:column}}@media (min-width:1020px){.VideoRecirculationLinks-card{margin:0;padding:15px 0;position:relative;width:100%}.VideoRecirculationLinks-mobileWrapper .VideoRecirculationLinks-card:last-child{padding-right:0}}.VideoRecirculationLinks-watchVideoImage{display:block;height:0;padding-bottom:56.25%;position:relative;width:100%}.VideoRecirculationLinks-watchVideoImage:after{background-image:linear-gradient(-180deg,rgba(0,47,108,0),rgba(0,18,41,.49) 54%,rgba(0,0,0,.8));content:"";display:block;padding-bottom:calc(56.25% + 2px);position:absolute;right:0;top:0;width:100%;z-index:1}.VideoRecirculationLinks-playingVideoImage{border:2px solid #fff;display:block;height:0;padding-bottom:56.25%;position:relative;width:100%}.VideoRecirculationLinks-playingVideoImage:after{background-image:linear-gradient(-180deg,rgba(0,47,108,0),rgba(0,18,41,.49) 54%,rgba(0,0,0,.8));content:"";display:block;padding-bottom:calc(56.25% + 2px);position:absolute;right:0;top:0;width:100%;z-index:1}.VideoRecirculationLinks-playingVideoImage:before{border-bottom:12px solid #fff;border-left:8px solid transparent;border-right:8px solid transparent;content:"";height:0;left:45%;position:absolute;top:-12px;width:0}.VideoRecirculationLinks-playingVideoImage:after{background:none;border:2px solid #fff;margin-top:-2px;width:99%}@media (min-width:1020px){.VideoRecirculationLinks-playingVideoImage:before{border-bottom:8px solid transparent;border-right:12px solid #fff;border-top:8px solid transparent;left:-20px;top:45%}}.VideoRecirculationLinks-lightMode.VideoRecirculationLinks-playingVideoImage{border:2px solid #000}.VideoRecirculationLinks-lightMode.VideoRecirculationLinks-playingVideoImage:before{border-bottom:12px solid #000;border-left:8px solid transparent;border-right:8px solid transparent;content:"";height:0;left:45%;position:absolute;top:-12px;width:0}.VideoRecirculationLinks-lightMode.VideoRecirculationLinks-playingVideoImage:after{background:none;border:2px solid #000;margin-top:-2px;width:99%}@media (min-width:1020px){.VideoRecirculationLinks-lightMode.VideoRecirculationLinks-playingVideoImage:before{border-bottom:8px solid transparent;border-right:12px solid #000;border-top:8px solid transparent;left:-20px;top:45%}}.VideoRecirculationLinks-title{color:#7b7b7b;color:#000;font-size:17px;font-weight:600;line-height:18px;padding-top:10px}.VideoRecirculationLinks-playing .VideoRecirculationLinks-title{color:#fff}.VideoRecirculationLinks-playing .VideoRecirculationLinks-title.VideoRecirculationLinks-lightMode{color:#000}@media (max-width:759px){.VideoRecirculationLinks-title{padding-top:18px}}@media (min-width:1020px){.VideoRecirculationLinks-title{font-size:16px;line-height:20px;margin-left:174px;margin-top:15px;padding-top:0;position:absolute;top:0}}@media (min-width:1180px){.VideoRecirculationLinks-title{margin-left:186px}}@media (min-width:1340px){.VideoRecirculationLinks-title{font-size:18px;margin-left:240px}}.VideoRecirculationLinks-buttonWrapper{padding:0;width:100%}@media (min-width:1020px){.VideoRecirculationLinks-buttonWrapper{width:146px}}@media (min-width:1180px){.VideoRecirculationLinks-buttonWrapper{width:168px}}@media (min-width:1340px){.VideoRecirculationLinks-buttonWrapper{width:208px}}.VideoRecirculationLinks-toutTime{background:none;bottom:2px;color:hsla(0,0%,100%,.8);font-size:12px;font-weight:700;left:12px;letter-spacing:.12em;line-height:15px;padding:0;position:absolute;z-index:2}.VideoRecirculationLinks-toutTimeLabel{color:#fcb700;font-size:12px;font-weight:800;letter-spacing:1.44px;line-height:15px;margin-right:4px}.FeaturedLiveTvModule-container{background-color:#171717;margin:initial;margin-top:-1.2rem;padding:0 20px}@media (min-width:760px){.FeaturedLiveTvModule-container{display:flex}}@media (max-width:759px){.FeaturedLiveTvModule-mobileWrapper .FeaturedLiveTvModule-container{margin-right:0}}.FeaturedLiveTvModule-lightMode{background:#f7f7f7}.FeaturedLiveTvModule-grid{margin-left:auto;margin-right:auto;max-width:1290px;overflow:visible;width:100%}.FeaturedLiveTvModule-contentWrapper{margin:0 auto;max-width:100%}@media (min-width:760px){.FeaturedLiveTvModule-contentWrapper{max-width:678px}}@media (min-width:1020px){.FeaturedLiveTvModule-contentWrapper{max-width:960px}}@media (min-width:1340px){.FeaturedLiveTvModule-contentWrapper{max-width:1290px}}@media (min-width:760px){.FeaturedLiveTvModule-contentWrapper{padding-bottom:0}}@media (min-width:1340px){.FeaturedLiveTvModule-contentWrapper{padding-bottom:0}}@media (min-width:1020px){.FeaturedLiveTvModule-content{display:flex;padding-bottom:60px}}@media (min-width:1340px){.FeaturedLiveTvModule-content{padding-bottom:80px}}.FeaturedLiveTvModule-videoPlayerContainer{margin:0 -20px}@media (min-width:760px){.FeaturedLiveTvModule-videoPlayerContainer{margin:0}}@media (min-width:1020px){.FeaturedLiveTvModule-videoPlayerContainer{flex-grow:0;flex-shrink:0;max-width:57.14286%;min-width:57.14286%}}@media (max-width:759px){.FeaturedLiveTvModule-playlistContainer{margin-left:-20px;width:100vw}}@media (min-width:1020px){.FeaturedLiveTvModule-playlistContainer{flex-grow:0;flex-shrink:0;max-width:42.85714%;min-width:42.85714%}}.FeaturedLiveTvModule-videoPlaceholder{background-color:gray;height:100%;width:100%}@media (min-width:360px){.FeaturedLiveTvModule-proLivePlayer{margin-bottom:20px;padding:0 20px}}@media (min-width:1020px){.FeaturedLiveTvModule-proLivePlayer{margin-bottom:0}}@media (min-width:1340px){.FeaturedLiveTvModule-proLivePlayer{margin-bottom:0}}.VideoPlayer-container{display:block;position:relative}.VideoPlayer-container:hover~.VideoPlayer-title{text-decoration:underline}.VideoPlayer-image{padding-bottom:56.2%;position:relative;width:100%}.VideoPlayer-title{color:#fff;cursor:pointer;font-size:22px;font-weight:600;line-height:26px;max-height:150px;min-height:100px;padding:20px}.VideoPlayer-title:hover{text-decoration:underline}@media (min-width:760px){.VideoPlayer-title{font-size:24px;line-height:28px;padding:20px 0}}@media (min-width:1340px){.VideoPlayer-title{padding-bottom:40px}}@media (min-width:1020px){.VideoPlayer-title{font-size:30px;max-height:200px;min-height:120px}}.Playlist-mobileWrapper{overflow-x:hidden;overflow-y:hidden;position:relative}.Playlist-mobileWrapper::-webkit-scrollbar{display:none}@media (min-width:1020px){.Playlist-mobileWrapper{margin:0}.Playlist-mobileWrapper:after{content:none}}.Playlist-container{-webkit-overflow-scrolling:touch;display:flex;margin:0;overflow-x:scroll;padding-top:25px;z-index:1}@media (max-width:759px){.Playlist-container{padding-left:22px;padding-top:52px}}@media (min-width:760px){.Playlist-container{margin:0 -15px;overflow:hidden}}@media (min-width:1020px){.Playlist-container{flex-direction:column;height:100%;margin:-15px 0;padding-left:35px;padding-top:0}}.Playlist-card{margin-bottom:40px;margin-right:30px;width:190px}.Playlist-card:hover{cursor:pointer}.Playlist-card:hover .Playlist-title{color:#fff;text-decoration:underline}.Playlist-card:hover .Playlist-title.Playlist-lightMode{color:#000}@media (max-width:759px){.Playlist-card{margin-right:57px}}@media (min-width:760px){.Playlist-card{flex-grow:1;margin-left:0;margin-right:0;min-width:0;padding:0 15px;width:33.33%}}@media (max-width:1019px){.Playlist-card{display:flex;flex:none;flex-direction:column}}@media (min-width:1020px){.Playlist-card{margin:0;padding:15px 0;position:relative;width:100%}.Playlist-mobileWrapper .Playlist-card:last-child{padding-right:0}}.Playlist-watchVideoImage{display:block;height:0;padding-bottom:56.25%;position:relative;width:100%}.Playlist-watchVideoImage:after{background-image:linear-gradient(-180deg,rgba(0,47,108,0),rgba(0,18,41,.49) 54%,rgba(0,0,0,.8));content:"";display:block;padding-bottom:calc(56.25% + 2px);position:absolute;right:0;top:0;width:100%;z-index:1}.Playlist-playingVideoImage{border:2px solid #fff;display:block;height:0;padding-bottom:56.25%;position:relative;width:100%}.Playlist-playingVideoImage:after{background-image:linear-gradient(-180deg,rgba(0,47,108,0),rgba(0,18,41,.49) 54%,rgba(0,0,0,.8));content:"";display:block;padding-bottom:calc(56.25% + 2px);position:absolute;right:0;top:0;width:100%;z-index:1}.Playlist-playingVideoImage:before{border-bottom:12px solid #fff;border-left:8px solid transparent;border-right:8px solid transparent;content:"";height:0;left:45%;position:absolute;top:-12px;width:0}.Playlist-playingVideoImage:after{background:none;border:2px solid #fff;margin-top:-2px;width:99%}@media (min-width:1020px){.Playlist-playingVideoImage:before{border-bottom:8px solid transparent;border-right:12px solid #fff;border-top:8px solid transparent;left:-20px;top:45%}}.Playlist-lightMode.Playlist-playingVideoImage{border:2px solid #000}.Playlist-lightMode.Playlist-playingVideoImage:before{border-bottom:12px solid #000;border-left:8px solid transparent;border-right:8px solid transparent;content:"";height:0;left:45%;position:absolute;top:-12px;width:0}.Playlist-lightMode.Playlist-playingVideoImage:after{background:none;border:2px solid #000;margin-top:-2px;width:99%}@media (min-width:1020px){.Playlist-lightMode.Playlist-playingVideoImage:before{border-bottom:8px solid transparent;border-right:12px solid #000;border-top:8px solid transparent;left:-20px;top:45%}}.Playlist-title{color:#7b7b7b;font-size:17px;font-weight:600;line-height:18px;padding-top:10px}.Playlist-playing .Playlist-title{color:#fff}.Playlist-playing .Playlist-title.Playlist-lightMode{color:#000}@media (max-width:759px){.Playlist-title{padding-top:18px}}@media (min-width:1020px){.Playlist-title{font-size:16px;line-height:20px;margin-left:174px;margin-top:15px;padding-top:0;position:absolute;top:0}}@media (min-width:1180px){.Playlist-title{margin-left:186px}}@media (min-width:1340px){.Playlist-title{font-size:18px;margin-left:240px}}.Playlist-buttonWrapper{padding:0;width:100%}@media (min-width:1020px){.Playlist-buttonWrapper{width:146px}}@media (min-width:1180px){.Playlist-buttonWrapper{width:168px}}@media (min-width:1340px){.Playlist-buttonWrapper{width:208px}}.Playlist-toutTime{background:none;bottom:2px;color:hsla(0,0%,100%,.8);font-size:12px;font-weight:700;left:12px;letter-spacing:.12em;line-height:15px;padding:0;position:absolute;z-index:2}.Playlist-toutTimeLabel{color:#fcb700;font-size:12px;font-weight:800;letter-spacing:1.44px;line-height:15px;margin-right:4px}@media (min-width:1020px){.Playlist-liveEventContainer .Playlist-container{flex-direction:row;height:unset;margin:0 -15px;padding-left:unset;padding-top:25px}.Playlist-liveEventContainer .Playlist-card{flex-grow:1;margin-bottom:40px;margin-left:0;margin-right:0;min-width:0;padding:0 15px;position:unset;width:33.33%}.Playlist-liveEventContainer .Playlist-buttonWrapper{width:100%}.Playlist-liveEventContainer .Playlist-title{font-size:17px;font-weight:600;line-height:18px;margin-left:unset;margin-top:unset;padding-top:10px;position:unset;top:unset}.Playlist-liveEventContainer .Playlist-playingVideoImage:before{border-bottom:12px solid #000;border-left:8px solid transparent;border-right:8px solid transparent;content:"";height:0;left:45%;position:absolute;top:-20px;width:0}.Playlist-liveEventContainer .Playlist-card:last-child{padding:0 15px}}.FeaturedVideoModule-container{background-color:#171717;margin:initial;margin-top:-1.2rem;padding:0 20px}@media (min-width:760px){.FeaturedVideoModule-container{display:flex}}@media (max-width:759px){.FeaturedVideoModule-mobileWrapper .FeaturedVideoModule-container{margin-right:0}}.FeaturedVideoModule-lightMode{background:#f7f7f7}.FeaturedVideoModule-grid{margin-left:auto;margin-right:auto;max-width:1290px;overflow:visible;width:100%}.FeaturedVideoModule-contentWrapper{margin:0 auto;max-width:100%}@media (min-width:760px){.FeaturedVideoModule-contentWrapper{max-width:678px}}@media (min-width:1020px){.FeaturedVideoModule-contentWrapper{max-width:960px}}@media (min-width:1340px){.FeaturedVideoModule-contentWrapper{max-width:1290px}}@media (min-width:760px){.FeaturedVideoModule-contentWrapper{padding-bottom:0}}@media (min-width:1340px){.FeaturedVideoModule-contentWrapper{padding-bottom:0}}@media (min-width:1020px){.FeaturedVideoModule-content{display:flex;padding-bottom:60px}}@media (min-width:1340px){.FeaturedVideoModule-content{padding-bottom:80px}}.FeaturedVideoModule-videoPlayerContainer{margin:0 -20px}@media (min-width:760px){.FeaturedVideoModule-videoPlayerContainer{margin:0}}@media (min-width:1020px){.FeaturedVideoModule-videoPlayerContainer{flex-grow:0;flex-shrink:0;max-width:57.14286%;min-width:57.14286%}}@media (max-width:759px){.FeaturedVideoModule-playlistContainer{margin-left:-20px;width:100vw}}@media (min-width:1020px){.FeaturedVideoModule-playlistContainer{flex-grow:0;flex-shrink:0;max-width:42.85714%;min-width:42.85714%}}@media (min-width:760px){.FeaturedVideoModule-liveEventContainer .FeaturedVideoModule-playlistContainer{max-width:unset;min-width:unset}.FeaturedVideoModule-liveEventContainer .FeaturedVideoModule-content{display:block}}@media (min-width:1020px){.FeaturedVideoModule-liveEventContainer .FeaturedVideoModule-content{padding-bottom:unset}}@media (min-width:1340px){.FeaturedVideoModule-liveEventContainer .FeaturedVideoModule-content{padding-bottom:unset}}@media (min-width:1020px){.FeaturedVideoModule-liveEventContainer .FeaturedVideoModule-videoPlayerContainer{max-width:unset;min-width:unset}}.SmallStockQuote-container{display:block;height:100%;position:relative;width:100%}.SmallStockQuote-container a,.SmallStockQuote-container a:focus,.SmallStockQuote-container a:hover{text-decoration:none!important}.SmallStockQuote-articleContainer{flex-shrink:1;font-family:Proxima Nova,Helvetica,Arial,sans-serif}.SmallStockQuote-articleContainer a,.SmallStockQuote-articleContainer a:focus,.SmallStockQuote-articleContainer a:hover{text-decoration:none!important}@media (min-width:760px){.SmallStockQuote-articleContainer{width:442px}}@media (min-width:1020px){.SmallStockQuote-articleContainer{margin-left:0!important;width:460px}}@media (min-width:1340px){.SmallStockQuote-articleContainer{width:410px}}.SmallStockQuote-watchListContainer a,.SmallStockQuote-watchListContainer a:focus,.SmallStockQuote-watchListContainer a:hover{text-decoration:none!important}.SmallStockQuote-main{background-color:#fff;border:1px dashed #b9c7d5;border-top:6px solid #9b9b9b;padding:10px 20px 20px}.SmallStockQuote-watchListContainer .SmallStockQuote-main{padding-top:25px}@media (min-width:1340px){.SmallStockQuote-watchListContainer .SmallStockQuote-main{padding-bottom:15px}}.SmallStockQuote-articleContainer .SmallStockQuote-main{height:143px}@media (min-width:760px){.SmallStockQuote-articleContainer .SmallStockQuote-main{height:199px;padding-top:20px}}@media (min-width:1020px){.SmallStockQuote-articleContainer .SmallStockQuote-main{height:161px;padding-top:10px}}@media (min-width:1340px){.SmallStockQuote-articleContainer .SmallStockQuote-main{height:143px}}.SmallStockQuote-top{display:flex;justify-content:space-between;margin-bottom:10px;min-height:41px}.SmallStockQuote-data{color:#000;display:flex;flex-wrap:wrap;justify-content:space-between}.SmallStockQuote-last{min-height:55px;width:100%}@media (min-width:1340px){.SmallStockQuote-watchListContainer .SmallStockQuote-last{width:auto}}.SmallStockQuote-articleContainer .SmallStockQuote-last{width:auto}.SmallStockQuote-change,.SmallStockQuote-percChange{min-height:43px}.SmallStockQuote-posMain{border-top:6px solid #008456}.SmallStockQuote-negMain{border-top:6px solid #ce2b2b}.SmallStockQuote-marketInfo{display:flex;justify-content:flex-start;max-width:262px}@media (min-width:760px){.SmallStockQuote-marketInfo{max-width:none}}.SmallStockQuote-marketValue{font-size:28px;font-weight:600}@media (min-width:760px){.SmallStockQuote-articleContainer .SmallStockQuote-marketValue{font-size:39px}}@media (min-width:1020px){.SmallStockQuote-articleContainer .SmallStockQuote-marketValue{font-size:36px;line-height:30px}}@media (min-width:1340px){.SmallStockQuote-articleContainer .SmallStockQuote-marketValue{font-size:32px}}.SmallStockQuote-arrow{border-bottom:25px solid #008456;border-left:13px solid transparent;border-right:13px solid transparent;height:0;margin-left:5px;overflow:hidden;position:relative;top:5px;width:0}@media (min-width:760px){.SmallStockQuote-arrow{border-bottom:36px solid #008456;border-left:20px solid transparent;border-right:20px solid transparent}}@media (min-width:1020px){.SmallStockQuote-arrow{border-bottom:30px solid #008456;border-left:16px solid transparent;border-right:16px solid transparent}}@media (min-width:1340px){.SmallStockQuote-arrow{border-bottom:25px solid #008456;border-left:13px solid transparent;border-right:13px solid transparent}}.SmallStockQuote-label{color:#8b8b8b;font-size:10px;font-weight:600;letter-spacing:1px}@media (min-width:760px){.SmallStockQuote-articleContainer .SmallStockQuote-label{font-size:14px;letter-spacing:1.39px}}@media (min-width:1340px){.SmallStockQuote-articleContainer .SmallStockQuote-label{font-size:12px;letter-spacing:1.2px}}.SmallStockQuote-value{color:#008456;font-size:20px;font-weight:400}@media (min-width:760px){.SmallStockQuote-articleContainer .SmallStockQuote-value{font-size:27.8px}}@media (min-width:1020px){.SmallStockQuote-articleContainer .SmallStockQuote-value{font-size:24.7px;line-height:30px}}@media (min-width:1340px){.SmallStockQuote-articleContainer .SmallStockQuote-value{font-size:27px}}.SmallStockQuote-negValue{color:#ce2b2b}.SmallStockQuote-negArrow{border-bottom:0;border-top:25px solid #ce2b2b;bottom:0}@media (min-width:760px){.SmallStockQuote-negArrow{border-top:36px solid #ce2b2b}}@media (min-width:1020px){.SmallStockQuote-negArrow{border-top:30px solid #ce2b2b}}@media (min-width:1340px){.SmallStockQuote-negArrow{border-top:25px solid #ce2b2b}}.SmallStockQuote-symbol{color:#000;font-size:28px;font-weight:700;letter-spacing:1.75px;text-transform:uppercase}.SmallStockQuote-symbol:hover,a:focus .SmallStockQuote-symbol,a:hover .SmallStockQuote-symbol{color:#2077b6}@media (min-width:760px){.SmallStockQuote-articleContainer .SmallStockQuote-symbol{font-size:39px;letter-spacing:2.43px}}@media (min-width:1020px){.SmallStockQuote-articleContainer .SmallStockQuote-symbol{font-size:36px;letter-spacing:2.24px}}@media (min-width:1340px){.SmallStockQuote-articleContainer .SmallStockQuote-symbol{font-size:32px;letter-spacing:2px}}.SmallStockQuote-name{color:#000;flex:0 1 auto;font-size:16px;font-weight:400;letter-spacing:.84px;margin-left:10px;margin-top:12px;max-width:200px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}@media (min-width:760px){.SmallStockQuote-name{font-size:22px;letter-spacing:1.17px;margin-top:20px;max-width:175px}}@media (min-width:1020px){.SmallStockQuote-name{font-size:21px;letter-spacing:1.12px;margin-top:12px;max-width:200px}}@media (min-width:1340px){.SmallStockQuote-name{font-size:19px;letter-spacing:1px;max-width:150px}}.PeopleCard-card{display:block;height:100%;position:relative;width:100%}.PeopleCard-peopleImage{background-position:50%;background-size:cover;height:0;padding-bottom:75%;width:100%}.PeopleCard-name{background-color:#071d39;bottom:0;color:#fff;font-size:10px;font-weight:700;line-height:10px;min-height:35px;padding:10px;position:absolute;width:100%}@media (min-width:760px){.PeopleCard-name{font-size:16px;line-height:16px}}@media (min-width:1340px){.PeopleCard-name{font-size:20px;line-height:20px}}.PeopleCard-card:hover .PeopleCard-description{color:#fff;max-height:160px;padding-top:10px;transition:max-height 1s ease-out,color .5s ease-out}.PeopleCard-description{color:hsla(0,0%,100%,0);font-size:12px;font-weight:500;line-height:14px;max-height:0;overflow:hidden;transition:all .3s}.ClipCard-container{width:100%}.ClipCard-mediaContainer{position:relative}.ClipCard-mediaContainer:before{background-color:#fcb700;content:"";height:6px;left:0;position:absolute;top:0;width:100%}.ClipCard-image{padding-bottom:56%;width:100%}.ClipCard-image:after{content:"";display:block;left:0;padding-bottom:25%}.ClipCard-image:after,.ClipCard-timeContainer{background:linear-gradient(0deg,#000,transparent);bottom:0;position:absolute;width:100%}.ClipCard-timeContainer{height:30px;letter-spacing:1.44px;padding-left:10px;padding-top:10px}.ClipCard-time{color:hsla(0,0%,100%,.6);font-weight:600}.ClipCard-time,.ClipCard-timeLabel{bottom:10px;font-size:12px;position:relative}.ClipCard-timeLabel{color:#fcb700;font-weight:800;margin-right:10px}.ClipCard-title{background-color:#fff;color:#000;font-size:18px;font-weight:600;line-height:22px;padding-top:17px}a:focus .ClipCard-title,a:hover .ClipCard-title{font-weight:700;text-decoration:underline}.WatchListCard-description{color:#000;display:block;font-size:14px;font-weight:500;line-height:18px;padding-top:20px;text-align:left}.WatchListCard-description:hover{color:#000;text-decoration:underline}.VideoBreakerFeatured-containerFluidWidths{margin:0 auto;width:100%}@media (min-width:1020px){.VideoBreakerFeatured-containerFluidWidths{max-width:960px}}@media (min-width:1340px){.VideoBreakerFeatured-containerFluidWidths{max-width:1290px}}.VideoBreakerFeatured-containerWidth100{width:100%}.VideoBreakerFeatured-page{display:block;margin-bottom:25px;overflow:visible}@media (min-width:760px){.VideoBreakerFeatured-page{margin-bottom:28px}}.VideoBreakerFeatured-pageGrid{margin-left:auto;margin-right:auto;max-width:1290px;overflow:visible;width:100%}.VideoBreakerFeatured-pageWrapper{margin:0 auto;max-width:100%}@media (min-width:760px){.VideoBreakerFeatured-pageWrapper{max-width:678px}}@media (min-width:1020px){.VideoBreakerFeatured-pageWrapper{max-width:960px}}@media (min-width:1340px){.VideoBreakerFeatured-pageWrapper{max-width:1290px}}@media (min-width:760px){.VideoBreakerFeatured-pageWrapper{max-width:100%!important}}.VideoBreakerFeatured-pageRow{display:flex;flex-direction:row;flex-wrap:wrap;padding:0 20px}@media (min-width:760px){.VideoBreakerFeatured-pageRow{padding-left:0;padding-right:0}}@media (min-width:1020px){.VideoBreakerFeatured-pageRow{display:flex;flex-direction:row;flex-wrap:wrap;padding:0 20px}}@media (min-width:1020px) and (min-width:760px){.VideoBreakerFeatured-pageRow{padding-left:0;padding-right:0}}@media (max-width:1019px){.VideoBreakerFeatured-pageRow{margin:0;padding:0}}@media (min-width:360px) and (max-width:759px){.VideoBreakerFeatured-pageRow.VideoBreakerFeatured-containerFluidWidths{padding:0 21px}}@media (min-width:760px) and (max-width:1019px){.VideoBreakerFeatured-pageRow.VideoBreakerFeatured-containerFluidWidths{padding:0 45px}}.VideoBreakerFeatured-pageRowFlex{display:flex}.VideoBreakerFeatured-rowUnderAd{margin-top:-29px}@media (min-width:1020px){.VideoBreakerFeatured-rowUnderAd{margin-top:-50px}}@media (min-width:1340px){.VideoBreakerFeatured-rowUnderAd{margin-top:-44px}}.VideoBreakerFeatured-rowWithBackground{background:#cfd8e2;position:relative}.VideoBreakerFeatured-rowWithBackground:after,.VideoBreakerFeatured-rowWithBackground:before{background:#cfd8e2;content:"";display:block;height:100%;position:absolute;width:25vw}.VideoBreakerFeatured-rowWithBackground:before{right:100%;top:0}.VideoBreakerFeatured-rowWithBackground:after{left:100%;top:0}.VideoBreakerFeatured-flipRowOrder .VideoBreakerFeatured-col:first-child{order:2}@media (min-width:1020px){.VideoBreakerFeatured-flipRowOrder .VideoBreakerFeatured-col:first-child{order:1}}.VideoBreakerFeatured-flipRowOrder .VideoBreakerFeatured-col:last-child{order:1}@media (min-width:1020px){.VideoBreakerFeatured-flipRowOrder .VideoBreakerFeatured-col:last-child{order:2}}.VideoBreakerFeatured-col{display:flex;flex-direction:column;flex-grow:0;flex-shrink:0;margin-right:30px;max-width:calc(100% - 30px);min-width:calc(100% - 30px)}@media (min-width:760px){.VideoBreakerFeatured-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.VideoBreakerFeatured-col{max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media screen and (min-width:1020px) and (-ms-high-contrast:none){.VideoBreakerFeatured-col{max-width:100%;min-width:100%}}@media (min-width:1340px){.VideoBreakerFeatured-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}.VideoBreakerFeatured-col:last-child{margin-right:0}@media (min-width:360px) and (max-width:759px){.VideoBreakerFeatured-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}}@media (min-width:760px) and (max-width:1019px){.VideoBreakerFeatured-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}.VideoBreakerFeatured-containerFluidWidths .VideoBreakerFeatured-col{max-width:678px!important;min-width:678px}}@media (min-width:760px){.VideoBreakerFeatured-col-3{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.VideoBreakerFeatured-col-3{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.VideoBreakerFeatured-col-3{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.VideoBreakerFeatured-col-3{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.VideoBreakerFeatured-col-3{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.VideoBreakerFeatured-col-3{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(33.33333% - 20px);min-width:calc(33.33333% - 20px)}.VideoBreakerFeatured-col-3:first-child{margin-left:0;margin-right:30px}}@media (min-width:1340px){.VideoBreakerFeatured-col-3{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(25% - 22.5px);min-width:calc(25% - 22.5px)}}@media (min-width:760px){.VideoBreakerFeatured-col-6{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.VideoBreakerFeatured-col-6{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.VideoBreakerFeatured-col-6{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.VideoBreakerFeatured-col-6{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.VideoBreakerFeatured-col-6{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.VideoBreakerFeatured-col-6{flex-grow:0;flex-shrink:0;margin-left:0;margin-right:0;max-width:calc(44.44444% - 16.66667px);min-width:calc(44.44444% - 16.66667px)}.VideoBreakerFeatured-col-6:first-child{margin-left:0;margin-right:30px}}@media (min-width:1340px){.VideoBreakerFeatured-col-6{flex-grow:0;flex-shrink:0;margin-left:0;max-width:calc(50% - 15px);min-width:calc(50% - 15px)}}.VideoBreakerFeatured-col-9 .BrandBanner-container{margin-bottom:30px;z-index:99}@media (min-width:1340px){.VideoBreakerFeatured-col-9 .BrandBanner-container{margin-left:calc(-50vw - -538.5px)}}@media (min-width:760px){.VideoBreakerFeatured-col-9 .BrandBanner-container{margin-bottom:-100px;margin-top:50px}.VideoBreakerFeatured-col-9{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.VideoBreakerFeatured-col-9{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.VideoBreakerFeatured-col-9{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.VideoBreakerFeatured-col-9{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.VideoBreakerFeatured-col-9{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.VideoBreakerFeatured-col-9{flex-grow:0;flex-shrink:0;margin-right:0;max-width:calc(66.66667% - 10px);min-width:calc(66.66667% - 10px)}.VideoBreakerFeatured-col-9:last-child{margin-right:0}}@media (min-width:1340px){.VideoBreakerFeatured-col-9{flex-grow:0;flex-shrink:0;max-width:calc(75% - 7.5px);min-width:calc(75% - 7.5px)}.VideoBreakerFeatured-col-9.VideoBreakerFeatured-article{flex-grow:0;flex-shrink:0;margin-left:calc(8.33333% + 2.5px);max-width:calc(58.33333% - 12.5px);min-width:calc(58.33333% - 12.5px)}}@media (min-width:760px){.VideoBreakerFeatured-col-12{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.VideoBreakerFeatured-col-12{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.VideoBreakerFeatured-col-12{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.VideoBreakerFeatured-col-12{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.VideoBreakerFeatured-col-12{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.VideoBreakerFeatured-col-12{flex-grow:0;flex-shrink:0;margin-right:0;max-width:100%;min-width:100%}.VideoBreakerFeatured-col-12:last-child{margin-right:0}}@media (min-width:1340px){.VideoBreakerFeatured-col-12{flex-grow:0;flex-shrink:0;max-width:100%;min-width:100%}}.VideoBreakerFeatured-col-full{flex-grow:0;flex-shrink:0;margin-right:0;max-width:100%;min-width:100%}.VideoBreakerFeatured-col-full .MyComponentName-container{width:100vw}@media (min-width:1340px){.VideoBreakerFeatured-col-full .MyComponentName-container{max-width:none}}.VideoBreakerFeatured-col-full:last-child{margin-right:0}.VideoBreakerFeatured-clear-col-padding{padding-bottom:0;padding-top:0}.VideoBreakerFeatured-paddedWrapper{padding-bottom:15px;padding-top:15px}@media (min-width:1020px){.VideoBreakerFeatured-paddedWrapper{padding-bottom:20px;padding-top:25px}.VideoBreakerFeatured-hasBanner{margin-bottom:130px}}.VideoBreakerFeatured-sidebar{flex-grow:0;flex-shrink:0;max-width:calc(100% - 30px);min-width:calc(100% - 30px)}@media (min-width:760px){.VideoBreakerFeatured-sidebar{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.VideoBreakerFeatured-sidebar{max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media screen and (min-width:1020px) and (-ms-high-contrast:none){.VideoBreakerFeatured-sidebar{max-width:100%;min-width:100%}}@media (min-width:1340px){.VideoBreakerFeatured-sidebar{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:360px){.VideoBreakerFeatured-sidebar{min-width:100%}}@media (min-width:760px){.VideoBreakerFeatured-sidebar{flex-grow:0;flex-shrink:0;max-width:100%;min-width:100%}}@media (min-width:1020px){.VideoBreakerFeatured-sidebar{flex-grow:0;flex-shrink:0;margin-bottom:40px;margin-left:30px;max-width:calc(33.33333% - 20px);min-width:calc(33.33333% - 20px)}}@media (min-width:1340px){.VideoBreakerFeatured-sidebar{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(25% - 22.5px);min-width:calc(25% - 22.5px)}}.VideoBreakerFeatured-sidebarLeft{flex-grow:0;flex-shrink:0;max-width:calc(100% - 30px);min-width:calc(100% - 30px)}@media (min-width:760px){.VideoBreakerFeatured-sidebarLeft{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.VideoBreakerFeatured-sidebarLeft{max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media screen and (min-width:1020px) and (-ms-high-contrast:none){.VideoBreakerFeatured-sidebarLeft{max-width:100%;min-width:100%}}@media (min-width:1340px){.VideoBreakerFeatured-sidebarLeft{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:360px){.VideoBreakerFeatured-sidebarLeft{min-width:100%}}@media (min-width:760px){.VideoBreakerFeatured-sidebarLeft{flex-grow:0;flex-shrink:0;max-width:100%;min-width:100%}}@media (min-width:1020px){.VideoBreakerFeatured-sidebarLeft{flex-grow:0;flex-shrink:0;margin-bottom:40px;margin-left:0;margin-right:30px;max-width:calc(22.22222% - 23.33333px);min-width:calc(22.22222% - 23.33333px);z-index:1}}@media (min-width:1340px){.VideoBreakerFeatured-sidebarLeft{flex-grow:0;flex-shrink:0;margin-left:0;max-width:calc(25% - 22.5px);min-width:calc(25% - 22.5px)}}.VideoBreakerFeatured-sidebarLeftNav{max-width:none}.VideoBreakerFeatured-sidebarPro{margin-left:0;margin-right:30px}.VideoBreakerFeatured-col{margin-bottom:30px;padding-bottom:15px;padding-top:15px}@media (min-width:1020px){.VideoBreakerFeatured-col{padding-bottom:20px;padding-top:25px}}@media (max-width:759px){.VideoBreakerFeatured-col{overflow:hidden}}@media (min-width:760px){.VideoBreakerFeatured-col-9{padding-bottom:5px}}@media (min-width:1020px){.VideoBreakerFeatured-col-9{padding-bottom:20px}}@media (min-width:1340px){.VideoBreakerFeatured-col-9{flex-grow:0;flex-shrink:0;margin-left:0;max-width:calc(75% - 7.5px);min-width:calc(75% - 7.5px)}}
/*# sourceMappingURL=source-maps/components-PcmModule-VideoBreakerFeatured-6bf4c76a1227042814c7.css.map*/
.FeaturedBreaker-featuredBreaker{margin-bottom:30px;overflow:hidden;position:relative;width:100%}.FeaturedBreaker-wrapper{position:relative}@media (min-width:760px){.FeaturedBreaker-wrapper{margin:initial}}@media (min-width:1020px){.FeaturedBreaker-wrapper{padding:initial}}.FeaturedBreaker-heading{border-top:6px solid #002f6c;margin-left:20px;padding-top:15px;width:calc(100% - 20px)}@media (min-width:760px){.FeaturedBreaker-heading{margin-left:0;padding-left:40px;padding-top:15px;width:calc(75% - 75px)}}@media (min-width:1020px){.FeaturedBreaker-heading{font-size:30px;width:45%}}@media (min-width:1180px){.FeaturedBreaker-heading{font-size:30px;padding-left:calc(50vw - 538.5px)}}@media (min-width:1340px){.FeaturedBreaker-heading{margin-bottom:50px;padding-left:calc(50vw - 645px)}}.FeaturedBreaker-headingLink{color:#002f6c}.FeaturedBreaker-headingLink:hover{color:#2077b6}.FeaturedBreaker-headingText{color:#002f6c;font-size:28px;font-weight:800;line-height:1.24;margin:0;overflow-wrap:break-word;padding-right:40px;text-transform:uppercase}@media (min-width:760px){.FeaturedBreaker-headingText{line-height:30px;padding-right:0}}@media (min-width:1020px){.FeaturedBreaker-headingText{font-size:32px}}@media (min-width:1340px){.FeaturedBreaker-headingText{max-width:320px}}.FeaturedBreaker-headingImage{max-height:32px;max-width:200px}.FeaturedBreaker-headingImage img{max-height:32px;max-width:100%}@media (min-width:760px){.FeaturedBreaker-headingImage,.FeaturedBreaker-headingImage img{max-height:65px}}.FeaturedBreaker-airTime{color:#2e2e2e;display:block;font-size:14px;font-weight:500;letter-spacing:1.17px;line-height:17px;margin-top:10px}@media (min-width:760px){.FeaturedBreaker-airTime{margin-top:10px}}.FeaturedBreaker-eventTime{color:#747474;font-size:14px;font-weight:600;letter-spacing:.77px;line-height:1.2;margin:10px 0 0}.FeaturedBreaker-eventTime time{color:#002f6c;letter-spacing:.88px}@media (min-width:760px){.FeaturedBreaker-eventTime{margin-top:10px}}.FeaturedBreaker-arrowContainer{height:16px;margin-top:20px;padding-left:20px;position:relative;text-align:left;z-index:99}@media (min-width:760px){.FeaturedBreaker-arrowContainer{margin-bottom:0;padding-left:40px;width:440px}}@media (min-width:1020px){.FeaturedBreaker-arrowContainer{padding-left:40px}}@media (min-width:1340px){.FeaturedBreaker-arrowContainer{left:calc(50vw - 315px);margin-top:0;position:absolute;top:30px;width:auto}}.FeaturedBreaker-arrow{color:#071d39;font-size:70px;height:100%;overflow:hidden;transition:opacity .2s ease-in-out}.FeaturedBreaker-arrow:hover{color:#fcb700}.FeaturedBreaker-arrow span{display:block;height:100%}.FeaturedBreaker-arrow span:before{display:block;line-height:16px}.FeaturedBreaker-prevArrow{margin-right:15px}@media (min-width:760px){.FeaturedBreaker-prevArrow{margin-right:25px}}.FeaturedBreaker-prevArrowInactive,.FeaturedBreaker-prevArrowInactive:hover{color:#b9c7d5}.FeaturedBreaker-nextArrow{margin-left:15px}@media (min-width:760px){.FeaturedBreaker-nextArrow{margin-left:25px}}.FeaturedBreaker-nextArrowInactive,.FeaturedBreaker-nextArrowInactive:hover{color:#b9c7d5}.FeaturedBreaker-slideContainer{margin-top:20px;position:relative;white-space:nowrap}@media (min-width:1020px){.FeaturedBreaker-slideContainer{width:100vw}}@media (min-width:1180px){.FeaturedBreaker-slideContainer{width:100vw}}@media (min-width:1340px){.FeaturedBreaker-slideContainer{margin-top:0;width:100vw}}.FeaturedBreaker-slideRail{transition:transform .5s;white-space:nowrap}.FeaturedBreaker-leftSlide,.FeaturedBreaker-rightSlide{display:inline-block;height:185px;overflow:hidden;position:relative;width:75%}@media (min-width:760px){.FeaturedBreaker-leftSlide,.FeaturedBreaker-rightSlide{height:215px}}@media (min-width:1020px){.FeaturedBreaker-leftSlide,.FeaturedBreaker-rightSlide{height:215px;width:50%}}@media (min-width:1340px){.FeaturedBreaker-leftSlide,.FeaturedBreaker-rightSlide{height:225px}}@media (min-width:1020px){.FeaturedBreaker-leftSlide>div>div{padding-left:calc(50vw - 480px)}}@media (min-width:1180px){.FeaturedBreaker-leftSlide>div>div{padding-left:calc(50vw - 538.5px)}}@media (min-width:1340px){.FeaturedBreaker-leftSlide>div>div{padding-left:calc(50vw - 645px)}}.FeaturedBreaker-rightSlide{top:-27px}@media (min-width:760px){.FeaturedBreaker-rightSlide{top:-112px}}@media (min-width:1340px){.FeaturedBreaker-rightSlide{top:-100px}}@media (min-width:1020px){.FeaturedBreaker-rightSlide>div>div{padding-left:67.5px;padding-right:calc(50vw - 480px)}}@media (min-width:1180px){.FeaturedBreaker-rightSlide>div>div{padding-left:77.25px;padding-right:calc(50vw - 538.5px)}}@media (min-width:1340px){.FeaturedBreaker-rightSlide>div>div{padding-left:125px;padding-right:calc(50vw - 645px)}}.FeaturedBreaker-item{background-color:#071d39;background-position:20px;background-position-x:0;background-position-y:0;background-size:cover;display:inline-block;height:185px;padding:20px 45px;position:relative;vertical-align:top;white-space:normal;width:100%}@media (min-width:760px){.FeaturedBreaker-item{background-position-x:100px}}@media (min-width:1340px){.FeaturedBreaker-item{background-position-x:145px}}.FeaturedBreaker-item:hover .FeaturedBreaker-itemTitle{text-decoration:underline}.FeaturedBreaker-item>div:first-child{border-top:0}.FeaturedBreaker-item:after{background:linear-gradient(90deg,#071d39 0,#071d39 30%,rgba(7,29,57,.19));content:"";height:100%;left:0;position:absolute;top:0;width:100%;z-index:1}.FeaturedBreaker-item .PlayButton-container{border:none;top:0;z-index:2}@media (min-width:760px){.FeaturedBreaker-item{height:215px;padding:20px 40px}}@media (min-width:1020px){.FeaturedBreaker-item{height:215px}}@media (min-width:1340px){.FeaturedBreaker-item{height:225px;padding:20px 75px}}.FeaturedBreaker-itemWrapper{display:flex;flex-direction:column;height:100%;justify-content:center}.FeaturedBreaker-itemTitle{color:#fff;font-family:Lyon,Helvetica,Arial,sans-serif;font-size:18px;font-weight:500;line-height:23px;max-height:130px;position:relative;text-shadow:0 0 6px #333;z-index:2}@media (min-width:760px){.FeaturedBreaker-itemTitle{font-size:22px;font-weight:600;line-height:28px;margin-top:0;max-height:100%;max-width:70%}}@media (min-width:1340px){.FeaturedBreaker-itemTitle{font-size:26px;line-height:38px;max-width:60%}}.FeaturedBreaker-itemAuthor{color:#fcb700;font-family:Lyon,Helvetica,Arial,sans-serif;font-size:12px;font-weight:500;letter-spacing:.46px;line-height:12px;margin-top:20px;position:relative;text-shadow:0 0 6px #333;z-index:2}
/*# sourceMappingURL=source-maps/components-PcmModule-Breakers-FeaturedBreaker-f9268a401f14a4e5e388.css.map*/
@media (min-width:360px) and (max-width:759px){.Layout-layout{width:100%}}@media (min-width:760px){.Layout-layout{display:flex;flex-wrap:wrap}}
/*# sourceMappingURL=source-maps/components-PcmModule-TwoColumnImageDense-e041dcd9a23e058fdf4b.css.map*/
.CNBCFooter-container{background-color:#071d39;color:#fff;display:flex;flex-direction:row;flex-wrap:wrap;overflow:hidden;padding:0 20px 63px;position:relative;text-align:left;width:100%;z-index:99}@media (min-width:760px){.CNBCFooter-container{padding-left:0;padding-right:0}}.CNBCFooter-container .CNBCFooter-smallHeader{color:#fff!important}@media (min-width:760px){.CNBCFooter-container{padding-bottom:40px}}@media (min-width:1020px){.CNBCFooter-container{padding:30px 0}}.CNBCFooter-gridContainer{margin:0 auto;max-width:100%}@media (min-width:760px){.CNBCFooter-gridContainer{max-width:678px}}@media (min-width:1020px){.CNBCFooter-gridContainer{max-width:960px}}@media (min-width:1340px){.CNBCFooter-gridContainer{max-width:1290px}}.CNBCFooter-wrapper{flex-grow:0;flex-shrink:0;max-width:100%;min-width:100%;position:relative}@media (min-width:760px){.CNBCFooter-wrapper{flex-grow:0;flex-shrink:0;max-width:100%;min-width:100%}}@media (min-width:1020px){.CNBCFooter-wrapper{flex-grow:0;flex-shrink:0;max-width:100%;min-width:100%}}@media (min-width:1340px){.CNBCFooter-wrapper{flex-grow:0;flex-shrink:0;max-width:100%;min-width:100%}}.CNBCFooter-header{align-items:center;border-bottom:1px solid hsla(0,0%,100%,.5);display:flex;flex-direction:row;height:60px;width:100%}.CNBCFooter-header .CNBCFooter-logo{width:130px}@media (min-width:760px){.CNBCFooter-header{padding-left:calc(50% - 339px);padding-right:calc(50% - 339px)}}@media (min-width:1020px){.CNBCFooter-header{align-items:flex-end;height:45px;margin:0;max-width:100%;padding:0 0 15px}}@media (min-width:1340px){.CNBCFooter-content{display:flex;flex-wrap:wrap}}.CNBCFooter-menu{display:flex;flex-direction:row;flex-wrap:wrap;margin:30px 0 10px;padding:0}@media (min-width:1020px){.CNBCFooter-menu{margin-top:20px}}@media (min-width:1340px){.CNBCFooter-menu{display:inline-block;width:50%}}.CNBCFooter-menu .CNBCFooter-footerOption{flex:calc(50% - 10px);font-size:16px;font-weight:500;margin-bottom:10px}.CNBCFooter-menu .CNBCFooter-footerOption:nth-child(odd){margin-right:20px}@media (min-width:760px){.CNBCFooter-menu .CNBCFooter-footerOption{flex:33%;max-width:33%}.CNBCFooter-menu .CNBCFooter-footerOption:nth-child(odd){margin-right:0}}@media (min-width:1020px){.CNBCFooter-menu .CNBCFooter-footerOption{font-size:14px;line-height:26px}}@media (min-width:1340px){.CNBCFooter-menu .CNBCFooter-footerOption{display:inline-block;width:33%}}.CNBCFooter-share{display:flex;flex-direction:row;justify-content:center;margin:30px 0 40px;padding:0}@media (min-width:760px){.CNBCFooter-share{line-height:65px;margin-top:0;position:absolute;right:0;top:0}}@media (min-width:1020px){.CNBCFooter-share{height:45px;line-height:45px}}.CNBCFooter-share .CNBCFooter-socialOption{font-size:22px;margin:0 10px}@media (min-width:760px){.CNBCFooter-info{display:flex;flex-direction:row;justify-content:space-between}}@media (min-width:1340px){.CNBCFooter-info{width:50%}}.CNBCFooter-disclaimer{width:100%}.CNBCFooter-section{margin-bottom:40px}@media (min-width:760px){.CNBCFooter-section{width:45%}}.CNBCFooter-section .CNBCFooter-linkButton{background-color:transparent;border:1px solid #fff;color:#fff;display:inline-block;font-size:12px;font-weight:600;height:40px;letter-spacing:1.1px;line-height:40px;text-align:center;text-transform:uppercase;width:100%}@media (min-width:1020px){.CNBCFooter-section .CNBCFooter-linkButton{max-width:150px}}.CNBCFooter-section .CNBCFooter-linkButton:hover{background-color:#fcb700;border-color:#fcb700;color:#071d39}.CNBCFooter-section .CNBCFooter-smallHeader{font-size:18px;font-weight:700;margin:15px 0 5px}@media (min-width:1020px){.CNBCFooter-section .CNBCFooter-smallHeader{font-size:24px}}.CNBCFooter-sectionInfo{font-family:Lyon,Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42;margin-bottom:20px;margin-top:0}.CNBCFooter-copyright,.CNBCFooter-copyright>a{color:hsla(0,0%,100%,.7);font-size:10px;letter-spacing:.5px;margin:15px 0 0}.CNBCFooter-copyright>a:hover{color:hsla(0,0%,100%,.7)}.CNBCFooter-privacy{display:flex;font-size:14px;font-weight:500}.CNBCFooter-privacy .CNBCFooter-privacyLink{padding-right:10px}.CNBCFooter-privacy .CNBCFooter-privacyLink:before{content:"\A";white-space:pre}@media (max-width:759px){.CNBCFooter-privacy{display:block}.CNBCFooter-privacy .CNBCFooter-privacyLink{display:flex;padding-bottom:10px}}@media (min-width:760px){.CNBCFooter-privacy .CNBCFooter-privacyLink:before{content:none}}.CNBCFooter-pipeSymbol{font-size:15px;margin-right:10px}@media (max-width:759px){.CNBCFooter-pipeSymbol{display:none}}.CNBCFooter-marketData{font-size:14px;font-weight:500;margin-bottom:-15px;margin-top:10px}.CNBCFooter-reutersLogo{display:inline-block;position:relative;right:4px;top:8px;width:65px}.CNBCFooter-newsletter{margin-left:50px;position:relative}@media (min-width:760px){.CNBCFooter-newsletter{margin-left:0}}.CNBCFooter-newsletter .CNBCFooter-newsletterIcon{font-size:40px;left:0;position:absolute;top:-10px}@media (min-width:1020px){.CNBCFooter-newsletter .CNBCFooter-newsletterIcon{top:-5px}}@media (min-width:760px){.CNBCFooter-newsletter .CNBCFooter-newsletterIcon{left:-50px}}@media (max-width:759px){.CNBCFooter-newsletter .CNBCFooter-newsletterTitle{left:50px;position:relative}}.CNBCFooter-privacyPreferences{color:#fff;cursor:pointer;flex:calc(50% - 10px);font-size:14px;font-weight:500;line-height:18px;text-align:left}.CNBCFooter-privacyPreferences:hover{color:#fcb700}@media (max-width:1019px){.CNBCFooter-privacyPreferences{font-size:16px}}.icon-social_apple_news:before{font-size:25px;position:relative;top:1px}.CNBCFooter-newsAndAdvertiseSection{display:flex;flex-direction:column;width:45%}@media (max-width:759px){.CNBCFooter-newsAndAdvertiseSection{width:100%}}.CNBCFooter-newsAndAdvertiseSection>.CNBCFooter-section{width:100%}.CNBCFooter-newsAndAdvertiseSection .CNBCFooter-section:first-child{margin-bottom:7px}@media (max-width:759px){.CNBCFooter-newsAndAdvertiseSection .CNBCFooter-section:nth-child(2){margin-bottom:15px}}.CNBCFooter-newsAndAdvertiseSection .CNBCFooter-section:nth-child(2) .CNBCFooter-linkButton{max-width:unset;width:201px}@media (max-width:1019px){.CNBCFooter-newsAndAdvertiseSection .CNBCFooter-section:nth-child(2) .CNBCFooter-linkButton{width:100%}}.CNBCFooter-newsAndAdvertiseSection .CNBCFooter-section:nth-child(2) .CNBCFooter-smallHeader{margin-bottom:15px}
/*# sourceMappingURL=source-maps/components-Footer-CNBCFooter-f7b8cd3169eaf2ab11b4.css.map*/
@charset "UTF-8";.RecaptchaAcknowledgement-acknowledgement{color:#747474;flex:1;font-size:11px;font-weight:600;line-height:15px;margin-bottom:7px;margin-top:24px;width:100%}.RecaptchaAcknowledgement-acknowledgement a{color:#747474;font-weight:500;text-decoration:none}.RecaptchaAcknowledgement-acknowledgement a:hover{color:#747474;text-decoration:underline}.RecaptchaAcknowledgement-acknowledgement a:active{color:#747474}.RecaptchaAcknowledgement-reCaptchaPadding{margin-top:15px}.RecaptchaAcknowledgement-centerAligned{text-align:center}.RecaptchaAcknowledgement-leftAligned{text-align:left}.RecaptchaAcknowledgement-rightAligned{text-align:right}.AuthForms-container{margin:0 auto;padding:0 10px;width:458px}@media (max-width:759px){.AuthForms-container{max-width:458px;padding:20px 0 0;width:100%}}.AuthForms-container .AuthForms-signupContainer{margin:0 auto;padding:0 41px;text-align:center;width:458px}@media (max-width:759px){.AuthForms-container .AuthForms-signupContainer{padding:20px 0 0;width:100%}}.AuthForms-container .AuthForms-header{color:#171717;margin-bottom:20px}.AuthForms-container .AuthForms-createAccountHeader{color:#171717;margin-bottom:20px;text-align:center}.AuthForms-container .AuthForms-headerTitle{color:#071d39;font-size:20px;font-weight:700;text-align:center}.AuthForms-container .AuthForms-signinContent{font-size:14px;font-weight:450;padding-top:20px}.AuthForms-container .AuthForms-toggleCta{color:#424242;font-size:12px;font-weight:500;text-align:right}.AuthForms-container .AuthForms-instructions{margin-bottom:20px;text-align:left}.AuthForms-container .AuthForms-instructions p{color:#171717;font-size:14px;line-height:16px}.AuthForms-container .AuthForms-instructions p a{color:#005594;text-decoration:none}.AuthForms-container .AuthForms-instructions p a:hover{color:#002f6c}.AuthForms-container .AuthForms-formInputContainer{margin:0 auto 10px;max-width:350px}.AuthForms-container .AuthForms-formInputContainer.AuthForms-withErrors{margin:0 auto 25px}.AuthForms-container .AuthForms-formInput{width:100%}.AuthForms-container input::-ms-clear,.AuthForms-container input::-ms-reveal{display:none}.AuthForms-container .AuthForms-loginWaitMsg{word-wrap:break-word;border-radius:3px;color:#071d39;font-size:14px;font-weight:500;margin:10px 0;padding:10px;text-align:center}.AuthForms-container .AuthForms-accountButton,.AuthForms-container .AuthForms-submitButton{align-items:center;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#005594;border:1px solid #002f6c;border-radius:3px;color:#fff;cursor:pointer;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;height:50px!important;justify-content:center;letter-spacing:1px;margin:0 auto;max-width:260px!important;padding:0 20px;padding:0!important;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%;width:100%!important}.AuthForms-container .AuthForms-accountButton>span,.AuthForms-container .AuthForms-submitButton>span{display:block;line-height:12px}.AuthForms-container .AuthForms-accountButton [class*=" icon-"],.AuthForms-container .AuthForms-accountButton [class^=icon-],.AuthForms-container .AuthForms-submitButton [class*=" icon-"],.AuthForms-container .AuthForms-submitButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AuthForms-container .AuthForms-accountButton [class*=" icon-"]:before,.AuthForms-container .AuthForms-accountButton [class^=icon-]:before,.AuthForms-container .AuthForms-submitButton [class*=" icon-"]:before,.AuthForms-container .AuthForms-submitButton [class^=icon-]:before{line-height:12px}.AuthForms-container .AuthForms-accountButton:focus,.AuthForms-container .AuthForms-accountButton:hover,.AuthForms-container .AuthForms-submitButton:focus,.AuthForms-container .AuthForms-submitButton:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}.AuthForms-container .AuthForms-accountButton[class*=touchButton]:hover,.AuthForms-container .AuthForms-submitButton[class*=touchButton]:hover{background-color:#005594;border-color:#002f6c;color:#fff}@media (hover:hover){.AuthForms-container .AuthForms-accountButton[class*=touchButton]:hover,.AuthForms-container .AuthForms-submitButton[class*=touchButton]:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}}@media (min-width:760px){.AuthForms-container .AuthForms-accountButton,.AuthForms-container .AuthForms-submitButton{padding:0 30px;width:auto}}.AuthForms-container .AuthForms-accountButton:last-child,.AuthForms-container .AuthForms-submitButton:last-child{clear:both;margin-bottom:7px}.AuthForms-container .AuthForms-accountButton.AuthForms-disableButton,.AuthForms-container .AuthForms-accountButton.AuthForms-disableButton:hover,.AuthForms-container .AuthForms-submitButton.AuthForms-disableButton,.AuthForms-container .AuthForms-submitButton.AuthForms-disableButton:hover{background-color:#d9d9d9;border:#d9d9d9}.AuthForms-container.AuthForms-disableButton{background-color:#d9d9d9;border:none}.AuthForms-container.AuthForms-disableButton:hover{background-color:#d9d9d9}.AuthForms-container .AuthForms-accountButton{border-radius:3px;cursor:pointer;height:40px!important;margin:0 auto;padding:0!important}@media (min-width:760px){.AuthForms-container .AuthForms-accountButton{width:200px!important}}.AuthForms-container .AuthForms-accountButton:last-child{clear:both;margin-bottom:7px}.AuthForms-container .AuthForms-accountButton{align-items:center;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;border:1px solid #002f6c;color:#005594;display:flex;flex-direction:row;font-size:14px;font-size:12px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.AuthForms-container .AuthForms-accountButton>span{display:block;line-height:12px}.AuthForms-container .AuthForms-accountButton [class*=" icon-"],.AuthForms-container .AuthForms-accountButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AuthForms-container .AuthForms-accountButton [class*=" icon-"]:before,.AuthForms-container .AuthForms-accountButton [class^=icon-]:before{line-height:12px}.AuthForms-container .AuthForms-accountButton:focus,.AuthForms-container .AuthForms-accountButton:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}.AuthForms-container .AuthForms-accountButton[class*=touchButton]:hover{background-color:#fff;border-color:#002f6c;color:#005594}@media (hover:hover){.AuthForms-container .AuthForms-accountButton[class*=touchButton]:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}}@media (min-width:760px){.AuthForms-container .AuthForms-accountButton{padding:0 30px;width:auto}}.AuthForms-container .AuthForms-ctaButton{color:#005594;font-size:12px;font-weight:500}.AuthForms-container .AuthForms-ctaButton:hover{color:#002f6c}.AuthForms-container.AuthForms-forgotPassword{padding:0 21px}@media (min-width:760px){.AuthForms-container.AuthForms-forgotPassword{padding:0 60px}}.AuthForms-container.AuthForms-forgotPassword .AuthForms-formInputContainer{margin:15px 0 26px}.AuthForms-container .AuthForms-forgotPwdButton{color:#005594;display:block;font-size:14px;font-weight:500;margin:15px auto 0}.AuthForms-container .AuthForms-forgotPwdButton:hover{color:#002f6c}.AuthForms-formContainer{padding-bottom:25px}.AuthForms-containerRight{margin:0;padding:0;width:500px}@media (max-width:1019px){.AuthForms-containerRight{margin-top:24px;padding:0 20px;width:100%}}@media (max-width:759px){.AuthForms-containerRight{margin-top:10px;padding:0 14px}}.AuthForms-unlockButton{align-items:center;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#00a857;border:1px solid #00a857;border-radius:3px;box-shadow:-2px 2px 2px hsla(0,0%,9%,.25);color:#fff;cursor:pointer;display:flex;flex-direction:row;font-size:14px;font-size:22px;font-weight:600;font-weight:700;height:40px;height:50px;justify-content:center;letter-spacing:1px;letter-spacing:.2px;margin-bottom:7px;outline:.5px solid #333;padding:0 30px;text-align:center;text-transform:uppercase;text-transform:none;transition:all .15s linear;width:100%}.AuthForms-unlockButton>span{display:block;line-height:12px}.AuthForms-unlockButton [class*=" icon-"],.AuthForms-unlockButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AuthForms-unlockButton [class*=" icon-"]:before,.AuthForms-unlockButton [class^=icon-]:before{line-height:12px}.AuthForms-unlockButton:focus,.AuthForms-unlockButton:hover{background-color:#008456;border-color:#008456;color:#fff}.AuthForms-unlockButton[class*=touchButton]:hover{background-color:#00a857;border-color:#00a857;color:#fff}@media (hover:hover){.AuthForms-unlockButton[class*=touchButton]:hover{background-color:#008456;border-color:#008456;color:#fff}}@media (min-width:760px){.AuthForms-unlockButton{padding:0 30px;width:auto;width:100%}}.AuthForms-unlockIcon{margin-right:8px}.AuthForms-proFlow .AuthForms-submitButton{align-items:center;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#00a857;border:1px solid #00a857;border-radius:3px;color:#fff;cursor:pointer;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;height:50px!important;justify-content:center;letter-spacing:1px;margin:0 auto;padding:0 20px;padding:0!important;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.AuthForms-proFlow .AuthForms-submitButton>span{display:block;line-height:12px}.AuthForms-proFlow .AuthForms-submitButton [class*=" icon-"],.AuthForms-proFlow .AuthForms-submitButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AuthForms-proFlow .AuthForms-submitButton [class*=" icon-"]:before,.AuthForms-proFlow .AuthForms-submitButton [class^=icon-]:before{line-height:12px}.AuthForms-proFlow .AuthForms-submitButton:focus,.AuthForms-proFlow .AuthForms-submitButton:hover{background-color:#008456;border-color:#008456;color:#fff}.AuthForms-proFlow .AuthForms-submitButton[class*=touchButton]:hover{background-color:#00a857;border-color:#00a857;color:#fff}@media (hover:hover){.AuthForms-proFlow .AuthForms-submitButton[class*=touchButton]:hover{background-color:#008456;border-color:#008456;color:#fff}}@media (min-width:760px){.AuthForms-proFlow .AuthForms-submitButton{padding:0 30px;width:auto}}.AuthForms-proFlow .AuthForms-submitButton:last-child{margin-bottom:7px}.AuthForms-proFlow .AuthForms-submitButton.AuthForms-disableButton,.AuthForms-proFlow .AuthForms-submitButton.AuthForms-disableButton:hover{background-color:#d9d9d9;border:#d9d9d9}.AuthForms-proFlow .AuthForms-ctaButton{color:#00a857}.AuthForms-proFlow .AuthForms-ctaButton:hover{color:#008456}.AuthForms-proFlow .AuthForms-forgotPwdButton{color:#00a857}.AuthForms-proFlow .AuthForms-forgotPwdButton:hover{color:#008456}.AuthForms-proFlow .AuthForms-instructions a{color:#00a857}.AuthForms-proFlow .AuthForms-instructions a:hover,.AuthForms-proFlow .AuthForms-loginWaitMsg{color:#008456}.AuthForms-investingClubFlow{display:flex;flex-direction:column}.AuthForms-investingClubFlow .AuthForms-header{margin-bottom:15px}.AuthForms-investingClubFlow .AuthForms-submitButton{align-items:center;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#071d39;border:1px solid #071d39;border-radius:3px;color:#fff;cursor:pointer;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;height:50px!important;justify-content:center;letter-spacing:1px;margin:0 auto;padding:0 20px;padding:0 56px!important;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.AuthForms-investingClubFlow .AuthForms-submitButton>span{display:block;line-height:12px}.AuthForms-investingClubFlow .AuthForms-submitButton [class*=" icon-"],.AuthForms-investingClubFlow .AuthForms-submitButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AuthForms-investingClubFlow .AuthForms-submitButton [class*=" icon-"]:before,.AuthForms-investingClubFlow .AuthForms-submitButton [class^=icon-]:before{line-height:12px}.AuthForms-investingClubFlow .AuthForms-submitButton:focus,.AuthForms-investingClubFlow .AuthForms-submitButton:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}.AuthForms-investingClubFlow .AuthForms-submitButton[class*=touchButton]:hover{background-color:#071d39;border-color:#071d39;color:#fff}@media (hover:hover){.AuthForms-investingClubFlow .AuthForms-submitButton[class*=touchButton]:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}}@media (min-width:760px){.AuthForms-investingClubFlow .AuthForms-submitButton{padding:0 30px;width:auto}}.AuthForms-investingClubFlow .AuthForms-submitButton:last-child{margin-bottom:7px}.AuthForms-investingClubFlow .AuthForms-submitButton.AuthForms-disableButton,.AuthForms-investingClubFlow .AuthForms-submitButton.AuthForms-disableButton:hover{background-color:#d9d9d9;border:#d9d9d9}.AuthForms-investingClubFlow .AuthForms-toggleCta{color:#171717;font-size:18px;font-weight:600;margin-bottom:25px;text-align:center}.AuthForms-investingClubFlow .AuthForms-ctaButton{color:#336aa0;font-size:18px;font-weight:600}.AuthForms-investingClubFlow .AuthForms-ctaButton:hover{color:#1896ff}.AuthForms-investingClubFlow .AuthForms-forgotPwdButton{color:#071d39;font-weight:600}.AuthForms-investingClubFlow .AuthForms-forgotPwdButton:hover{color:#002f6c}.AuthForms-investingClubFlow .AuthForms-instructions a{color:#336aa0}.AuthForms-investingClubFlow .AuthForms-instructions a:hover{color:#1896ff}.AuthForms-investingClubFlow.AuthForms-forgotPassword{align-items:center;margin:20px 0 78px;padding:0}.AuthForms-investingClubFlow.AuthForms-forgotPassword .AuthForms-header{max-width:100%;width:100%}@media (min-width:760px){.AuthForms-investingClubFlow.AuthForms-forgotPassword .AuthForms-header{max-width:335px}}.AuthForms-investingClubFlow.AuthForms-forgotPassword .AuthForms-headerTitle{color:#071d39;font-size:20px;font-weight:700;text-align:left;width:100%}.AuthForms-investingClubFlow.AuthForms-forgotPassword .AuthForms-toggleCta{font-size:16px;font-weight:700;margin-bottom:47px;order:-1;text-align:right;width:100%}.AuthForms-investingClubFlow.AuthForms-forgotPassword .AuthForms-ctaButton{font-size:16px;font-weight:700}.AuthForms-investingClubFlow.AuthForms-forgotPassword .AuthForms-instructions{font-size:14px;margin:0 0 28px;max-width:100%;text-align:left;width:100%}@media (min-width:760px){.AuthForms-investingClubFlow.AuthForms-forgotPassword .AuthForms-instructions{max-width:335px}}.AuthForms-investingClubFlow.AuthForms-forgotPassword .AuthForms-formInputContainer{max-width:100%;width:100%}@media (min-width:760px){.AuthForms-investingClubFlow.AuthForms-forgotPassword .AuthForms-formInputContainer{max-width:335px}}.AuthForms-investingClubFlow.AuthForms-forgotPasswordConfirmation{margin-bottom:48px}.AuthForms-investingClubFlow.AuthForms-forgotPasswordConfirmation .AuthForms-instructions{font-size:14px;font-weight:600;margin:36px 0;max-width:100%;text-align:center;width:100%}.AuthForms-investingClubFlow.AuthForms-forgotPasswordConfirmation .AuthForms-instructions p{display:inline}.AuthForms-investingClubFlow.AuthForms-forgotPasswordConfirmation .AuthForms-instructions p:after{content:" "}@media (min-width:760px){.AuthForms-investingClubFlow.AuthForms-forgotPasswordConfirmation .AuthForms-instructions{max-width:335px}}.AuthForms-investingClubFlow.AuthForms-forgotPasswordConfirmation .AuthForms-submitButton{padding:0 71px!important}.AuthForms-resetPasswordAccountInfo{color:#424242;font-size:14px;font-weight:700;margin-bottom:20px;margin-top:20px;text-align:left}.AuthForms-resetPasswordAccountInfo span{color:#747474}.AuthForms-miscellaneousError{word-wrap:break-word;border-radius:3px;color:#f44336;font-size:14px;margin:10px 0;padding:10px;text-align:center}.AuthForms-newtocnbc{color:#071d39;font-size:15px;font-weight:700;margin-top:25px;padding:0 0 15px;text-align:center}.Checkboxes-checkboxContainer.Checkboxes-checkboxes{padding:0}.Checkboxes-errorText{color:#ce2b2b;font-size:11px;height:12px;margin:0 auto 5px;overflow:visible;text-align:left}.Checkboxes-checkboxLabel{cursor:pointer;display:block;overflow:hidden;padding-left:16px;position:relative;-webkit-user-select:none;-moz-user-select:none;user-select:none}.Checkboxes-checkboxLabel input{cursor:pointer;height:0;opacity:0;position:absolute;right:0;width:0}.Checkboxes-checkmark{border:1px solid #424242;border-radius:3px;height:13px;left:0;position:absolute;top:3px;width:13px}.Checkboxes-checkmark.Checkboxes-checkmarkError{border:1px solid #ce2b2b}.Checkboxes-checkboxLabel input:checked~.Checkboxes-checkmark{background-color:#171717}.Checkboxes-checkmark:after{content:"";display:none;position:absolute}.Checkboxes-checkboxLabel input:checked~.Checkboxes-checkmark:after{display:block}.Checkboxes-checkboxLabel .Checkboxes-checkmark:after{border:solid #fff;border-width:0 2px 2px 0;height:6px;left:3px;top:0;transform:rotate(45deg);width:3px}.Checkboxes-checkboxDP{margin-bottom:0!important}.Checkboxes-checkboxLabelText,.Checkboxes-checkboxLabelTextBold{color:#424242;flex:1;font-size:11px;margin:0 0 26px 6px}.Checkboxes-checkboxLabelText.Checkboxes-staySignedIn,.Checkboxes-staySignedIn.Checkboxes-checkboxLabelTextBold{font-size:14px;margin-top:2px}.Checkboxes-checkboxLabelText a,.Checkboxes-checkboxLabelTextBold a{color:#171717;text-decoration:none}.Checkboxes-checkboxLabelText a:hover,.Checkboxes-checkboxLabelTextBold a:hover{color:#171717;text-decoration:underline}.Checkboxes-checkboxLabelText p,.Checkboxes-checkboxLabelTextBold p{color:#424242;margin-bottom:0}.Checkboxes-checkboxLabelTextBold{font-weight:600;line-height:18px;margin:-2px 0 26px 6px;text-align:start;text-transform:uppercase}.Checkboxes-checkboxLink{color:#005594!important}.SubscriptionsUpsell-upsell{color:#424242;font-size:14px;font-weight:600;line-height:normal;margin:0}.SubscriptionsUpsell-upsell a.SubscriptionsUpsell-upsellLink{color:#00a857;font-size:14px;font-weight:600}.SubscriptionsUpsell-upsell a.SubscriptionsUpsell-upsellLink:hover{color:#008456}.SubscriptionsUpsell-upsell.SubscriptionsUpsell-subscriptionFlow{font-size:18px;text-align:center}.SubscriptionsUpsell-upsell.SubscriptionsUpsell-subscriptionFlow a.SubscriptionsUpsell-upsellLink{color:#005594;font-size:18px}.SubscriptionsUpsell-upsell.SubscriptionsUpsell-subscriptionFlow a.SubscriptionsUpsell-upsellLink:hover{color:#002f6c}.SubscriptionsUpsell-upsell.SubscriptionsUpsell-subscriptionFlow .SubscriptionsUpsell-investingClubUpsellCopy,.SubscriptionsUpsell-upsell.SubscriptionsUpsell-subscriptionFlow .SubscriptionsUpsell-investingClubUpsellCopy a.SubscriptionsUpsell-upsellLink{font-size:20px}.SubscriptionsUpsell-upsell.SubscriptionsUpsell-subscriptionFlow .SubscriptionsUpsell-investingClubUpsellCopy .SubscriptionsUpsell-icUpsellHeader{font-size:24px}.SubscriptionsUpsell-upsell .SubscriptionsUpsell-cfaContainer{color:#171717;text-align:center}.SubscriptionsUpsell-upsell .SubscriptionsUpsell-cfaContainer .SubscriptionsUpsell-cfaHeader{color:#071d39;margin:0 0 15px}.SubscriptionsUpsell-upsell .SubscriptionsUpsell-cfaContainer .SubscriptionsUpsell-cfaButton{align-items:center;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;border:1px solid #005594;border-radius:3px;color:#005594;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;height:45px;justify-content:center;letter-spacing:1px;margin:auto;max-width:260px!important;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%;width:100%!important}.SubscriptionsUpsell-upsell .SubscriptionsUpsell-cfaContainer .SubscriptionsUpsell-cfaButton>span{display:block;line-height:12px}.SubscriptionsUpsell-upsell .SubscriptionsUpsell-cfaContainer .SubscriptionsUpsell-cfaButton [class*=" icon-"],.SubscriptionsUpsell-upsell .SubscriptionsUpsell-cfaContainer .SubscriptionsUpsell-cfaButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.SubscriptionsUpsell-upsell .SubscriptionsUpsell-cfaContainer .SubscriptionsUpsell-cfaButton [class*=" icon-"]:before,.SubscriptionsUpsell-upsell .SubscriptionsUpsell-cfaContainer .SubscriptionsUpsell-cfaButton [class^=icon-]:before{line-height:12px}.SubscriptionsUpsell-upsell .SubscriptionsUpsell-cfaContainer .SubscriptionsUpsell-cfaButton:focus,.SubscriptionsUpsell-upsell .SubscriptionsUpsell-cfaContainer .SubscriptionsUpsell-cfaButton:hover{background-color:#005594;border-color:#005594;color:#fff}.SubscriptionsUpsell-upsell .SubscriptionsUpsell-cfaContainer .SubscriptionsUpsell-cfaButton[class*=touchButton]:hover{background-color:#fff;border-color:#005594;color:#005594}@media (hover:hover){.SubscriptionsUpsell-upsell .SubscriptionsUpsell-cfaContainer .SubscriptionsUpsell-cfaButton[class*=touchButton]:hover{background-color:#005594;border-color:#005594;color:#fff}}@media (min-width:760px){.SubscriptionsUpsell-upsell .SubscriptionsUpsell-cfaContainer .SubscriptionsUpsell-cfaButton{padding:0 30px;width:auto}}.SubscriptionsUpsell-upsell .SubscriptionsUpsell-cfaContainer .SubscriptionsUpsell-cfaText{font-size:14px;line-height:16px;margin:14px auto 30px;max-width:350px}.SubscriptionsUpsell-upsell.SubscriptionsUpsell-bold{font-size:21px;text-align:center}.SubscriptionsUpsell-upsell.SubscriptionsUpsell-bold a.SubscriptionsUpsell-upsellLink{font-size:21px}.SubscriptionsUpsell-upsell.SubscriptionsUpsell-bold.SubscriptionsUpsell-subscriptionFlow{font-size:24px}.SubscriptionsUpsell-upsell.SubscriptionsUpsell-bold.SubscriptionsUpsell-subscriptionFlow a.SubscriptionsUpsell-upsellLink{color:#2077b6;font-size:24px}.SubscriptionsUpsell-upsell.SubscriptionsUpsell-bold.SubscriptionsUpsell-subscriptionFlow .SubscriptionsUpsell-investingClubUpsellCopy,.SubscriptionsUpsell-upsell.SubscriptionsUpsell-bold.SubscriptionsUpsell-subscriptionFlow .SubscriptionsUpsell-investingClubUpsellCopy a.SubscriptionsUpsell-upsellLink{font-size:20px}.SubscriptionsUpsell-upsell.SubscriptionsUpsell-bold.SubscriptionsUpsell-subscriptionFlow .SubscriptionsUpsell-investingClubUpsellCopy .SubscriptionsUpsell-icUpsellHeader{font-size:24px}.AreYouSure-container{color:#171717;font-size:18px;font-weight:700;padding-top:18px;text-align:center}@media (max-width:759px){.AreYouSure-container{width:100%}}.AreYouSure-header{font-size:18px;font-weight:700;height:20px;margin-bottom:12px}.AreYouSure-subText{font-size:14px;font-weight:600;height:16px;margin-bottom:48px}.AreYouSure-buttons{padding:0 32px 7px}@media (min-width:760px){.AreYouSure-buttons{align-items:stretch;display:flex}}@media (max-width:759px){.AreYouSure-buttons{padding:0}}.AreYouSure-primaryButton{align-items:center;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#00a857;border:1px solid #00a857;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;margin:0;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.AreYouSure-primaryButton>span{display:block;line-height:12px}.AreYouSure-primaryButton [class*=" icon-"],.AreYouSure-primaryButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AreYouSure-primaryButton [class*=" icon-"]:before,.AreYouSure-primaryButton [class^=icon-]:before{line-height:12px}.AreYouSure-primaryButton:focus,.AreYouSure-primaryButton:hover{background-color:#008456;border-color:#008456;color:#fff}.AreYouSure-primaryButton[class*=touchButton]:hover{background-color:#00a857;border-color:#00a857;color:#fff}@media (hover:hover){.AreYouSure-primaryButton[class*=touchButton]:hover{background-color:#008456;border-color:#008456;color:#fff}}@media (min-width:760px){.AreYouSure-primaryButton{padding:0 30px;width:auto}}.AreYouSure-secondaryButton{align-items:center;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;border:1px solid #00a857;color:#00a857;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;margin:0 24px 0 0;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.AreYouSure-secondaryButton>span{display:block;line-height:12px}.AreYouSure-secondaryButton [class*=" icon-"],.AreYouSure-secondaryButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AreYouSure-secondaryButton [class*=" icon-"]:before,.AreYouSure-secondaryButton [class^=icon-]:before{line-height:12px}.AreYouSure-secondaryButton:focus,.AreYouSure-secondaryButton:hover{background-color:#fff;border-color:#008456;color:#008456}.AreYouSure-secondaryButton[class*=touchButton]:hover{background-color:#fff;border-color:#00a857;color:#00a857}@media (hover:hover){.AreYouSure-secondaryButton[class*=touchButton]:hover{background-color:#fff;border-color:#008456;color:#008456}}@media (min-width:760px){.AreYouSure-secondaryButton{padding:0 30px;width:auto}}@media (max-width:759px){.AreYouSure-secondaryButton{margin:0 0 28px}}.AreYouSure-primaryButton,.AreYouSure-secondaryButton{border-radius:3px;flex:1;font-size:16px;height:50px;padding:0;width:185px}@media (max-width:759px){.AreYouSure-primaryButton,.AreYouSure-secondaryButton{width:100%}}.AreYouSure-investingClubFlow .AreYouSure-header{font-weight:600}.AreYouSure-investingClubFlow .AreYouSure-subText{font-weight:500}.AreYouSure-investingClubFlow .AreYouSure-primaryButton{align-items:center;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#071d39;border:1px solid #071d39;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.AreYouSure-investingClubFlow .AreYouSure-primaryButton>span{display:block;line-height:12px}.AreYouSure-investingClubFlow .AreYouSure-primaryButton [class*=" icon-"],.AreYouSure-investingClubFlow .AreYouSure-primaryButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AreYouSure-investingClubFlow .AreYouSure-primaryButton [class*=" icon-"]:before,.AreYouSure-investingClubFlow .AreYouSure-primaryButton [class^=icon-]:before{line-height:12px}.AreYouSure-investingClubFlow .AreYouSure-primaryButton:focus,.AreYouSure-investingClubFlow .AreYouSure-primaryButton:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}.AreYouSure-investingClubFlow .AreYouSure-primaryButton[class*=touchButton]:hover{background-color:#071d39;border-color:#071d39;color:#fff}@media (hover:hover){.AreYouSure-investingClubFlow .AreYouSure-primaryButton[class*=touchButton]:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}}@media (min-width:760px){.AreYouSure-investingClubFlow .AreYouSure-primaryButton{padding:0 30px;width:auto}}.AreYouSure-investingClubFlow .AreYouSure-secondaryButton{align-items:center;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;border:1px solid #071d39;color:#071d39;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.AreYouSure-investingClubFlow .AreYouSure-secondaryButton>span{display:block;line-height:12px}.AreYouSure-investingClubFlow .AreYouSure-secondaryButton [class*=" icon-"],.AreYouSure-investingClubFlow .AreYouSure-secondaryButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AreYouSure-investingClubFlow .AreYouSure-secondaryButton [class*=" icon-"]:before,.AreYouSure-investingClubFlow .AreYouSure-secondaryButton [class^=icon-]:before{line-height:12px}.AreYouSure-investingClubFlow .AreYouSure-secondaryButton:focus,.AreYouSure-investingClubFlow .AreYouSure-secondaryButton:hover{background-color:#fff;border-color:#002f6c;color:#002f6c}.AreYouSure-investingClubFlow .AreYouSure-secondaryButton[class*=touchButton]:hover{background-color:#fff;border-color:#071d39;color:#071d39}@media (hover:hover){.AreYouSure-investingClubFlow .AreYouSure-secondaryButton[class*=touchButton]:hover{background-color:#fff;border-color:#002f6c;color:#002f6c}}@media (min-width:760px){.AreYouSure-investingClubFlow .AreYouSure-secondaryButton{padding:0 30px;width:auto}}.AreYouSure-investingClubFlow .AreYouSure-primaryButton,.AreYouSure-investingClubFlow .AreYouSure-secondaryButton{border-radius:3px;flex:1;font-size:16px;height:50px;line-height:12px;padding:0;width:185px}@media (max-width:759px){.AreYouSure-investingClubFlow .AreYouSure-primaryButton,.AreYouSure-investingClubFlow .AreYouSure-secondaryButton{width:100%}}.LogoHeader-header{margin-bottom:12px;text-align:center}.LogoHeader-logo{display:inline}.LogoHeader-proPill{display:inline;margin-left:8px}.LogoHeader-investingClubHeader{display:flex;justify-content:center;margin-bottom:28px;margin-top:11px}.LogoHeader-investingClubHeader .LogoHeader-logo{fill:#071d39;stroke:#071d39;max-width:255px}.SignedIn-container{color:#171717;font-size:18px;font-weight:700;text-align:center;width:400px}@media (max-width:759px){.SignedIn-container{width:100%}}.SignedIn-container .SignedIn-messageConfirmation{font-size:18px;font-weight:600;text-align:center}.SignedIn-container.SignedIn-blank{background-color:#f8f8f8}.SignedIn-container.SignedIn-investingClubFlow .SignedIn-messageConfirmation{font-weight:700}.SignedIn-okayButton{align-items:center;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#00a857;border:1px solid #00a857;border-radius:3px;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;height:50px;justify-content:center;letter-spacing:1px;margin:0 auto 15px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%;width:200px}.SignedIn-okayButton>span{display:block;line-height:12px}.SignedIn-okayButton [class*=" icon-"],.SignedIn-okayButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.SignedIn-okayButton [class*=" icon-"]:before,.SignedIn-okayButton [class^=icon-]:before{line-height:12px}.SignedIn-okayButton:focus,.SignedIn-okayButton:hover{background-color:#008456;border-color:#008456;color:#fff}.SignedIn-okayButton[class*=touchButton]:hover{background-color:#00a857;border-color:#00a857;color:#fff}@media (hover:hover){.SignedIn-okayButton[class*=touchButton]:hover{background-color:#008456;border-color:#008456;color:#fff}}@media (min-width:760px){.SignedIn-okayButton{padding:0 30px;width:auto}}.SignedIn-logosContainer{display:flex;justify-content:center;margin-bottom:16px}.SignedIn-logosContainer>*{align-self:baseline;height:40px;text-align:center;width:100px}.SignedIn-proPill{height:22px}.SignedIn-checkmarkContainer{align-items:center;height:40px;margin-bottom:15px}.SignedIn-checkmarkContainer .SignedIn-checkMark,.SignedIn-checkmarkContainer .SignedIn-checkmarkCNBC,.SignedIn-checkmarkContainer .SignedIn-checkmarkDefault,.SignedIn-checkmarkContainer .SignedIn-checkmarkPro{height:40px;margin:0 30px;width:40px}.SignedIn-checkmarkCNBC circle{fill:#005594;opacity:.25}.SignedIn-checkmarkCNBC path{fill:#005594}.SignedIn-checkmarkPro circle{fill:#00a857;opacity:.25}.SignedIn-checkmarkPro path{fill:#00a857}.SignedIn-checkmarkDefault circle{fill:#005594;opacity:1}.SignedIn-checkmarkDefault path{fill:#fff}.ProPill-proPillLink{display:inline-block;padding-right:4px}.ProPill-proPill{bottom:0;display:inline-block;position:relative;vertical-align:baseline;width:auto!important}.InvestingClubPill-investingClubPillLink{display:inline-block;padding-right:4px}.InvestingClubPill-investingClubPill,.InvestingClubPill-latestNews{bottom:0;display:inline-block;position:relative;vertical-align:baseline;width:auto}.InvestingClubPill-latestNews{bottom:-2px}.Modal-modalBackground{background:rgba(0,0,0,.7);height:100%;left:0;overflow-y:auto;position:fixed;top:0;transition:background-color .4s;width:100%;z-index:100001}.Modal-bottomModal.Modal-modal{background:#f8f8f8;border-radius:3px;bottom:0;box-shadow:5px 5px 20px hsla(0,0%,9%,.1);display:inline-block;height:528px;left:0;margin-top:0!important;max-width:100%;position:fixed;top:auto;transform:none;width:100%}@media (max-width:1019px){.Modal-bottomModal.Modal-modal{height:642px}}@media (max-width:759px){.Modal-bottomModal.Modal-modal{height:100%;position:relative;top:0}}.Modal-modal{background:#f8f8f8;border-radius:3px;box-shadow:5px 5px 20px hsla(0,0%,9%,.1);display:inline-block;left:50%;margin-top:10vh;max-width:100%;overflow:auto;position:relative;transform:translateX(-50%)}@media (max-width:759px){.Modal-modal{height:100%;left:auto;margin:0;transform:none;width:100%}}.Modal-modal.Modal-investingClubFlow{background:#8fd0ff}.Modal-modalContents{overflow:auto}.Modal-closeButton{color:#a9a9a9;cursor:pointer;position:absolute;right:12px;top:12px}.Confirmation-copy{color:#171717;margin-bottom:16px}.Confirmation-copy p.Confirmation-header{font-size:18px;font-weight:600;line-height:20px}.Confirmation-copy p{font-size:14px;font-weight:600;line-height:16px;margin:0 0 10px}.Confirmation-email{color:#747474;font-size:14px;font-weight:500}.Confirmation-checkMark,.Confirmation-checkmarkDefault,.Confirmation-checkmarkInvestingClub,.Confirmation-checkmarkPro{height:40px;margin-bottom:20px;width:40px}.Confirmation-checkmarkDefault circle{fill:#005594;opacity:.25}.Confirmation-checkmarkDefault path{fill:#005594}.Confirmation-checkmarkPro circle{fill:#00a857;opacity:.25}.Confirmation-checkmarkPro path{fill:#00a857}.Confirmation-confirmation{color:#424242;font-size:14px;font-weight:600;margin-bottom:24px;margin-top:0;text-align:center}.Confirmation-checkmarkInvestingClub circle{fill:#005594;opacity:1}.Confirmation-checkmarkInvestingClub path{fill:#fff}.Confirmation-confirmationCode{color:#747474;font-weight:500}.Confirmation-investingClubFlow{align-items:center;margin:20px 0 30px;padding:0}.Confirmation-investingClubFlow .Confirmation-copy{margin-bottom:10px}.Confirmation-investingClubFlow .Confirmation-copy p.Confirmation-header{margin-bottom:20px}.Confirmation-investingClubFlow .Confirmation-copy p.Confirmation-email{margin-bottom:0}.Confirmation-investingClubFlow .Confirmation-checkmarkInvestingClub{margin:10px 0}.Confirmation-investingClubFlow .Confirmation-confirmationText{margin:10px 0 38px}.Confirmation-investingClubFlow .Confirmation-confirmationText .Confirmation-confirmationCode{color:#171717;font-weight:600}.ErrorModal-copy{color:#171717;margin-bottom:16px}.ErrorModal-copy p.ErrorModal-header{font-size:18px;font-weight:600;line-height:20px}.ErrorModal-copy p{font-size:14px;font-weight:600;line-height:16px;margin:0 0 10px}.ErrorModal-email{color:#747474;font-size:14px;font-weight:500}.ErrorModal-checkMark{height:40px;margin-bottom:15px;width:40px}.ErrorModal-confirmation{color:#424242;font-weight:600;margin-bottom:24px}.ErrorModal-confirmationCode{color:#747474;font-weight:500}.ErrorModal-helpDesk{color:#171717;font-weight:600;margin-bottom:24px}.ErrorModal-helpDesk a{color:#00a857}.ErrorModal-helpDesk a:hover{color:#008456}.ErrorModal-investingClubFlow{align-items:center;margin:20px 0 30px;padding:0}.ErrorModal-investingClubFlow .ErrorModal-copy{margin-bottom:10px;padding:0 10%}.ErrorModal-investingClubFlow .ErrorModal-copy p.ErrorModal-header{margin-bottom:20px}.ErrorModal-investingClubFlow .ErrorModal-copy p.ErrorModal-email{margin-bottom:0}.ErrorModal-investingClubFlow .ErrorModal-confirmation{margin:0}.ErrorModal-investingClubFlow .ErrorModal-helpDesk{margin:20px 0 38px}.ErrorModal-investingClubFlow .ErrorModal-helpDesk a{color:#005594}.ErrorModal-investingClubFlow .ErrorModal-helpDesk a:hover{color:#1896ff}.SignupProgress-stepsLine{background-color:#d9d9d9}.SignupProgress-stepsLine.SignupProgress-stepsLineComplete{background-color:#00a857}@media (max-width:759px){.SignupProgress-stepsPianoTest{padding:20px 0}.SignupProgress-stepsPianoTest:before{background:#27313c;content:"";height:100%;left:50%;position:absolute;top:0;transform:translateX(-50%);width:100vw}.SignupProgress-stepsPianoTest .SignupProgress-stepsLine{background-color:#d9d9d9;z-index:0}.SignupProgress-stepsPianoTest .SignupProgress-stepsLine.SignupProgress-stepsLineComplete{background-color:#00a857}.SignupProgress-stepsPianoTest .SignupProgress-stepTitle{color:#9e9e9e}.SignupProgress-stepsPianoTest .SignupProgress-stepTitleActive{color:#fff}}.SignupProgress-stepTitle{color:#9e9e9e}.SignupProgress-stepTitleActive{color:#424242}.NotAvailableModal-contentWrapper{padding:40px;text-align:center}.NotAvailableModal-contentWrapper img{margin:auto}.PasswordAssistiveText-assistiveText{background-color:#f8f8f8;border:1px solid #d9d9d9;border-radius:0 0 6px 6px;border-top:0;padding:10px 5px 5px;position:absolute;width:100%;z-index:2}.PasswordAssistiveText-assistiveTextItem{color:#bababa;font-size:12px;font-weight:500;line-height:16px;margin-bottom:5px;text-align:left}.PasswordAssistiveText-assistiveTextItemComplete{color:#171717}.PasswordAssistiveText-checkMark{visibility:hidden}.PasswordAssistiveText-checkMarkDisplay{height:10px;margin-right:5px;visibility:visible}.AuthPasswordInput-assistiveTextContainer{position:relative;width:100%}.AccountHasEmailError-signIn{font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:inherit;margin-left:3px}.UserCreateAndSubmit-container{margin:0 auto;text-align:center;width:100%}@media (min-width:760px){.UserCreateAndSubmit-container{width:340px}}.UserCreateAndSubmit-loggedInAccount{color:#424242;font-size:14px;font-weight:700;margin-bottom:20px;margin-top:20px}.UserCreateAndSubmit-loggedInAccountEmail{color:#747474}.UserCreateAndSubmit-continueButton{align-items:center;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#00a857;border:1px solid #00a857;border-radius:3px;color:#fff;cursor:pointer;display:flex;flex-direction:row;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-size:16px;font-weight:600;font-weight:700;height:40px;height:50px;justify-content:center;letter-spacing:1px;margin:0 auto 24px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%;width:190px}.UserCreateAndSubmit-continueButton>span{display:block;line-height:12px}.UserCreateAndSubmit-continueButton [class*=" icon-"],.UserCreateAndSubmit-continueButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.UserCreateAndSubmit-continueButton [class*=" icon-"]:before,.UserCreateAndSubmit-continueButton [class^=icon-]:before{line-height:12px}.UserCreateAndSubmit-continueButton:focus,.UserCreateAndSubmit-continueButton:hover{background-color:#008456;border-color:#008456;color:#fff}.UserCreateAndSubmit-continueButton[class*=touchButton]:hover{background-color:#00a857;border-color:#00a857;color:#fff}@media (hover:hover){.UserCreateAndSubmit-continueButton[class*=touchButton]:hover{background-color:#008456;border-color:#008456;color:#fff}}@media (min-width:760px){.UserCreateAndSubmit-continueButton{padding:0 30px;width:auto;width:190px}}@media (max-width:759px){.UserCreateAndSubmit-continueButton{width:100%}}.UserCreateAndSubmit-cta{color:#424242;font-weight:500;margin-bottom:24px;text-align:center}.UserCreateAndSubmit-formInputContainer{margin:0 auto 30px}@media (min-width:760px){.UserCreateAndSubmit-formInputContainer{width:340px}}.UserCreateAndSubmit-formInput{width:100%}input::-ms-clear,input::-ms-reveal{display:none}.UserCreateAndSubmit-infoText{color:#424242;flex:1;font-size:11px;line-height:13px;margin:0 0 12px 12px;text-align:center}.UserCreateAndSubmit-infoText a{color:#171717;font-weight:500;text-decoration:none}.UserCreateAndSubmit-infoText p{margin-bottom:0}.UserCreateAndSubmit-questionAndCta{color:#424242;font-size:12px;font-weight:700;margin-bottom:20px}.UserCreateAndSubmit-questionAndCta button{color:#00a857;font-size:12px;font-weight:700}.UserCreateAndSubmit-questionAndCta button:hover{color:#008456}.UserCreateAndSubmit-miscellaneousError{word-wrap:break-word;border-radius:3px;color:#f44336;font-size:12px;margin:0 auto 15px;padding:10px;width:340px}@media (min-width:1020px){.UserCreateAndSubmit-investingClubError{position:relative;right:150px}.UserCreateAndSubmit-investingClubContainer{width:322px}}.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-investingClubDivider{border-bottom:1px solid #071d39;font-size:16px;font-weight:600;line-height:.1em;margin:10px auto 20px;text-align:center;width:186px}.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-investingClubDivider span{background:#fff;padding:0 10px}.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton{align-items:center;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#071d39;border:1px solid #071d39;border-radius:3px;color:#fff;cursor:pointer;display:flex;flex-direction:row;font-size:14px;font-size:16px;font-weight:600;font-weight:700;height:40px;height:50px;justify-content:center;letter-spacing:1px;margin:0 auto 24px;padding:16px 0;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%;width:190px}.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton>span{display:block;line-height:12px}.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton [class*=" icon-"],.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton [class*=" icon-"]:before,.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton [class^=icon-]:before{line-height:12px}.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton:focus,.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton[class*=touchButton]:hover{background-color:#071d39;border-color:#071d39;color:#fff}@media (hover:hover){.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton[class*=touchButton]:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}}@media (min-width:760px){.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton{padding:0 30px;width:auto}}@media (min-width:1020px){.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton{transform:translate(-77%);width:190px}}@media (max-width:759px){.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton{width:100%}}.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-cta{color:#071d39;font-size:20px;font-weight:600;margin-bottom:19px;text-align:center}@media (min-width:760px){.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-cta{margin-bottom:20px}}.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-questionAndCta{color:#071d39;font-size:18px;font-weight:400;margin-bottom:20px}.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-questionAndCta button{color:#005594;font-size:16px;font-weight:700}.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-questionAndCta button:hover{color:#0496ff}@media (min-width:1020px){.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-formInputContainer{width:322px}}.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-formInput{margin:0 auto}@media (min-width:760px) and (max-width:1019px){.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-formInput{width:100%}}@media (min-width:1020px){.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-checkBoxes,.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-recaptchaAcknowledgement{transform:translate(-45%)}.UserCreateAndSubmit-investingClubContainerLoggedIn .UserCreateAndSubmit-continueButton{transform:none}}.UserCreateAndSubmit-investingClubContainerLoggedIn .UserCreateAndSubmit-questionAndCta{color:#424242;font-size:12px;font-weight:700;margin-bottom:20px}.UserCreateAndSubmit-investingClubContainerLoggedIn .UserCreateAndSubmit-questionAndCta button{font-size:12px}.SelectPlan-container{width:670px}@media (min-width:760px) and (max-width:1019px){.SelectPlan-container{width:558px}}@media (max-width:759px){.SelectPlan-container{width:100%}}.SelectPlan-ctaPrimary{color:#171717;font-size:20px;font-weight:600;margin-bottom:5px;text-align:center}@media (max-width:759px){.SelectPlan-ctaPrimary{font-size:18px}}.SelectPlan-ctaSecondary{color:#424242;font-size:16px;font-weight:500;margin-bottom:10px;text-align:center}.SelectPlan-signedInMessage{background:#f1f1f1;border:1px solid #d9d9d9;border-radius:5px;color:#424242;font-size:14px;font-weight:600;line-height:20px;margin:10px auto;padding:5px;text-align:center;width:250px}.SelectPlan-plans{height:100%;text-align:center}@media (min-width:760px){.SelectPlan-plans{align-items:stretch;display:flex;margin:0 auto 29px;width:465px}}.SelectPlan-planDetails{background-color:#fff;border:2px solid #bababa;border-radius:3px;box-sizing:border-box;cursor:pointer;flex:1;font-size:12px;padding:17px}@media (max-width:759px){.SelectPlan-planDetails{margin-bottom:15px}}.SelectPlan-planDetails.SelectPlan-selected{border-color:#00a857;box-shadow:5px 5px 20px hsla(0,0%,9%,.1)}@media (min-width:760px){.SelectPlan-planDetails:first-child{margin-right:24px}}.SelectPlan-planHeader{background-color:#bababa;color:#fff;font-size:18px;font-weight:700;margin:-17px -17px 20px;padding:3px}.SelectPlan-planHeader.SelectPlan-selected{background-color:#00a857;margin-bottom:20px}.SelectPlan-price{color:#747474;font-size:20px;font-weight:700;line-height:14px}.SelectPlan-price.SelectPlan-selected{color:#008456}.SelectPlan-priceSubtext{color:#9e9e9e;font-size:14px;font-weight:700;margin-bottom:10px;text-transform:lowercase}.SelectPlan-perk{display:flex;margin-bottom:8px}.SelectPlan-perkBullet{margin-top:4px}.SelectPlan-perkText{flex:1;line-height:18px;padding-left:8px;text-align:left}.SelectPlan-perkText.SelectPlan-active{color:#424242;font-size:16px;font-weight:700}.SelectPlan-perkText.SelectPlan-active.SelectPlan-selected{color:#008456}.SelectPlan-planFootNote{color:#bababa;font-size:8px;line-height:9px}.SelectPlan-perksContainer{height:100%;margin:10px 0;text-align:center}@media (min-width:760px){.SelectPlan-perksContainer{align-items:stretch;margin:20px auto 29px;width:465px}}.SelectPlan-perksContainer .SelectPlan-perk{margin-bottom:15px}.SelectPlan-perksContainer .SelectPlan-perkText{color:#424242;font-size:15px;font-weight:500}@media (max-width:759px){.SelectPlan-containerPianoTest .SelectPlan-ctaPrimary{font-size:20px;margin-top:15px;padding:0 40px}.SelectPlan-containerPianoTest .SelectPlan-saveBubble{background-color:#00a857;border-radius:13px;color:#fff;font-size:12px;font-weight:700;height:24px;padding:2px 12px;position:absolute;right:-14px;top:-16px;width:80px}.SelectPlan-containerPianoTest .SelectPlan-discountPrice{color:#747474;font-size:12px;text-decoration:line-through}.SelectPlan-containerPianoTest .SelectPlan-planDetails{border:1px solid #9e9e9e;box-shadow:0 1px 4px rgba(0,0,0,.3);height:60px;margin:0 auto;max-width:203px;padding:0;position:relative}.SelectPlan-containerPianoTest .SelectPlan-selected{border:1px solid #008456;box-shadow:inset 1px 1px 6px rgba(0,0,0,.25)}.SelectPlan-containerPianoTest .SelectPlan-priceContainer{align-content:center;display:flex;flex-direction:column;font-weight:700;height:60px;justify-content:center;padding:7px 20px;text-align:right}.SelectPlan-containerPianoTest .SelectPlan-plans{padding:26px 40px 33px}.SelectPlan-containerPianoTest .SelectPlan-freeTrail{color:#424242;font-size:10px;font-weight:700;margin:9px auto 21px;max-width:203px;text-align:right}.SelectPlan-containerPianoTest .SelectPlan-frequency{font-size:10px;font-weight:700}.SelectPlan-containerPianoTest .SelectPlan-price{color:#00a857;font-size:16px;font-weight:700}.SelectPlan-containerPianoTest .SelectPlan-svgRadio{left:20px;position:absolute;top:20px}}.ProSignupModal-modalContents{padding:21px}.ProSignupModal-createAccContainer{width:670px}@media (min-width:760px) and (max-width:1019px){.ProSignupModal-createAccContainer{width:558px}}@media (max-width:759px){.ProSignupModal-createAccContainer{width:100%}}.ProSignupModal-createAccContainer .ProSignupModal-ctaPrimary{color:#171717;font-size:20px;font-weight:600;margin-bottom:5px;text-align:center}@media (max-width:759px){.ProSignupModal-createAccContainer .ProSignupModal-ctaPrimary{font-size:18px}}.SignupProgress-stepsLine{background-color:#171717;flex:1;height:1px;margin-top:9px;width:100%}.SignupProgress-steps{display:flex;margin:0 auto;padding-bottom:30px;position:relative;width:250px}.SignupProgress-step{flex:0;position:relative}.SignupProgress-stepIcon{box-shadow:5px 5px 20px hsla(0,0%,9%,.1)}.SignupProgress-stepTitle{color:#171717;font-size:11px;font-weight:600;left:-42px;position:absolute;text-align:center;width:100px}.tp-backdrop{background:rgba(0,0,0,.7)!important;transition:none!important}.tp-modal .tp-close{background:url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16 1.611 14.389 0 8 6.389 1.611 0 0 1.611 6.389 8 0 14.389 1.611 16 8 9.611 14.389 16 16 14.389 9.611 8 16 1.611Z' fill='%23747474'/%3E%3C/svg%3E") 50% no-repeat!important;border-radius:0!important;height:16px!important;right:12px!important;top:12px!important;transform:none!important;width:16px!important}.tp-modal .tp-close,.tp-modal .tp-close:focus,.tp-modal .tp-close:hover{box-shadow:none!important}.tp-iframe-wrapper{background-color:#f8f8f8!important;border-radius:4px;box-shadow:5px 5px 20px hsla(0,0%,9%,.1)!important;margin:0 auto!important;overflow:hidden;position:relative!important}@media (min-width:651px){.tp-iframe-wrapper{margin:100px auto!important}}.tp-modal{height:auto!important}.ValueProps-container{width:714px}@media (min-width:760px) and (max-width:1019px){.ValueProps-container{width:558px}}@media (max-width:759px){.ValueProps-container{width:100%}}.ValueProps-valuePropsContainer{display:flex;margin:0 auto;padding:10px 0 43px;width:620px}@media (max-width:1020px){.ValueProps-valuePropsContainer{display:block;padding-top:0;width:auto}}@media (min-width:360px) and (max-width:759px){.ValueProps-valuePropsContainer{width:90%}}.ValueProps-valuePropsContainerLoggedIn{display:block}.ValueProps-ctaSecondary{color:#424242;font-size:16px;font-weight:500;margin-bottom:10px;text-align:center}.ValueProps-signedInMessage{background:#f1f1f1;border:1px solid #d9d9d9;border-radius:5px;color:#424242;font-size:14px;font-weight:600;line-height:20px;margin:10px auto;padding:5px;text-align:center;width:250px}.ValueProps-perks{font-size:12px;line-height:14px;margin:0 10px 10px}.ValueProps-perk{display:flex;margin-bottom:8px}.ValueProps-perkBullet{margin-top:4px}.ValueProps-perkText{flex:1;line-height:18px;padding-left:8px;text-align:left}.ValueProps-investingClubPerks{height:100%;margin:10px 0 27px;text-align:center}@media (min-width:760px){.ValueProps-investingClubPerks{align-items:stretch;margin:40px 19px 20px auto;width:465px}}.ValueProps-investingClubPerks .ValueProps-perk{margin-bottom:25px}.ValueProps-investingClubPerks .ValueProps-perkText{color:#071d39;font-size:18px;font-weight:500}@media (min-width:360px) and (max-width:759px){.ValueProps-investingClubPerks .ValueProps-perkText{font-size:16px}}@media (min-width:760px){.ValueProps-investingClubPerksLoggedIn{margin:30px;width:auto}}.ValueProps-continueButton{align-items:center;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#00a857;border:1px solid #00a857;border-radius:3px;color:#fff;cursor:pointer;display:flex;flex-direction:row;font-size:14px;font-size:16px;font-weight:600;font-weight:700;height:40px;height:50px;justify-content:center;letter-spacing:1px;margin:0 auto 24px;padding:16px 0;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%;width:190px}.ValueProps-continueButton>span{display:block;line-height:12px}.ValueProps-continueButton [class*=" icon-"],.ValueProps-continueButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.ValueProps-continueButton [class*=" icon-"]:before,.ValueProps-continueButton [class^=icon-]:before{line-height:12px}.ValueProps-continueButton:focus,.ValueProps-continueButton:hover{background-color:#008456;border-color:#008456;color:#fff}.ValueProps-continueButton[class*=touchButton]:hover{background-color:#00a857;border-color:#00a857;color:#fff}@media (hover:hover){.ValueProps-continueButton[class*=touchButton]:hover{background-color:#008456;border-color:#008456;color:#fff}}@media (min-width:760px){.ValueProps-continueButton{padding:0 30px;width:auto;width:190px}}@media (max-width:759px){.ValueProps-continueButton{width:100%}}.ValueProps-valueProps{font-size:12px;letter-spacing:.5px;padding-left:8px;width:50%}@media (min-width:760px){.ValueProps-valueProps{font-size:14px}}.InvestingClubModal-modalContents{background:#fff linear-gradient(0deg,#8fd0ff,#fff 50%);padding:21px}.InvestingClubModal-modalContents.InvestingClubModal-nobackground{background:#f8f8f8}.InvestingClubModal-createAccContainer{width:670px}@media (min-width:760px) and (max-width:1019px){.InvestingClubModal-createAccContainer{width:558px}}@media (max-width:759px){.InvestingClubModal-createAccContainer{width:100%}}.InvestingClubModal-createAccContainer .InvestingClubModal-ctaPrimary{color:#171717;font-size:20px;font-weight:600;margin-bottom:5px;text-align:center}@media (max-width:759px){.InvestingClubModal-createAccContainer .InvestingClubModal-ctaPrimary{font-size:18px}}.SignInOrSignUpModal-modalContents{padding:21px}.UnlockConfirmation-modalContents{padding:40px 71px 71px}@media (max-width:759px){.UnlockConfirmation-modalContents{padding:40px 51px 51px}}.UnlockConfirmation-logoHeader{color:#333;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:28px;font-weight:700;line-height:1.05;padding-bottom:24px;text-align:center}@media (max-width:1019px){.UnlockConfirmation-logoHeader{font-size:28px;margin-bottom:12px}}@media (max-width:759px){.UnlockConfirmation-logoHeader{font-size:22px}}.UnlockConfirmation-logoProImg{display:inline-block;margin:0;padding:0;vertical-align:middle;width:204px}@media (max-width:1019px){.UnlockConfirmation-logoProImg{width:194px}}@media (max-width:759px){.UnlockConfirmation-logoProImg{width:164px}}.UnlockConfirmation-modalUnlockContainer{margin-left:auto;margin-right:auto;max-width:500px;padding:10px;text-align:center}@media (max-width:1019px){.UnlockConfirmation-modalUnlockContainer{width:100%}}.UnlockConfirmation-unlockText{color:#333;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:24px;font-weight:600;line-height:32px;padding-bottom:25px}@media (max-width:1019px){.UnlockConfirmation-unlockText{font-size:24px;line-height:26px;width:100%}}@media (max-width:759px){.UnlockConfirmation-unlockText{font-size:24px;line-height:22px}}.UnlockConfirmation-proText{color:#00a857}.UnlockConfirmation-unlockButton{align-items:center;background:rgba(0,168,87,.24);border-radius:50%;display:flex;height:40px;justify-content:center;margin-left:calc(50% - 20px);width:40px}.UnlockConfirmation-unlockIcon{height:25px;width:25px}.SignInOrSignUpConfirmationModal-modalContents{padding:21px}.LoggedInModal-modalContents{padding:40px 71px 71px}@media (max-width:759px){.LoggedInModal-modalContents{padding:40px 51px 51px}}.LoggedInModal-breaker{border:none;margin:0 -71px 24px;outline:.5px solid #cfd8e2}.LoggedInModal-logoHeader{color:#333;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:28px;font-weight:700;line-height:1.05;padding-bottom:24px;text-align:center}@media (max-width:1019px){.LoggedInModal-logoHeader{font-size:28px;margin-bottom:12px}}@media (max-width:759px){.LoggedInModal-logoHeader{font-size:22px}}.LoggedInModal-logoProImg{display:inline-block;margin:0;padding:0;vertical-align:middle;width:204px}@media (max-width:1019px){.LoggedInModal-logoProImg{width:194px}}@media (max-width:759px){.LoggedInModal-logoProImg{width:164px}}.LoggedInModal-modalUnlockContainer{margin-left:auto;margin-right:auto;max-width:500px;padding:10px;text-align:center}@media (max-width:1019px){.LoggedInModal-modalUnlockContainer{width:100%}}.LoggedInModal-unlockText{color:#333;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:24px;font-weight:600;line-height:32px;padding-bottom:25px}@media (max-width:1019px){.LoggedInModal-unlockText{font-size:24px;line-height:26px;width:100%}}@media (max-width:759px){.LoggedInModal-unlockText{font-size:24px;line-height:22px}}.LoggedInModal-headerTitle{color:#333;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:28px;font-weight:700;line-height:1.05;padding-bottom:20px}@media (max-width:1019px){.LoggedInModal-headerTitle{font-size:28px}}@media (max-width:759px){.LoggedInModal-headerTitle{font-size:24px;line-height:25px;padding-bottom:14px}}.LoggedInModal-proText{color:#00a857}.LoggedInModal-unlockButton{align-items:center;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#00a857;border:1px solid #00a857;border-radius:3px;box-shadow:-2px 2px 2px hsla(0,0%,9%,.25);color:#fff;cursor:pointer;display:flex;flex-direction:row;font-size:14px;font-size:22px;font-weight:600;height:40px;height:60px;justify-content:center;letter-spacing:1px;margin:0 auto;max-width:300px;outline:.5px solid #333;padding:0 20px;text-align:center;text-transform:uppercase;text-transform:none;transition:all .15s linear;width:100%;width:80%}.LoggedInModal-unlockButton>span{display:block;line-height:12px}.LoggedInModal-unlockButton [class*=" icon-"],.LoggedInModal-unlockButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.LoggedInModal-unlockButton [class*=" icon-"]:before,.LoggedInModal-unlockButton [class^=icon-]:before{line-height:12px}.LoggedInModal-unlockButton:focus,.LoggedInModal-unlockButton:hover{background-color:#008456;border-color:#008456;color:#fff}.LoggedInModal-unlockButton[class*=touchButton]:hover{background-color:#00a857;border-color:#00a857;color:#fff}@media (hover:hover){.LoggedInModal-unlockButton[class*=touchButton]:hover{background-color:#008456;border-color:#008456;color:#fff}}@media (min-width:760px){.LoggedInModal-unlockButton{padding:0 30px;width:auto;width:100%}}.LoggedInModal-unlockIcon{margin-right:8px}.DynamicPaywallSignUpModal-modalContents{padding-top:21px}.DynamicPaywallSignUpModal-logoHeader{border-bottom:1px solid #cfd8e2;color:#333;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:40px;font-weight:700;line-height:1.05;margin-bottom:24px;padding-bottom:24px;text-align:center}@media (max-width:1019px){.DynamicPaywallSignUpModal-logoHeader{font-size:36px;margin-bottom:12px}}@media (max-width:759px){.DynamicPaywallSignUpModal-logoHeader{font-size:24px}}.DynamicPaywallSignUpModal-logoProImg{display:inline-block;margin:0;padding:0;vertical-align:middle;width:204px}@media (max-width:1019px){.DynamicPaywallSignUpModal-logoProImg{width:194px}}@media (max-width:759px){.DynamicPaywallSignUpModal-logoProImg{width:164px}}.DynamicPaywallSignUpModal-modalSignUpContainer{margin-left:auto;margin-right:auto;max-width:824px;padding:10px}@media (max-width:1019px){.DynamicPaywallSignUpModal-modalSignUpContainer{width:100%}}.DynamicPaywallSignUpModal-signUpContainer{display:flex;flex-direction:row;justify-content:space-between}@media (max-width:1019px){.DynamicPaywallSignUpModal-signUpContainer{display:block}}.DynamicPaywallSignUpModal-previewContainer{padding-right:10px;padding-top:20px;position:relative}@media (max-width:1019px){.DynamicPaywallSignUpModal-previewContainer{padding:20px;width:100%}}@media (max-width:759px){.DynamicPaywallSignUpModal-previewContainer{padding:15px}}.DynamicPaywallSignUpModal-signupText{color:#333;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:24px;font-weight:600;line-height:32px;padding-bottom:25px;width:84%}@media (max-width:1019px){.DynamicPaywallSignUpModal-signupText{font-size:19px;line-height:26px;padding-bottom:15px;width:100%}}@media (max-width:759px){.DynamicPaywallSignUpModal-signupText{font-size:16px;line-height:22px}}.DynamicPaywallSignUpModal-headerTitle{color:#333;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:34px;font-weight:700;line-height:1.05;padding-bottom:20px}@media (max-width:1019px){.DynamicPaywallSignUpModal-headerTitle{font-size:36px;padding-bottom:10px}}@media (max-width:759px){.DynamicPaywallSignUpModal-headerTitle{font-size:24px;line-height:25px;padding-bottom:14px}}.DynamicPaywallSignUpModal-proText{color:#00a857}.DynamicPaywallSignUpModal-ctaText{color:#333;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:20px;font-weight:600}@media (max-width:1019px){.DynamicPaywallSignUpModal-ctaText{font-size:17px}}@media (max-width:759px){.DynamicPaywallSignUpModal-ctaText{font-size:14px}}.DynamicPaywallSignUpModal-ctaButton{color:#00a857;cursor:pointer;font-size:20px;font-weight:600}@media (max-width:1019px){.DynamicPaywallSignUpModal-ctaButton{font-size:17px}}@media (max-width:759px){.DynamicPaywallSignUpModal-ctaButton{font-size:14px}}.DynamicPaywallSignUpModal-createAccContainer{width:670px}@media (min-width:760px) and (max-width:1019px){.DynamicPaywallSignUpModal-createAccContainer{width:558px}}@media (max-width:759px){.DynamicPaywallSignUpModal-createAccContainer{width:100%}}.DynamicPaywallSignUpModal-createAccContainer .DynamicPaywallSignUpModal-ctaPrimary{color:#171717;font-size:20px;font-weight:600;margin-bottom:5px;text-align:center}@media (max-width:759px){.DynamicPaywallSignUpModal-createAccContainer .DynamicPaywallSignUpModal-ctaPrimary{font-size:18px}}.ResetPasswordModal-modalContents{padding:20px}@media (min-width:760px){.ResetPasswordModal-modalContents{width:500px}}.ResetPasswordModal-container{color:#171717;font-weight:700;padding:20px 50px;text-align:center;width:500px}.ResetPasswordModal-boundedContainer{max-width:350px}.ResetPasswordModal-confirmationHeader{font-size:18px;margin-top:10px}.ResetPasswordModal-email{color:#9e9e9e}.ResetPasswordModal-checkmark{height:50px;width:50px}.ResetPasswordModal-okayButton{align-items:center;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#002f6c;border:1px solid #002f6c;border-radius:3px;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;height:50px;justify-content:center;letter-spacing:1px;margin:20px auto 15px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%;width:200px}.ResetPasswordModal-okayButton>span{display:block;line-height:12px}.ResetPasswordModal-okayButton [class*=" icon-"],.ResetPasswordModal-okayButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.ResetPasswordModal-okayButton [class*=" icon-"]:before,.ResetPasswordModal-okayButton [class^=icon-]:before{line-height:12px}.ResetPasswordModal-okayButton:focus,.ResetPasswordModal-okayButton:hover,.ResetPasswordModal-okayButton[class*=touchButton]:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}@media (hover:hover){.ResetPasswordModal-okayButton[class*=touchButton]:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}}@media (min-width:760px){.ResetPasswordModal-okayButton{padding:0 30px;width:auto}}.ResetPasswordModal-okayButtonPro{align-items:center;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#00a857;border:1px solid #00a857;border-radius:3px;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;height:50px;justify-content:center;letter-spacing:1px;margin:20px auto 15px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%;width:200px}.ResetPasswordModal-okayButtonPro>span{display:block;line-height:12px}.ResetPasswordModal-okayButtonPro [class*=" icon-"],.ResetPasswordModal-okayButtonPro [class^=icon-]{height:12px;margin-left:5px;position:relative}.ResetPasswordModal-okayButtonPro [class*=" icon-"]:before,.ResetPasswordModal-okayButtonPro [class^=icon-]:before{line-height:12px}.ResetPasswordModal-okayButtonPro:focus,.ResetPasswordModal-okayButtonPro:hover{background-color:#008456;border-color:#008456;color:#fff}.ResetPasswordModal-okayButtonPro[class*=touchButton]:hover{background-color:#00a857;border-color:#00a857;color:#fff}@media (hover:hover){.ResetPasswordModal-okayButtonPro[class*=touchButton]:hover{background-color:#008456;border-color:#008456;color:#fff}}@media (min-width:760px){.ResetPasswordModal-okayButtonPro{padding:0 30px;width:auto}.ResetPasswordModal-okayButton{width:200px}}.UniversalVideoPlayer-videoContainer{opacity:1;position:absolute;z-index:10}.DynamicLoadingIndicator-spinnerParent{display:block;padding:10px}.DynamicLoadingIndicator-spinner{-webkit-animation:DynamicLoadingIndicator-spin 2s linear infinite;animation:DynamicLoadingIndicator-spin 2s linear infinite;border:3px solid #f3f3f3;border-radius:50%;border-top-color:#666;display:block;margin:0 auto}@-webkit-keyframes DynamicLoadingIndicator-spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}@keyframes DynamicLoadingIndicator-spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.ErrorHandler-container{background:#ff5053;height:100%;position:relative;width:100%;word-break:break-word}.hfsf{z-index:100}.NavSpacer-navSpacer{display:block;height:45px}.NavSpacer-navSpacer.NavSpacer-navSpacerCountDownClock,.NavSpacer-navSpacer.NavSpacer-navSpacerFiveThings{height:112px}@media (min-width:760px){.NavSpacer-navSpacer{height:70px}.NavSpacer-navSpacer.NavSpacer-navSpacerCountDownClock,.NavSpacer-navSpacer.NavSpacer-navSpacerFiveThings{height:112px}}.NavSpacer-navSpacer.NavSpacer-navSpacerNewsAlert{height:85px}.NavSpacer-navSpacer.NavSpacer-navSpacerNewsAlert.NavSpacer-navSpacerLiveAlert{height:125px}.NavSpacer-navSpacer.NavSpacer-navSpacerNewsAlert.NavSpacer-navSpacerCountDownClock,.NavSpacer-navSpacer.NavSpacer-navSpacerNewsAlert.NavSpacer-navSpacerFiveThings{height:192px}@media (min-width:760px){.NavSpacer-navSpacer.NavSpacer-navSpacerNewsAlert{height:110px}.NavSpacer-navSpacer.NavSpacer-navSpacerNewsAlert.NavSpacer-navSpacerLiveAlert{height:150px}.NavSpacer-navSpacer.NavSpacer-navSpacerNewsAlert.NavSpacer-navSpacerCountDownClock{height:152px}.NavSpacer-navSpacer.NavSpacer-navSpacerNewsAlert.NavSpacer-navSpacerFiveThings{height:185px}}.NavSpacer-navSpacer.NavSpacer-navSpacerLiveAlert{height:85px}@media (min-width:360px){.NavSpacer-navSpacer.NavSpacer-navSpacerLiveAlert.NavSpacer-navSpacerNewsAlert{height:125px}.NavSpacer-navSpacer.NavSpacer-navSpacerLiveAlert.NavSpacer-navSpacerNewsAlert.NavSpacer-NavSpacer-navSpacerFiveThings{height:162px}}@media (min-width:760px){.NavSpacer-navSpacer.NavSpacer-navSpacerLiveAlert.NavSpacer-navSpacerNewsAlert{height:150px}}@media (min-width:1020px){.NavSpacer-navSpacer.NavSpacer-navSpacerLiveAlert.NavSpacer-navSpacerNewsAlert{height:150px}}@media (min-width:1340px){.NavSpacer-navSpacer.NavSpacer-navSpacerLiveAlert.NavSpacer-navSpacerNewsAlert{height:150px}}.NavSpacer-navSpacer.NavSpacer-navSpacerLiveAlert.NavSpacer-navSpacerNewsAlert.NavSpacer-navSpacerFiveThings{height:185px}.NavSpacer-navSpacer.NavSpacer-navSpacerLiveAlert.NavSpacer-navSpacerNewsAlert.NavSpacer-navSpacerCountDownClock{height:192px}.NavSpacer-navSpacer.NavSpacer-navSpacerLiveAlert.NavSpacer-navSpacerCountDownClock,.NavSpacer-navSpacer.NavSpacer-navSpacerLiveAlert.NavSpacer-navSpacerFiveThings{height:152px}@media (min-width:760px){.NavSpacer-navSpacer.NavSpacer-navSpacerLiveAlert{height:110px}}.SelectHFSNav-container{margin-bottom:-20px;position:sticky;top:0;z-index:9999}@supports (-webkit-overflow-scrolling:touch){.hfsh .menu .inner:after{display:none!important}.menu-select__copyright:after{content:"";display:block;height:88px;width:100%}}nav.hfsh{pointer-events:auto!important}.MobileAdhesion-container{display:none;margin:10px auto;overflow:hidden;text-align:center}.JumpLink-container{margin:0 auto;position:relative;width:100%;z-index:1000}@media (min-width:1020px){.JumpLink-container{margin:0 auto;max-width:100%}}@media (min-width:1020px) and (min-width:760px){.JumpLink-container{max-width:678px}}@media (min-width:1020px) and (min-width:1020px){.JumpLink-container{max-width:960px}}@media (min-width:1020px) and (min-width:1340px){.JumpLink-container{max-width:1290px}}.JumpLink-link{align-items:center;background-color:#e8e8e8;color:#002f6c;display:flex;font-size:14px;font-weight:700;height:1px;left:-10000px;line-height:1;overflow:hidden;padding:0 14px;position:absolute;text-transform:uppercase;top:0;width:1px}.JumpLink-link:focus-visible{height:40px;left:0;width:auto}.SidebarArticle-sidebar{position:relative}@media (min-width:1020px){.SidebarArticle-sticky{margin-bottom:20px;position:sticky}}.SidebarArticle-noSticky{position:static!important}.SidebarArticle-noSticky .SidebarArticle-sticky{position:sticky}.LazyLoaderPlaceholder-articleBody{display:flex;flex-direction:row;flex-wrap:wrap;padding:0 20px}@media (min-width:760px){.LazyLoaderPlaceholder-articleBody{padding-left:0;padding-right:0}}.LazyLoaderPlaceholder-bodyText{color:#2e2e2e;font-family:Lyon,Helvetica,Arial,sans-serif;font-size:18px;line-height:1.66;margin-bottom:30px}@media (min-width:760px){.LazyLoaderPlaceholder-bodyText{flex-grow:0;flex-shrink:0;margin-left:calc(50% + 30px);max-width:75%;min-width:75%}}@media (min-width:760px) and (min-width:760px){.LazyLoaderPlaceholder-bodyText{margin-left:calc(16.66667% + 30px)}}@media (min-width:760px) and (min-width:1020px){.LazyLoaderPlaceholder-bodyText{margin-left:calc(22.22222% + 30px)}}@media (min-width:760px) and (min-width:1340px){.LazyLoaderPlaceholder-bodyText{margin-left:calc(16.66667% + 30px)}}@media (min-width:1020px){.LazyLoaderPlaceholder-bodyText{flex-grow:0;flex-shrink:0;margin-left:calc(25% + 30px);max-width:100%;min-width:100%}}@media (min-width:1020px) and (min-width:760px){.LazyLoaderPlaceholder-bodyText{margin-left:calc(8.33333% + 30px)}}@media (min-width:1020px) and (min-width:1020px){.LazyLoaderPlaceholder-bodyText{margin-left:calc(11.11111% + 30px)}}@media (min-width:1020px) and (min-width:1340px){.LazyLoaderPlaceholder-bodyText{margin-left:calc(8.33333% + 30px)}}@media (min-width:1340px){.LazyLoaderPlaceholder-bodyText{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:100%;min-width:100%}}@media (min-width:1340px) and (min-width:760px){.LazyLoaderPlaceholder-bodyText{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1020px){.LazyLoaderPlaceholder-bodyText{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1340px){.LazyLoaderPlaceholder-bodyText{margin-left:14.28571%}}@media (min-width:760px){.LazyLoaderPlaceholder-listWrapper{flex-grow:0;flex-shrink:0;margin-left:calc(50% + 30px);max-width:75%;min-width:75%}}@media (min-width:760px) and (min-width:760px){.LazyLoaderPlaceholder-listWrapper{margin-left:calc(16.66667% + 30px)}}@media (min-width:760px) and (min-width:1020px){.LazyLoaderPlaceholder-listWrapper{margin-left:calc(22.22222% + 30px)}}@media (min-width:760px) and (min-width:1340px){.LazyLoaderPlaceholder-listWrapper{margin-left:calc(16.66667% + 30px)}}@media (min-width:1020px){.LazyLoaderPlaceholder-listWrapper{flex-grow:0;flex-shrink:0;margin-left:calc(25% + 30px);max-width:100%;min-width:100%}}@media (min-width:1020px) and (min-width:760px){.LazyLoaderPlaceholder-listWrapper{margin-left:calc(8.33333% + 30px)}}@media (min-width:1020px) and (min-width:1020px){.LazyLoaderPlaceholder-listWrapper{margin-left:calc(11.11111% + 30px)}}@media (min-width:1020px) and (min-width:1340px){.LazyLoaderPlaceholder-listWrapper{margin-left:calc(8.33333% + 30px)}}@media (min-width:1340px){.LazyLoaderPlaceholder-listWrapper{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:100%;min-width:100%}}@media (min-width:1340px) and (min-width:760px){.LazyLoaderPlaceholder-listWrapper{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1020px){.LazyLoaderPlaceholder-listWrapper{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1340px){.LazyLoaderPlaceholder-listWrapper{margin-left:14.28571%}}.LazyLoaderPlaceholder-listTitle{font-size:24px;font-weight:700;margin-bottom:15px}.LazyLoaderPlaceholder-gridContainer{grid-gap:30px;display:grid;font-size:18px;font-weight:600;grid-template-columns:auto auto auto;line-height:22px;padding:10px}@media (min-width:360px) and (max-width:759px){.LazyLoaderPlaceholder-gridContainer{display:block;padding-left:0}}.LazyLoaderPlaceholder-gridItem{border-bottom:1px dashed hsla(0,0%,55%,.5)}.LazyLoaderPlaceholder-gridItem .LazyLoaderPlaceholder-author,.LazyLoaderPlaceholder-gridItem .LazyLoaderPlaceholder-headline,.LazyLoaderPlaceholder-gridItem .LazyLoaderPlaceholder-section{color:#000;display:block;margin-bottom:12px;margin-top:12px}.LazyLoaderPlaceholder-gridItem .LazyLoaderPlaceholder-headline:hover{text-decoration:underline}.LazyLoaderPlaceholder-gridItem .LazyLoaderPlaceholder-author,.LazyLoaderPlaceholder-gridItem .LazyLoaderPlaceholder-section{font-size:12px;line-height:12px;overflow-y:hidden}@media (min-width:360px) and (max-width:759px){.LazyLoaderPlaceholder-headline{word-break:break-word}}.LazyLoaderPlaceholder-moduleTitle{color:#000;display:block;font-size:32px;font-weight:800;line-height:37px;padding:10px}.LazyLoaderPlaceholder-moduleTitle:hover{color:#2077b6}@media (min-width:360px) and (max-width:759px){.LazyLoaderPlaceholder-moduleTitle{padding-left:0}}*{box-sizing:border-box}li,ol,ul{list-style:none;margin:0;padding:0}a{color:#fff;cursor:pointer;text-decoration:none}a:focus,a:hover{color:#fcb700}button{background:none;border:none;cursor:pointer;padding:0}table{border-collapse:collapse}td,th{padding:8px 15px 8px 0;text-align:left}img{display:block}html{-ms-overflow-style:-ms-autohiding-scrollbar}body{-webkit-font-smoothing:antialiased;-webkit-text-size-adjust:100%;border:0;font-family:Proxima Nova,Helvetica,Arial,sans-serif;margin:0;padding:0}body:after{content:"mobile";display:none}@media (min-width:760px){body:after{content:"tablet"}}@media (min-width:1020px){body:after{content:"small_desktop"}}@media (min-width:1180px){body:after{content:"medium_desktop"}}@media (min-width:1340px){body:after{content:"large_desktop"}}:focus{outline:none}button{border-radius:0;font-family:Proxima Nova,Helvetica,Arial,sans-serif}button::-moz-focus-inner{border:0}.openNav{position:fixed;width:100%}@media (min-width:1020px){.openNav{overflow-y:scroll}}.App-articleBody{display:flex;flex-direction:row;flex-wrap:wrap;padding:0 20px}@media (min-width:760px){.App-articleBody{padding-left:0;padding-right:0}}.group{font-family:Lyon,Helvetica,Arial,sans-serif;font-size:18px;line-height:1.66;margin-bottom:30px}@media (min-width:760px){.group{flex-grow:0;flex-shrink:0;margin-left:calc(50% + 30px);max-width:75%;min-width:75%}}@media (min-width:760px) and (min-width:760px){.group{margin-left:calc(16.66667% + 30px)}}@media (min-width:760px) and (min-width:1020px){.group{margin-left:calc(22.22222% + 30px)}}@media (min-width:760px) and (min-width:1340px){.group{margin-left:calc(16.66667% + 30px)}}@media (min-width:1020px){.group{flex-grow:0;flex-shrink:0;margin-left:calc(25% + 30px);max-width:100%;min-width:100%}}@media (min-width:1020px) and (min-width:760px){.group{margin-left:calc(8.33333% + 30px)}}@media (min-width:1020px) and (min-width:1020px){.group{margin-left:calc(11.11111% + 30px)}}@media (min-width:1020px) and (min-width:1340px){.group{margin-left:calc(8.33333% + 30px)}}@media (min-width:1340px){.group{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:100%;min-width:100%}}@media (min-width:1340px) and (min-width:760px){.group{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1020px){.group{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1340px){.group{margin-left:14.28571%}}@media (max-width:759px){.hideOnMobile{display:none}}.App-bodyText{color:#2e2e2e;font-family:Lyon,Helvetica,Arial,sans-serif;font-size:18px;line-height:1.66;margin-bottom:30px}@media (min-width:760px){.App-bodyText{flex-grow:0;flex-shrink:0;margin-left:calc(50% + 30px);max-width:75%;min-width:75%}}@media (min-width:760px) and (min-width:760px){.App-bodyText{margin-left:calc(16.66667% + 30px)}}@media (min-width:760px) and (min-width:1020px){.App-bodyText{margin-left:calc(22.22222% + 30px)}}@media (min-width:760px) and (min-width:1340px){.App-bodyText{margin-left:calc(16.66667% + 30px)}}@media (min-width:1020px){.App-bodyText{flex-grow:0;flex-shrink:0;margin-left:calc(25% + 30px);max-width:100%;min-width:100%}}@media (min-width:1020px) and (min-width:760px){.App-bodyText{margin-left:calc(8.33333% + 30px)}}@media (min-width:1020px) and (min-width:1020px){.App-bodyText{margin-left:calc(11.11111% + 30px)}}@media (min-width:1020px) and (min-width:1340px){.App-bodyText{margin-left:calc(8.33333% + 30px)}}@media (min-width:1340px){.App-bodyText{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:100%;min-width:100%}}@media (min-width:1340px) and (min-width:760px){.App-bodyText{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1020px){.App-bodyText{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1340px){.App-bodyText{margin-left:14.28571%}}@media (min-width:760px){.App-listWrapper{flex-grow:0;flex-shrink:0;margin-left:calc(50% + 30px);max-width:75%;min-width:75%}}@media (min-width:760px) and (min-width:760px){.App-listWrapper{margin-left:calc(16.66667% + 30px)}}@media (min-width:760px) and (min-width:1020px){.App-listWrapper{margin-left:calc(22.22222% + 30px)}}@media (min-width:760px) and (min-width:1340px){.App-listWrapper{margin-left:calc(16.66667% + 30px)}}@media (min-width:1020px){.App-listWrapper{flex-grow:0;flex-shrink:0;margin-left:calc(25% + 30px);max-width:100%;min-width:100%}}@media (min-width:1020px) and (min-width:760px){.App-listWrapper{margin-left:calc(8.33333% + 30px)}}@media (min-width:1020px) and (min-width:1020px){.App-listWrapper{margin-left:calc(11.11111% + 30px)}}@media (min-width:1020px) and (min-width:1340px){.App-listWrapper{margin-left:calc(8.33333% + 30px)}}@media (min-width:1340px){.App-listWrapper{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:100%;min-width:100%}}@media (min-width:1340px) and (min-width:760px){.App-listWrapper{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1020px){.App-listWrapper{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1340px){.App-listWrapper{margin-left:14.28571%}}@media (min-width:760px){#taboolaContainer{flex-grow:0;flex-shrink:0;margin-left:calc(50% + 30px);max-width:75%;min-width:75%}}@media (min-width:760px) and (min-width:760px){#taboolaContainer{margin-left:calc(16.66667% + 30px)}}@media (min-width:760px) and (min-width:1020px){#taboolaContainer{margin-left:calc(22.22222% + 30px)}}@media (min-width:760px) and (min-width:1340px){#taboolaContainer{margin-left:calc(16.66667% + 30px)}}@media (min-width:1020px){#taboolaContainer{flex-grow:0;flex-shrink:0;margin-left:calc(25% + 30px);max-width:100%;min-width:100%}}@media (min-width:1020px) and (min-width:760px){#taboolaContainer{margin-left:calc(8.33333% + 30px)}}@media (min-width:1020px) and (min-width:1020px){#taboolaContainer{margin-left:calc(11.11111% + 30px)}}@media (min-width:1020px) and (min-width:1340px){#taboolaContainer{margin-left:calc(8.33333% + 30px)}}@media (min-width:1340px){#taboolaContainer{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:100%;min-width:100%}}@media (min-width:1340px) and (min-width:760px){#taboolaContainer{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1020px){#taboolaContainer{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1340px){#taboolaContainer{margin-left:14.28571%}}@media (min-width:760px){#taboolaContainer{flex:none}}@media (min-width:1020px){#taboolaContainer{flex-grow:0;flex-shrink:0;flex:none;margin-left:calc(16.66667% + 5px);max-width:calc(83.33333% - 5px);min-width:calc(83.33333% - 5px)}}@media (min-width:1340px){#taboolaContainer{flex-grow:0;flex-shrink:0;flex:none;margin-left:calc(14.28571% + 4.28571px);max-width:calc(85.71429% - 4.28571px);min-width:calc(85.71429% - 4.28571px)}}.App-listTitle{font-size:24px;font-weight:700;margin-bottom:15px}.numeric{text-align:right}@media (prefers-color-scheme:dark){.webview,.webview #taboola-below-article-thumbnails-Bento-Feed,.webview #taboola-below-article-thumbnails-Bento-Feed .video-title,.webview .trc_rbox_header_span{background-color:#000;color:#dce0e4}.webview #taboola-below-article-thumbnails-Bento-Feed .video-title a,.webview #taboola-below-article-thumbnails-Bento-Feed a,.webview .trc_rbox_header_span a,.webview a{color:#dce0e4}}.grecaptcha-badge{display:none}@font-face{font-display:swap;font-family:icomoon;font-style:normal;font-weight:400;src:url(https://static-redesign.cnbcfm.com/dist/icomoon.eot);src:url(https://static-redesign.cnbcfm.com/dist/icomoon.eot#iefix) format("embedded-opentype"),url(https://static-redesign.cnbcfm.com/dist/icomoon.ttf) format("truetype"),url(https://static-redesign.cnbcfm.com/dist/icomoon.woff) format("woff"),url(https://static-redesign.cnbcfm.com/dist/d231ed26aaa9397191e9.svg?xzw80u#icomoon) format("svg")}[class*=" icon-"],[class^=icon-]{speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-family:icomoon!important;font-style:normal;font-variant:normal;font-weight:400;line-height:1;text-transform:none}.icon-social_apple_news:before{content:"\e900"}.icon-close-2:before{content:"\e901"}.icon-thumbs-up:before{content:"\e902"}.icon-chat-bubble:before{content:"\e903"}.icon-chat-bubble-hover:before{content:"\e904"}.icon-thumbs-down:before{content:"\e905"}.icon-buffett-pause:before{content:"\e906"}.icon-buffett-timeline:before{content:"\e907"}.icon-buffett-backtotop:before{content:"\e908"}.icon-buffett-sync:before{content:"\e909"}.icon-buffett-arrow-right-long:before{content:"\e90a"}.icon-buffett-arrow-left-long:before{content:"\e90b"}.icon-buffett-diamond:before{content:"\e90c"}.icon-check:before{content:"\e90d"}.icon-search:before{content:"\e90e"}.icon-hamburger:before{content:"\e90f"}.icon-close:before{content:"\e910"}.icon-social_facebook:before{content:"\e911"}.icon-social_instagram:before{content:"\e912"}.icon-social_linkedin:before{content:"\e913"}.icon-social_rss:before{content:"\e914"}.icon-social_twitter:before{content:"\e915"}.icon-social_youtube:before{content:"\e916"}.icon-tumblr:before{content:"\e917"}.icon-stumbleupon:before{content:"\e918"}.icon-reddit:before{content:"\e919"}.icon-quote-mark:before{content:"\e91a"}.icon-probug:before{content:"\e91b"}.icon-play-triangle:before{content:"\e91c"}.icon-pinterest:before{content:"\e91d"}.icon-more-dots:before{content:"\e91e"}.icon-play:before{content:"\e91f"}.icon-email:before{content:"\e920"}.icon-digg:before{content:"\e921"}.icon-arrow-left:before{content:"\e922"}.icon-arrow-right:before{content:"\e923"}.icon-arrow-down-readmore:before{content:"\e924"}.icon-arrow-transporter-down:before{content:"\e925"}.icon-calendar:before{content:"\e926"}.icon-livebug:before{content:"\e927"}.icon-lock:before{content:"\e928"}.icon-sort:before{content:"\e929"}.icon-cnbctv:before{content:"\e92a"}.icon-markets:before{content:"\e92b"}.icon-menu:before{content:"\e92c"}.icon-news:before{content:"\e92d"}.icon-offsite-arrow:before{content:"\e92e"}.icon-short-arrow-left:before{content:"\e92f"}.icon-short-arrow-right:before{content:"\e930"}.icon-live:before{content:"\e931"}.icon-newsletter:before{content:"\e932"}.icon-caret-left:before{content:"\e933"}.icon-triangle-down:before{content:"\e934"}.icon-triangle-up:before{content:"\e935"}.icon-caret-right:before{content:"\e936"}.icon-buffett-arrow-left:before{content:"\e937"}.icon-buffett-arrow-right:before{content:"\e938"}.icon-buffett-chevron-down:before{content:"\e939"}.icon-buffett-chevron-left:before{content:"\e93a"}.icon-buffett-chevron-right:before{content:"\e93b"}.icon-buffett-chevron-up:before{content:"\e93c"}.icon-buffett-playlist:before{content:"\e93d"}.icon-buffett-slideshow:before{content:"\e93e"}.icon-buffett-video-fullscreen:before{content:"\e93f"}.icon-buffett-video-mute:before{content:"\e940"}.icon-buffett-video-volume:before{content:"\e941"}.icon-buffett-video:before{content:"\e91C"}.PlayButton-buffett .icon-buffett-video:before{content:"\e942"}.icon-video_back_to_top:before{content:"\e943"}.icon-video_close:before{content:"\e944"}.icon-logo-cnbc:before{content:"\e945"}.icon-minus:before{content:"\e946"}.icon-plus:before{content:"\e947"}.icon-watchlist:before{content:"\e948"}.icon-replay:before{content:"\e965"}@font-face{font-display:swap;font-family:makeit-icons;font-style:normal;font-weight:400;src:url(https://static-redesign.cnbcfm.com/dist/makeit-icons.eot);src:url(https://static-redesign.cnbcfm.com/dist/makeit-icons.woff2) format("embedded-opentype"),url(https://static-redesign.cnbcfm.com/dist/makeit-icons.ttf) format("truetype"),url(https://static-redesign.cnbcfm.com/dist/makeit-icons.woff) format("woff"),url(https://static-redesign.cnbcfm.com/dist/62140da39836672b65c3.svg?h2gve7#makeit-icons) format("svg")}[class*=" icon-makeit-"]:before,[class^=icon-makeit-]:before{display:inline-block;font-family:makeit-icons!important}.icon-makeit-arrow-down:before{content:"\e900"}.icon-makeit-arrow-left:before{content:"\e901"}.icon-makeit-arrow-right:before{content:"\e902"}.icon-makeit-arrow-up:before{content:"\e903"}.icon-makeit-backtotop:before{content:"\e904"}.icon-makeit-check:before{content:"\e905"}.icon-makeit-close:before{content:"\e906"}.icon-makeit-externallink:before{content:"\e907"}.icon-makeit-filter-closed:before{content:"\e908"}.icon-makeit-filter-open:before{content:"\e909"}.icon-makeit-fullscreen:before{content:"\e90a"}.icon-makeit-hamburger:before{content:"\e90b"}.icon-makeit-logo-cnbc:before{content:"\e90c"}.icon-makeit-mail:before{content:"\e90d"}.icon-makeit-mute:before{content:"\e90e"}.icon-makeit-pause:before{content:"\e90f"}.icon-makeit-play:before{content:"\e910"}.icon-makeit-questionnaire:before{content:"\e911"}.icon-makeit-quote:before{content:"\e912"}.icon-makeit-search:before{border-top:1px solid transparent;content:"\e913"}.icon-makeit-trending-bug:before{content:"\e914"}.icon-makeit-unmute:before{content:"\e915"}.icon-makeit-plus:before{content:"\e916"}.icon-makeit-minus:before{content:"\e917"}.icon-makeit-newsletter:before{content:"\e918"}@font-face{font-display:swap;font-family:social-icons;font-style:normal;font-weight:400;src:url(https://static-redesign.cnbcfm.com/dist/social-icons.eot);src:url(https://static-redesign.cnbcfm.com/dist/social-icons.woff2) format("embedded-opentype"),url(https://static-redesign.cnbcfm.com/dist/social-icons.ttf) format("truetype"),url(https://static-redesign.cnbcfm.com/dist/social-icons.woff) format("woff"),url(https://static-redesign.cnbcfm.com/dist/b2460f56a3dd6c592c18.svg?7b5vsl#icomoon) format("svg")}[class*=" gig-button-container-"],[class^=gig-button-container-]{speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-family:social-icons!important;font-style:normal;font-variant:normal;font-weight:400;line-height:1;text-transform:none}.gig-button-container-facebook .icon-social:before{content:"\e911"}.gig-button-container-instagram .icon-social:before{content:"\e912"}.gig-button-container-linkedin .icon-social:before{content:"\e913"}.gig-button-container-rss .icon-social:before{content:"\e914"}.gig-button-container-twitter .icon-social:before{content:"\e915"}.gig-button-container-youtube .icon-social:before{content:"\e916"}.gig-button-container-tumblr .icon-social:before{content:"\e917"}.gig-button-container-stumbleupon .icon-social:before{content:"\e918"}.gig-button-container-reddit .icon-social:before{content:"\e919"}.gig-button-container-pinterest .icon-social:before{content:"\e91d"}.gig-button-container-share .icon-social:before{content:"\e91e"}.gig-button-container-email .icon-social:before{content:"\e920"}.gig-button-container-digg .icon-social:before{content:"\e921"}.transition-fade-enter{opacity:.01!important}.transition-fade-appear{opacity:.01}.transition-fade-appear.transition-fade-appear-active{opacity:1!important;transition:opacity .5s ease-in}.transition-fade-enter.transition-fade-enter-active{opacity:1!important;transition:opacity .3s ease-in}.transition-transform-y-appear{transform:translateY(20%);transition:transform .5s ease-in}.transition-transform-y-appear.transition-transform-y-appear-active{transform:translateY(0);transition:transform .5s ease-in}.transition-top-enter{transform:translateY(-100%)}.transition-search-fade-enter{opacity:.01!important}.transition-search-fade-enter.transition-search-fade-enter-active{opacity:1!important;transition:opacity .5s ease-in}.transition-top-enter.transition-top-enter-active{transform:translateY(0);transition:transform .5s}.transition-bottom-enter{transform:translateY(100%)}.transition-bottom-enter.transition-bottom-enter-active{transform:translateY(0);transition:transform .5s}.mega-menu-enter{opacity:.01!important}.mega-menu-enter .mega-menu-megaMenu{transform:translate3d(0,-100%,0)!important}.mega-menu-enter.mega-menu-enter-active{opacity:1!important;transition:opacity .3s ease-in}.mega-menu-enter.mega-menu-enter-active .mega-menu-megaMenu{transform:translateZ(0)!important;transition:transform .3s cubic-bezier(.645,.045,.355,1)}.mega-menu-exit{opacity:1!important}.mega-menu-exit .mega-menu-megaMenu{transform:translateZ(0)!important}.mega-menu-exit.mega-menu-exit-active{opacity:.01!important;transition:opacity .15s ease-in}.mega-menu-exit.mega-menu-exit-active .mega-menu-megaMenu{transform:translate3d(0,-100%,0)!important;transition:transform .15s cubic-bezier(.645,.045,.355,1)}.App-contentWrapper{margin-top:45px}@media (min-width:760px){.App-contentWrapper{margin-top:70px}}.App-contentWrapperClock{margin-top:112px}.App-containerClick a:focus,.App-containerClick button:focus,.App-containerClick input:focus,.App-containerClick textarea:focus{outline:none}.App-proContentRecommendation{bottom:0;position:fixed;width:100%;z-index:9999}@media (max-width:759px){.App-proContentRecommendation{bottom:55px}}.App-makeit.App-buttonContainer{margin-bottom:20px;position:relative;text-align:center;width:auto}@media (min-width:760px){.App-makeit.App-buttonContainer{margin-bottom:50px}}.App-makeit .App-buttonLink{background:#fff;border:3px solid #68ebca;color:#3e4855;display:inline-block;font-size:14px;font-weight:600;height:42px;letter-spacing:3px;line-height:12px;padding:12px 75px;text-transform:uppercase;width:auto}.App-makeit .App-buttonLink:hover{background-color:#68ebca}body .makeitBrand{font-family:Averta,Helvetica,Arial,sans-serif}body .makeitBrand #faceteddata div>a{color:#000}.HalfAndHalfBreaker-halfAndHalfBreaker{margin-left:-20px;margin-right:-20px;width:auto}@media (min-width:760px){.HalfAndHalfBreaker-halfAndHalfBreaker{margin:0}}@media (min-width:1020px){.HalfAndHalfBreaker-halfAndHalfBreaker{padding-left:0;padding-right:0}}.HalfAndHalfBreaker-container{margin:0 auto;max-width:100%;width:100%}@media (min-width:760px){.HalfAndHalfBreaker-container{max-width:678px}}@media (min-width:1020px){.HalfAndHalfBreaker-container{max-width:960px}}@media (min-width:1340px){.HalfAndHalfBreaker-container{max-width:1290px}}@media (min-width:1020px){.HalfAndHalfBreaker-container{display:flex;max-width:none}}.HalfAndHalfBreaker-wrapper{position:relative}.HalfAndHalfBreaker-section{background-position:50%;background-size:cover;padding:30px 20px;position:relative;width:100%}.HalfAndHalfBreaker-section:last-child{border-top:1px solid #fff}@media (min-width:760px){.HalfAndHalfBreaker-section{display:flex;padding-left:0;padding-right:0}}@media (min-width:1020px){.HalfAndHalfBreaker-section{flex-direction:column;height:auto;max-width:50%;min-width:50%;padding:30px}.HalfAndHalfBreaker-section:first-child{padding-left:0}.HalfAndHalfBreaker-section:last-child{border-left:1px solid #fff;border-top:none;padding-right:0}}.HalfAndHalfBreaker-newsletterIcon{display:flex;margin-right:15px}.HalfAndHalfBreaker-newsletterIcon .icon-newsletter:before{font-size:38px;line-height:.73;position:relative;top:4px}@media (min-width:760px){.HalfAndHalfBreaker-newsletterIcon .icon-newsletter:before{font-size:44px;top:-2px}}@media (min-width:1020px){.HalfAndHalfBreaker-newsletterIcon .icon-newsletter:before{top:4px}}@media (min-width:1340px){.HalfAndHalfBreaker-newsletterIcon .icon-newsletter:before{font-size:45px;top:3px}}.HalfAndHalfBreaker-logo{display:block;height:auto;margin-right:15px;width:160px}@media (min-width:760px){.HalfAndHalfBreaker-logo{width:265px}}@media (min-width:1020px){.HalfAndHalfBreaker-logo{width:265px}}.HalfAndHalfBreaker-title{align-items:center;color:#fff;display:flex;font-size:24px;font-weight:700;letter-spacing:-.16em;line-height:32px;margin-bottom:10px;max-width:100%;position:relative;z-index:2}@media (min-width:760px){.HalfAndHalfBreaker-title{align-items:flex-start;font-size:26px;line-height:30px;padding-right:30px;width:51%}}@media (min-width:1020px){.HalfAndHalfBreaker-title{align-items:center;font-size:32px;line-height:31px;min-height:40px;padding-right:20px;width:100%}}.HalfAndHalfBreaker-titleImage{display:block;margin-bottom:10px;max-width:100%;padding-right:20px;position:relative;z-index:2}@media (min-width:760px){.HalfAndHalfBreaker-titleImage{max-height:40px;padding-right:30px;width:51%}}@media (min-width:1020px){.HalfAndHalfBreaker-titleImage{padding-right:20px;width:100%}}.HalfAndHalfBreaker-content{max-width:100%;position:relative;z-index:2}@media (min-width:760px){.HalfAndHalfBreaker-content{float:left;width:60%}}@media (min-width:1020px){.HalfAndHalfBreaker-content{align-items:flex-start;display:flex;flex-direction:column;flex-grow:1;float:none;width:auto}}@media (min-width:1340px){.HalfAndHalfBreaker-content{display:flex;flex-direction:row;justify-content:space-between;width:100%}}.HalfAndHalfBreaker-description{color:#fff;font-family:Lyon,Helvetica,Arial,sans-serif;font-size:16px;font-weight:500;line-height:24px;margin:0 0 20px;max-width:100%;position:relative;z-index:2}@media (min-width:760px){.HalfAndHalfBreaker-description{margin-top:0}}@media (min-width:1020px){.HalfAndHalfBreaker-description{margin-top:15px;padding-right:20px}}@media (min-width:1340px){.HalfAndHalfBreaker-description{margin-bottom:0;max-width:none;padding-right:40px}}.HalfAndHalfBreaker-button{background:transparent;border:1px solid #fff;color:#fff;display:inline-block;font-size:12px;font-weight:600;height:40px;letter-spacing:1.09px;line-height:40px;position:relative;text-align:center;text-transform:uppercase;white-space:nowrap;width:100%;z-index:2}.HalfAndHalfBreaker-button:hover{background-color:#fcb700;border-color:#fcb700;color:#071d39}@media (min-width:760px){.HalfAndHalfBreaker-button{padding:0 20px;width:auto}}@media (min-width:1020px){.HalfAndHalfBreaker-button{margin-top:auto}}@media (min-width:1340px){.HalfAndHalfBreaker-button{margin:20px 0 0 auto}}.HalfAndHalfBreaker-background1{background-position:50%;background-size:cover;border:none;height:100%;left:0;position:absolute;top:0;width:100%}@media (min-width:760px){.HalfAndHalfBreaker-background1{width:100%}}@media (min-width:1020px){.HalfAndHalfBreaker-background1{left:0;margin-left:calc(-50vw - -480px);width:50vw}}@media (min-width:1180px){.HalfAndHalfBreaker-background1{margin-left:calc(-50vw - -538.5px)}}@media (min-width:1340px){.HalfAndHalfBreaker-background1{margin-left:calc(-50vw - -645px)}}.HalfAndHalfBreaker-background1:after{background:linear-gradient(90deg,rgba(7,29,57,.9),rgba(57,187,122,.9));content:"";height:100%;left:0;position:absolute;top:0;width:100%;z-index:1}@media (min-width:1020px){.HalfAndHalfBreaker-background2{margin-left:0}}.HalfAndHalfBreaker-background2:after{background:linear-gradient(90deg,rgba(7,29,57,.9),rgba(0,85,148,.9));content:"";height:100%;left:0;position:absolute;top:0;width:100%;z-index:1}.HalfAndHalfBreaker-proBackground:after{background:#2e2e2e linear-gradient(180deg,#2e2e2e 40%,rgba(57,187,122,.9))}@media (min-width:1020px){.HalfAndHalfBreaker-proBackground:after{background:#2e2e2e linear-gradient(90deg,#2e2e2e 40%,rgba(57,187,122,.9))}}.HalfAndHalfBreaker-watchlistBackground:after{background:linear-gradient(270deg,rgba(7,29,57,.9) 10%,#005594)}@media (min-width:760px){.HalfAndHalfBreaker-watchlistBackground:after{background:linear-gradient(90deg,rgba(46,46,46,.9) 40%,#005594)}}.HalfAndHalfBreaker-newsletterBackground:after{background:linear-gradient(180deg,rgba(46,46,46,.5),#071d39)}@media (min-width:1020px){.HalfAndHalfBreaker-newsletterBackground:after{background:linear-gradient(90deg,rgba(46,46,46,.8) 40%,rgba(7,29,57,.9))}}.WatchlistPage-container{margin:0 22px;max-width:100%;min-height:500px;padding-top:5px;position:relative}@media (min-width:360px){.WatchlistPage-container{margin-bottom:0}}@media (min-width:760px){.WatchlistPage-container{margin:0 auto;max-width:678px}}@media (min-width:1020px){.WatchlistPage-container{margin-bottom:15px;max-width:960px}}@media (min-width:1340px){.WatchlistPage-container{margin-bottom:25px;max-width:1290px}}.WatchlistPage-header{display:flex;justify-content:space-between;margin-top:30px}.WatchlistPage-header h2{margin:0}.WatchlistPage-header button{border:1px solid #002f6c;color:#002f6c;padding:10px}.SiteMapHeader-container{display:flex;flex-direction:row;flex-wrap:wrap;padding:0;width:100%}@media (min-width:760px){.SiteMapHeader-container{padding-left:0;padding-right:0}}.SiteMapHeader-heading{border-top:1px solid #747474;color:#002f6c;font-size:30px;font-weight:800;letter-spacing:.5px;line-height:37px;margin-bottom:20px;margin-top:0;padding-top:10px;position:relative;text-transform:uppercase;width:100%}@media (min-width:760px){.SiteMapHeader-heading{margin-bottom:30px}}@media (min-width:1020px){.SiteMapHeader-heading{font-size:32px;line-height:40px}}.SiteMapHeader-heading:before{background-color:#2077b6;content:"";height:6px;left:0;position:absolute;top:-6px;width:110px}.SiteMapSubMenuItems-sitemapSubMenuItem{color:#171717;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:600;letter-spacing:.03em;line-height:22px;text-align:left}.SiteMapSubMenuItems-sitemapSubMenuItem:hover{text-decoration:underline}.SiteMapMenuItem-menuItemColumn{margin-bottom:20px;width:100%}@media (min-width:760px){.SiteMapMenuItem-menuItemColumn{margin-bottom:30px;width:33.33333%}}.SiteMapMenuItem-sitemapMenuItemLabel{color:#002f6c;display:inline-block;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:600;letter-spacing:.06em;text-align:left;text-transform:uppercase}.SiteMapMenuItem-sitemapMenuItemLabel:hover{color:#fcb700}.SiteMapMenu-container{position:relative}.SiteMapMenu-sitemapMenuWrapper{display:flex;flex-wrap:wrap}.SiteMapBreadCrumb-container{border-bottom:1px dotted #747474;padding-bottom:4px}.SiteMapBreadCrumb-container li{color:#005594;display:inline;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:500;letter-spacing:.06em;line-height:1.375;list-style-type:none;padding-bottom:12px;padding-right:10px;position:relative;text-transform:uppercase}.SiteMapBreadCrumb-container li:after{color:#ffbc05;content:">";display:inline;font-size:16px;padding-left:10px}.SiteMapBreadCrumb-container li:last-child{font-weight:700}.SiteMapBreadCrumb-container li:last-child:after{content:""}.SiteMapBreadCrumb-container .SiteMapBreadCrumb-link{word-break:break-word}.SiteMapBreadCrumb-container a{color:#005594}.SiteMapBreadCrumb-container a:hover{color:#ffbc05}@media (max-width:759px){.SiteMapBreadCrumb-container li:nth-child(4):before{content:"\A";white-space:pre}}.SiteMapMonth-container{margin-bottom:30px;width:100%}.SiteMapMonth-container h3{color:#005594;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:700;letter-spacing:.06em;margin-bottom:6px;padding-bottom:8px;text-transform:uppercase}.SiteMapMonth-monthData ul{display:flex;flex-direction:column;flex-wrap:wrap;height:300px}@media (max-width:759px){.SiteMapMonth-monthData ul{display:table}}.SiteMapMonth-monthData li{color:#2e2e2e;cursor:pointer;display:block;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:600;letter-spacing:.03em;line-height:1.375;list-style-type:none;padding-bottom:12px;padding-right:10px;position:relative}.SiteMapMonth-monthData .SiteMapMonth-link{word-break:break-word}.SiteMapMonth-monthData a{color:#2e2e2e}.SiteMapMonth-monthData a:hover{color:#2e2e2e;text-decoration:underline}.SiteMapDay-container{margin:0 0 30px;width:100%}.SiteMapDay-container h3{color:#005594;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:700;letter-spacing:.06em;margin-bottom:6px;padding-bottom:8px;text-transform:uppercase}.SiteMapDay-fullDate ul{display:flex;flex-direction:column;flex-wrap:wrap;height:375px}@media (max-width:759px){.SiteMapDay-fullDate ul{display:table}}.SiteMapDay-fullDate li{color:#2e2e2e;display:block;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:600;letter-spacing:.03em;line-height:1.375;list-style-type:none;margin:0 10px 12px 0;position:relative}.SiteMapDay-fullDate .SiteMapDay-link{word-break:break-word}.SiteMapDay-fullDate a{color:#2e2e2e}.SiteMapDay-fullDate a:hover{color:#2e2e2e;text-decoration:underline}.SiteMapArticleList-container{display:flex;flex-direction:row;flex-wrap:wrap;padding:0;width:100%}@media (min-width:760px){.SiteMapArticleList-container{padding-left:0;padding-right:0}}.SiteMapArticleList-content{width:100%}.SiteMapArticleList-content h3{color:#005594;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:700;letter-spacing:.06em;margin-bottom:6px;padding-bottom:8px;text-transform:uppercase}.SiteMapArticleList-articleData li,.SiteMapArticleList-emptyPage{color:#2e2e2e;display:block;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:600;letter-spacing:.03em}.SiteMapArticleList-articleData li{line-height:1.3;list-style-type:none;padding-bottom:14px;padding-right:10px;position:relative}.SiteMapArticleList-articleData li .SiteMapArticleList-link{word-break:break-word}.SiteMapArticleList-articleData li a{color:#2e2e2e}.SiteMapArticleList-articleData li a:hover{color:#2e2e2e;text-decoration:underline}.SiteMapYear-container{margin-bottom:30px;width:100%}.SiteMapYear-container h3{border-bottom:1px dotted #005594;color:#005594;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:600;letter-spacing:.06em;margin-bottom:10px;text-transform:uppercase}.SiteMapYear-yearData{padding-top:15px}.SiteMapYear-yearData ul{-moz-column-count:3;column-count:3;-moz-column-gap:0;column-gap:0}@media (max-width:759px){.SiteMapYear-yearData ul{display:table}}.SiteMapYear-yearData li{color:#005594;display:block;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:600;letter-spacing:.03em;line-height:1.375;list-style-type:none;padding-bottom:12px;padding-right:10px;position:relative}.SiteMapYear-yearData .SiteMapYear-link{word-break:break-word}.SiteMapYear-yearData a{color:#005594}.SiteMapYear-yearData a:hover{color:#ffbc05}.SiteMap-container{margin:0 22px;max-width:100%;padding-top:5px}@media (min-width:360px){.SiteMap-container{margin-bottom:0}}@media (min-width:760px){.SiteMap-container{margin:0 auto;max-width:678px}}@media (min-width:1020px){.SiteMap-container{margin-bottom:15px;max-width:960px}}@media (min-width:1340px){.SiteMap-container{margin-bottom:25px;max-width:1290px}}.SiteMap-col{display:flex;flex-direction:column;flex-grow:0;flex-shrink:0;margin-right:30px;max-width:calc(100% - 30px);min-width:calc(100% - 30px)}@media (min-width:760px){.SiteMap-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.SiteMap-col{max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media screen and (min-width:1020px) and (-ms-high-contrast:none){.SiteMap-col{max-width:100%;min-width:100%}}@media (min-width:1340px){.SiteMap-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}.SiteMap-col:last-child{margin-right:0}@media (min-width:360px) and (max-width:759px){.SiteMap-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}}@media (min-width:760px) and (max-width:1019px){.SiteMap-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}}.SiteMap-col-9{padding-top:30px}.SiteMap-col-9 .BrandBanner-container{margin-bottom:30px;z-index:99}@media (min-width:1340px){.SiteMap-col-9 .BrandBanner-container{margin-left:calc(-50vw - -538.5px)}}@media (min-width:760px){.SiteMap-col-9 .BrandBanner-container{margin-bottom:-100px;margin-top:50px}.SiteMap-col-9{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.SiteMap-col-9{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.SiteMap-col-9{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.SiteMap-col-9{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.SiteMap-col-9{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.SiteMap-col-9{flex-grow:0;flex-shrink:0;margin-right:0;max-width:calc(66.66667% - 10px);min-width:calc(66.66667% - 10px)}.SiteMap-col-9:last-child{margin-right:0}}@media (min-width:1340px){.SiteMap-col-9{flex-grow:0;flex-shrink:0;max-width:calc(75% - 7.5px);min-width:calc(75% - 7.5px)}}.SplitStats-splitStats{margin:15px 0 0}@media (min-width:760px){.SplitStats-splitStats{display:none}}.SplitStats-splitStats .SplitStats-title{color:#002f6c;font-size:18px;font-weight:800;text-transform:uppercase}.SplitStats-splitStats .SplitStats-list,.SplitStats-splitStats .SplitStats-listSingle{grid-gap:0 15px;display:grid;grid-template-columns:1fr 1fr;list-style:none;margin:0;padding:0}.SplitStats-splitStats .SplitStats-flowColumn{grid-auto-flow:column;grid-template-rows:repeat(4,auto)}.SplitStats-splitStats .SplitStats-listSingle{grid-auto-flow:row;grid-template-columns:1fr;grid-template-rows:none}.SplitStats-splitStats .SplitStats-listSingle .SplitStats-item{border-bottom:0;font-size:16px;margin:0;padding:5px 2px}.SplitStats-splitStats .SplitStats-listSingle .SplitStats-item:nth-child(odd){background:#f8f8f8}.SplitStats-splitStats .SplitStats-listSingle .SplitStats-name{color:#171717;font-weight:400}.SplitStats-splitStats .SplitStats-item{align-items:center;border-bottom:1px solid #d9d9d9;box-sizing:border-box;display:flex;font-family:Proxima Nova,sans-serif;font-size:11px;font-weight:800;justify-content:space-between;margin:0 0 5px;padding:0 0 5px}.SplitStats-splitStats .SplitStats-name{color:#747474}.SplitStats-splitStats .SplitStats-price{color:#171717}.CharitableTrustHeader-headerWrap{display:flex;margin-bottom:20px;margin-top:20px}.CharitableTrustHeader-headerWrap .CharitableTrustHeader-tableHeader{color:#002f6c;font-size:24px;font-weight:900;letter-spacing:.25px;line-height:24px}@media (max-width:759px){.CharitableTrustHeader-headerWrap .CharitableTrustHeader-tableHeader{font-size:20px;line-height:20px}}.CharitableTrustHeader-smallSpan{background-color:#071d39;display:block;height:6px;width:110px}@media (max-width:360px){.CharitableTrustHeader-smallSpan{width:88px}}.CharitableTrustHeader-border{background-color:#747474;display:block;height:1px;width:100%}.TrustActivityTable-trustActivityTable{display:flex;flex-wrap:wrap;max-width:1000px}.TrustActivityTable-activityTable{max-height:170px;max-width:1000px;overflow-x:hidden;overflow-y:auto;transition:max-height .3s ease-out;width:100%}@media (max-width:320px){.TrustActivityTable-activityTable{overflow-x:auto}}.TrustActivityTable-activityTable.TrustActivityTable-noActivity{align-items:center;display:flex;overflow-y:hidden;padding-right:20px;width:50%}@media (max-width:550px){.TrustActivityTable-activityTable.TrustActivityTable-noActivity{width:100%}}.TrustActivityTable-activityTable::-webkit-scrollbar{height:3px;width:3px}.TrustActivityTable-activityTable::-webkit-scrollbar-track{background:#d9d9d9;border-radius:3px}.TrustActivityTable-activityTable::-webkit-scrollbar-thumb{background:#9e9e9e}.TrustActivityTable-activityRow{align-items:center;background-color:rgba(207,216,226,.25);border-left:3px solid #0496ff;border-radius:3px;display:flex;height:36px;margin-bottom:4px;margin-right:8px;min-width:310px;position:relative}.TrustActivityTable-activityRow:last-child{margin-bottom:0}.TrustActivityTable-activityLogo{align-items:center;display:flex;justify-content:center;min-width:48px;width:48px}@media (max-width:550px){.TrustActivityTable-activityLogo{min-width:40px;width:40px}}.TrustActivityTable-activityLogo span{background-color:#071d39;height:16px;width:16px}.TrustActivityTable-activityLogo .TrustActivityTable-tradeAlertIcon{mask-image:url(https://static-redesign.cnbcfm.com/dist/aad91182e297b128069c.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/aad91182e297b128069c.svg)}.TrustActivityTable-activityLogo .TrustActivityTable-earningsIcon{mask-image:url(https://static-redesign.cnbcfm.com/dist/3f94109d9f51677fee8d.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/3f94109d9f51677fee8d.svg)}.TrustActivityTable-activityLogo .TrustActivityTable-dividendIcon{mask-image:url(https://static-redesign.cnbcfm.com/dist/3635286e4568e237edcf.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/3635286e4568e237edcf.svg)}.TrustActivityTable-activityLogo .TrustActivityTable-highIcon{mask-image:url(https://static-redesign.cnbcfm.com/dist/4ecf1f23053f2b129fc4.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/4ecf1f23053f2b129fc4.svg)}.TrustActivityTable-activityLogo .TrustActivityTable-lowIcon{mask-image:url(https://static-redesign.cnbcfm.com/dist/68d05358c2f6a94bf78a.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/68d05358c2f6a94bf78a.svg)}.TrustActivityTable-activityType{color:#071d39;font-size:16px;font-weight:600;min-width:25%;padding:0 5px;white-space:nowrap}@media (max-width:760px){.TrustActivityTable-activityType{flex-grow:1;font-size:14px;margin-right:15px;min-width:25%}}@media (max-width:550px){.TrustActivityTable-activityType{margin-right:0;min-width:50%;padding:0}}.TrustActivityTable-quoteWrapper{max-width:20%}@media (max-width:760px){.TrustActivityTable-quoteWrapper{max-width:25%}}@media (max-width:759px){.TrustActivityTable-quoteWrapper{width:unset}}.TrustActivityTable-activityQuoteData{border:1px solid #9e9e9e;border-radius:8px;display:flex;font-size:12px;font-weight:800;justify-content:center;padding:8px;white-space:nowrap;width:130px}@media (max-width:550px){.TrustActivityTable-activityQuoteData{width:47px}}.TrustActivityTable-activityQuoteData:hover{background-color:#071d39}.TrustActivityTable-activityQuoteData:hover .TrustActivityTable-quoteGain{color:#34d07a}.TrustActivityTable-activityQuoteData:hover .TrustActivityTable-quoteDecline{color:#e64d55}.TrustActivityTable-activityQuoteData .TrustActivityTable-symbolDecline,.TrustActivityTable-activityQuoteData .TrustActivityTable-symbolGain{color:#071d39;margin-right:8px}.TrustActivityTable-activityQuoteData:hover .TrustActivityTable-symbolDecline,.TrustActivityTable-activityQuoteData:hover .TrustActivityTable-symbolGain{color:#fff}@media (max-width:550px){.TrustActivityTable-activityQuoteData:hover .TrustActivityTable-symbolDecline{color:#e64d55}.TrustActivityTable-activityQuoteData:hover .TrustActivityTable-symbolGain{color:#34d07a}.TrustActivityTable-activityQuoteData .TrustActivityTable-symbolGain{color:#008456;margin-right:0}.TrustActivityTable-activityQuoteData .TrustActivityTable-symbolDecline{color:#ce2b2b;margin-right:0}}.TrustActivityTable-activityQuoteData .TrustActivityTable-quoteGain{color:#008456}.TrustActivityTable-activityQuoteData .TrustActivityTable-quoteDecline{color:#ce2b2b}.TrustActivityTable-activityQuoteData .TrustActivityTable-quoteDecline span:nth-child(2),.TrustActivityTable-activityQuoteData .TrustActivityTable-quoteGain span:nth-child(2){margin-left:4px}@media (max-width:550px){.TrustActivityTable-activityQuoteData .TrustActivityTable-quoteDecline,.TrustActivityTable-activityQuoteData .TrustActivityTable-quoteGain{display:none}}.TrustActivityTable-descriptionWrap{max-width:calc(75% - 98px)}@media (min-width:550px){.TrustActivityTable-descriptionWrapWithQuote{width:calc(65% - 98px)}}@media (max-width:550px){.TrustActivityTable-descriptionWrapWithQuote{max-width:25%}}@media (min-width:1020px){.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityDescription{margin-left:64px!important}}@media (max-width:1020px){.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityDescription{margin-left:0;width:calc(65% - 98px)}}@media (max-width:760px){.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityDescription{display:none}}@media (min-width:760px) and (max-width:1019px){.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityDescription{text-align:center}}.TrustActivityTable-descriptionWrap{min-width:0}.TrustActivityTable-descriptionWrap,.TrustActivityTable-descriptionWrapWithQuote{display:flex;font-size:16px;justify-content:space-between;line-height:28px}.TrustActivityTable-descriptionWrap .TrustActivityTable-activityLink,.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityLink{font-family:Lyon Text;max-width:100%}.TrustActivityTable-descriptionWrap .TrustActivityTable-activityDescription,.TrustActivityTable-descriptionWrap .TrustActivityTable-activityLink a,.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityDescription,.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityLink a{display:block;flex:1 2 auto;max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.TrustActivityTable-descriptionWrap .TrustActivityTable-activityDescription,.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityDescription{color:#071d39;font-family:Proxima Nova}@media (max-width:760px){.TrustActivityTable-descriptionWrap .TrustActivityTable-activityDescription,.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityDescription{text-align:center}}.TrustActivityTable-descriptionWrap .TrustActivityTable-activityLink a,.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityLink a{color:#2077b6;position:relative}.TrustActivityTable-descriptionWrap .TrustActivityTable-activityDescription a,.TrustActivityTable-descriptionWrap .TrustActivityTable-activityLink a,.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityDescription a,.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityLink a{text-decoration:underline;-webkit-text-decoration-color:#2077b6;text-decoration-color:#2077b6}.TrustActivityTable-descriptionWrap .TrustActivityTable-activityDescription a:hover,.TrustActivityTable-descriptionWrap .TrustActivityTable-activityLink a:hover,.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityDescription a:hover,.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityLink a:hover{color:#fcb700;-webkit-text-decoration-color:#fcb700;text-decoration-color:#fcb700}.TrustActivityTable-descriptionWrap .TrustActivityTable-activityLink a:before,.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityLink a:before{bottom:5px;content:"";display:inline-block;left:0;position:absolute;width:99.5%}.TrustActivityTable-closeButton{align-items:center;display:flex;justify-content:flex-end;padding-left:20px;padding-right:14px;width:100%}@media (max-width:550px){.TrustActivityTable-closeButton{padding-left:0}}.TrustActivityTable-closeButton .TrustActivityTable-closeIcon{background-color:#071d39;height:16px;mask-image:url(https://static-redesign.cnbcfm.com/dist/ca2bb28892b3278d0e95.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/ca2bb28892b3278d0e95.svg);width:16px}@media (max-width:550px){.TrustActivityTable-closeButton .TrustActivityTable-closeIcon{margin-left:10px}}.TrustActivityTable-activityFooter{align-items:center;display:flex;flex:1;font-size:16px;justify-content:flex-end;line-height:28px;margin-top:16px;max-width:1000px;overflow-y:hidden;padding-right:1%;text-align:right;transition:max-height .3s ease-out;width:100%}.TrustActivityTable-activityFooter .TrustActivityTable-recentAlertMessage{color:#2077b6;font-family:Lyon Text;text-decoration:underline}.TrustActivityTable-noActivity+.TrustActivityTable-activityFooter{flex:unset;line-height:36px;margin-top:0;width:-webkit-max-content;width:-moz-max-content;width:max-content}.TrustActivityTable-noActivityMessage{color:#071d39;font-size:16px;font-weight:600;line-height:24px}.TrustActivityTable-hiddenRowLink{height:36px;position:absolute;right:50px;top:0;width:calc(100% - 50px);z-index:0}@media (min-width:760px){.TrustActivityTable-hiddenRowLink{display:none}}.TrustActivityTable-closeButtonWrap{flex-grow:1}@media (max-width:759px){.TrustActivityTable-closeButtonWrap{display:flex;justify-content:flex-end}}@media (max-width:760px){.TrustActivityTable-activityDescription,.TrustActivityTable-viewQuote{display:none!important}}.HistoricalTrustActivity-historicalTrustActivity{margin-bottom:50px}.HistoricalTrustActivity-filterButtonWrap{overflow-x:auto;white-space:nowrap}.HistoricalTrustActivity-filterButtonWrap::-webkit-scrollbar{height:0;width:0}.HistoricalTrustActivity-filterButtonWrap::-webkit-scrollbar-track{background:transparent}.HistoricalTrustActivity-filterButtonWrap .HistoricalTrustActivity-filterButton,.HistoricalTrustActivity-filterButtonWrap .HistoricalTrustActivity-filterButtonActive{border:1px solid #002f6c;border-radius:20px;height:28px;margin-left:12px}.HistoricalTrustActivity-filterButtonWrap .HistoricalTrustActivity-filterButton:first-child,.HistoricalTrustActivity-filterButtonWrap .HistoricalTrustActivity-filterButtonActive:first-child{margin-left:0}.HistoricalTrustActivity-filterButtonWrap .HistoricalTrustActivity-filterButton span,.HistoricalTrustActivity-filterButtonWrap .HistoricalTrustActivity-filterButtonActive span{color:#002f6c;display:block;font-size:12px;font-weight:600;letter-spacing:.79px;line-height:12px;margin:5px 10px;position:none;text-transform:uppercase}.HistoricalTrustActivity-filterButtonWrap .HistoricalTrustActivity-filterButton{background-color:#fff}.HistoricalTrustActivity-filterButtonWrap .HistoricalTrustActivity-filterButton span{color:#002f6c}.HistoricalTrustActivity-filterButtonWrap .HistoricalTrustActivity-filterButtonActive{background-color:#002f6c}.HistoricalTrustActivity-filterButtonWrap .HistoricalTrustActivity-filterButtonActive span{color:#fff}.HistoricalTrustActivity-date{color:#071d39;font-family:Proxima Nova;font-size:16px;font-weight:600;line-height:20px;margin-bottom:20px;margin-top:28px}.HistoricalTrustActivity-loadMoreWrap{display:flex;justify-content:flex-end;margin-top:20px;max-width:1000px;width:100%}.HistoricalTrustActivity-loadMoreWrap>a{margin-right:8px}.TodaysTrustActivity-trustActivity{margin-bottom:50px;margin-top:20px;max-width:100%;overflow:hidden}.TodaysTrustActivity-dropdownButton{align-items:center;color:#fff;display:flex}.TodaysTrustActivity-dropdownButton:active{-webkit-tap-highlight-color:transparent}.TodaysTrustActivity-dropdownButton .TodaysTrustActivity-dropdownArrow,.TodaysTrustActivity-dropdownButton .TodaysTrustActivity-dropdownUpArrow{background:#071d39;height:11px;margin-left:20px;width:19px}.TodaysTrustActivity-dropdownButton .TodaysTrustActivity-dropdownArrow,.TodaysTrustActivity-dropdownButton .TodaysTrustActivity-dropdownUpArrow{mask-image:url(https://static-redesign.cnbcfm.com/dist/b6891ac795b61eeb366b.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/b6891ac795b61eeb366b.svg)}.TodaysTrustActivity-dropdownButton .TodaysTrustActivity-dropdownUpArrow{transform:scaleY(-1)}.LivePill-watchLivePill{bottom:0;display:inline-block;padding-right:4px;position:relative;vertical-align:baseline;width:auto!important}.LatestNews-header{border-top:5px solid #002f6c}.LatestNews-header h2{color:#002f6c;font-size:24px;font-weight:900;letter-spacing:.5px;margin:12px 0 16px;text-transform:uppercase}@media (max-width:359px){.LatestNews-header h2{font-size:18px}}.LatestNews-item{border-bottom:1px solid #dedede;display:flex;font-family:Proxima Nova,Helvetica,Arial,sans-serif;margin:0 0 12px;padding:0 0 10px}.LatestNews-item:last-child{margin:0 0 30px}.LatestNews-item:before{background:#fcb700;border-radius:100%;content:"";display:block;flex-shrink:0;height:8px;margin:7px 12px 0 0;width:8px}.LatestNews-item.LatestNews-iconCleared:before{background:none}.LatestNews-container{display:flex;flex-direction:column;margin:0 12px 0 0}.LatestNews-headline{color:#171717;font-size:16px;font-weight:700;line-height:18px;margin:0 10px 0 0}.LatestNews-videoIcon{display:inline;margin:0 0 -3px 5px;width:16px}.LatestNews-wrapper{white-space:nowrap}@media (min-width:360px) and (max-width:759px){.LatestNews-wrapper{display:block}}.LatestNews-source,.LatestNews-timestamp{color:#747474;display:inline-flex;font-size:12px;font-weight:700;letter-spacing:.2px;text-transform:uppercase}.LatestNews-proPill{transform:translateY(2px)}.LatestNews-watchLivePill{margin-right:4px;padding:0!important;transform:translateY(2px)}.LatestNews-source:before{content:"-";display:block;margin:0 5px}@media (max-width:1019px){.LatestNews-isHomePage{background:#f7f7f7;padding:1px 16px 16px}}@media (min-width:1020px){.LatestNews-isHomePage{border-bottom:5px solid #002f6c}.LatestNews-isHomePage:after{background:linear-gradient(hsla(0,0%,100%,0),#fff);bottom:5px;content:"";display:block;height:100px;pointer-events:none;position:absolute;width:96%}}.LatestNews-isHomePage.LatestNews-hideGradient:after{display:none}.LatestNews-isHomePage .LatestNews-header{border-top:none}@media (min-width:1020px){.LatestNews-isHomePage .LatestNews-header{border-top:1px solid #747474}.LatestNews-isHomePage .LatestNews-header:before{border-top:6px solid #0089d0;content:"";display:block;margin:-6px 0 0;width:110px}.LatestNews-isHomePage .LatestNews-header h2{font-size:18px;margin:10px 0}}.LatestNews-isHomePage .LatestNews-headline{font-weight:600;order:2}.LatestNews-isHomePage .LatestNews-headline:hover{color:#171717;text-decoration:underline}@media (min-width:1020px){.LatestNews-isHomePage .LatestNews-list{max-height:238px;overflow-y:auto;position:relative}}@media (min-width:1340px){.LatestNews-isHomePage .LatestNews-list{max-height:352px}}.LatestNews-isHomePage .LatestNews-item:last-child{border-bottom:none;margin:0 0 5px;padding:0 0 5px}.LatestNews-isHomePage .LatestNews-headlineWrapper{order:2}.LatestNews-isHomePage .LatestNews-wrapper{display:block;order:1}.LatestNews-isHomePage .LatestNews-visitedIcon{margin:2px 0 0}.LatestNews-isHomePage .LatestNews-source,.LatestNews-isHomePage .LatestNews-timestamp{letter-spacing:1.2px}@media (min-width:1020px){.LatestNews-isHomePage .LatestNews-buttonContainer{display:none}div.LatestNews-isIntlHomepage .LatestNews-list{max-height:378px}}@media (min-width:1340px){div.LatestNews-isIntlHomepage .LatestNews-list{max-height:472px}}.LatestNews-button,.LatestNews-newsTabButton{align-items:center;background:#fff;border:1px solid #002f6c;color:#002f6c;display:flex;font-family:Proxima Nova,sans-serif;font-size:14px;font-weight:600;justify-content:center;letter-spacing:1.09px;margin:15px 0;padding:10px;text-transform:uppercase;transition:background .15s,color .15s;width:100%}.LatestNews-button:after,.LatestNews-newsTabButton:after{border-bottom:2px solid #002f6c;border-right:2px solid #002f6c;content:"";display:block;height:7px;margin:-5px 0 0 7px;transform:rotate(45deg);transition:border .15s;width:7px}.LatestNews-button:hover,.LatestNews-newsTabButton:hover{background:#002f6c;color:#fff}.LatestNews-button:hover:after,.LatestNews-newsTabButton:hover:after{border-bottom-color:#fff;border-right-color:#fff}@media (min-width:760px){.LatestNews-button,.LatestNews-newsTabButton{margin:15px auto;padding:10px 30px;width:auto}}@media (min-width:1020px){.LatestNews-button,.LatestNews-newsTabButton{display:none}}.LatestNews-newsTabButton{display:none;margin:0 auto 30px}@media (min-width:760px){.LatestNews-newsTabButton{display:flex}}.LatestNews-tradeAlertLabel{background-color:#fff;border:.5px solid #071d39;border-radius:4px;color:#071d39;display:inline-block;font-family:Proxima Nova,sans-serif;font-size:11px;font-style:normal;font-weight:600;line-height:10px;margin-right:4px;margin-top:2px;padding:2.5px 4px;vertical-align:top}.QuoteNewsWithFilters-filterButtonWrap{margin:16px 0;overflow-x:auto;white-space:nowrap}.QuoteNewsWithFilters-filterButtonWrap::-webkit-scrollbar{height:0;width:0}.QuoteNewsWithFilters-filterButtonWrap::-webkit-scrollbar-track{background:transparent}.QuoteNewsWithFilters-filterButtonWrap .QuoteNewsWithFilters-filterButton{background-color:#fff;border:1px solid #002f6c;border-radius:20px;height:28px;margin-left:12px}.QuoteNewsWithFilters-filterButtonWrap .QuoteNewsWithFilters-filterButton:first-child{margin-left:0}.QuoteNewsWithFilters-filterButtonWrap .QuoteNewsWithFilters-filterButton span{color:#002f6c;display:block;font-size:12px;font-weight:600;letter-spacing:.79px;line-height:12px;margin:5px 10px;pointer-events:none;position:none;text-transform:uppercase}.QuoteNewsWithFilters-filterButtonWrap .QuoteNewsWithFilters-filterButtonActive{background-color:#002f6c}.QuoteNewsWithFilters-filterButtonWrap .QuoteNewsWithFilters-filterButtonActive span{color:#fff}.QuotePageBuilder-container{margin:0 22px;max-width:100%;padding-top:15px}@media (min-width:360px){.QuotePageBuilder-container{margin-bottom:0}}@media (min-width:760px){.QuotePageBuilder-container{margin:0 auto;max-width:678px}}@media (min-width:1020px){.QuotePageBuilder-container{margin-bottom:15px;max-width:960px}}@media (min-width:1340px){.QuotePageBuilder-container{margin-bottom:25px;max-width:1290px}}@media (min-width:760px){.QuotePageBuilder-row{margin-bottom:20px;padding-top:30px}}@media (min-width:1020px){.QuotePageBuilder-row{display:flex}}.QuotePageBuilder-col{display:flex;flex-direction:column;flex-grow:0;flex-shrink:0;margin-right:30px;max-width:calc(100% - 30px);min-width:calc(100% - 30px)}@media (min-width:760px){.QuotePageBuilder-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.QuotePageBuilder-col{max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media screen and (min-width:1020px) and (-ms-high-contrast:none){.QuotePageBuilder-col{max-width:100%;min-width:100%}}@media (min-width:1340px){.QuotePageBuilder-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}.QuotePageBuilder-col:last-child{margin-right:0}@media (min-width:360px) and (max-width:759px){.QuotePageBuilder-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}}@media (min-width:760px) and (max-width:1019px){.QuotePageBuilder-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}}.QuotePageBuilder-mainContent{padding-top:15px}@media (min-width:1020px){.QuotePageBuilder-mainContent{padding-top:30px}}.QuotePageBuilder-mainContent .BrandBanner-container{margin-bottom:30px;z-index:99}@media (min-width:1340px){.QuotePageBuilder-mainContent .BrandBanner-container{margin-left:calc(-50vw - -538.5px)}}@media (min-width:760px){.QuotePageBuilder-mainContent .BrandBanner-container{margin-bottom:-100px;margin-top:50px}.QuotePageBuilder-mainContent{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px);padding-top:0}}@media (min-width:760px) and (min-width:760px){.QuotePageBuilder-mainContent{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.QuotePageBuilder-mainContent{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.QuotePageBuilder-mainContent{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.QuotePageBuilder-mainContent{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.QuotePageBuilder-mainContent{flex-grow:0;flex-shrink:0;margin-right:0;max-width:calc(66.66667% - 10px);min-width:calc(66.66667% - 10px)}.QuotePageBuilder-mainContent:last-child{margin-right:0}}@media (min-width:1340px){.QuotePageBuilder-mainContent{flex-grow:0;flex-shrink:0;max-width:calc(75% - 7.5px);min-width:calc(75% - 7.5px)}}@media (min-width:760px){.QuotePageBuilder-sidebar{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.QuotePageBuilder-sidebar{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.QuotePageBuilder-sidebar{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.QuotePageBuilder-sidebar{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.QuotePageBuilder-sidebar{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.QuotePageBuilder-sidebar{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(33.33333% - 20px);min-width:calc(33.33333% - 20px)}}@media (min-width:1340px){.QuotePageBuilder-sidebar{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(25% - 22.5px);min-width:calc(25% - 22.5px)}}.QuotePageBuilder-button,.QuotePageBuilder-buttonActive{align-items:center;background:#fff;border:1px solid #002f6c;color:#002f6c;display:flex;font-family:Proxima Nova,sans-serif;font-size:12px;font-weight:700;justify-content:center;letter-spacing:1.09px;margin:15px 0 30px;padding:15px 20px;text-transform:uppercase;width:100%}.QuotePageBuilder-button:after,.QuotePageBuilder-buttonActive:after{border-bottom:2px solid #002f6c;border-right:2px solid #002f6c;content:"";display:block;height:7px;margin:-4px 0 0 5px;transform:rotate(45deg);width:7px}.QuotePageBuilder-buttonActive:after{margin:5px 0 0 5px;transform:rotate(225deg)}.QuotePageBuilder-showOnDesktop{display:none}@media (min-width:760px){.QuotePageBuilder-showOnDesktop{display:initial}}.QuotePageBuilder-showOnMobile{display:initial;margin-bottom:10px}@media (min-width:760px){.QuotePageBuilder-showOnMobile{display:none}}.LiveTVScheduleHeader-header{color:#071d39;font-style:normal;position:relative;width:100%}.LiveTVScheduleHeader-header .LiveTVScheduleHeader-heading{font-size:40px;font-weight:800;line-height:42px;padding:36px 8px 0;text-align:center}@media (max-width:759px){.LiveTVScheduleHeader-header .LiveTVScheduleHeader-heading{font-size:36px}}@media (max-width:359px){.LiveTVScheduleHeader-header .LiveTVScheduleHeader-heading{font-size:24px}}.LiveTVScheduleHeader-header .LiveTVScheduleHeader-headerUnderline{background:#fcb700;height:7px;margin-bottom:40px;width:100%}.LiveTVDatePicker-container{margin:0 auto 38px;max-width:1145px;width:90%}.LiveTVDatePicker-modal{bottom:0;height:100%;left:0;position:absolute;right:0;top:0;width:100%;z-index:99}.LiveTVDatePicker-tveDropdown{background:#aeaeae;border-radius:3px;color:#171717;display:block;height:34px;padding:1px;position:relative;width:272px}.LiveTVDatePicker-head{background:linear-gradient(#e7e7e7,#fff);background-image:linear-gradient(#f6f6f6,#fafafa);border-radius:3px;cursor:pointer;text-shadow:0 1px 0 #fff;width:100%}.LiveTVDatePicker-arrowWrap,.LiveTVDatePicker-head{border-top:1px solid #fff;display:inline-block;height:32px}.LiveTVDatePicker-arrowWrap{background-image:-o-linear-gradient(top,#dbdbdb 0,#fcfcfc 100%);border-left:1px solid #fff;border-radius:0 3px 3px 0;box-shadow:-1px 0 0 0 #c9c9c9;float:right;position:absolute;right:1px;top:1px;width:31px}.LiveTVDatePicker-arrow{background-image:url(https://static-redesign.cnbcfm.com/dist/3f3502c997d472bd03be.png);background-repeat:no-repeat;border:none;box-shadow:none;height:25px;left:-10%;margin:-15px 0 0;position:absolute;top:50%;width:29px}.LiveTVDatePicker-openArrow{border-color:#171717 transparent transparent;border-style:solid;border-width:7px 7px 0;box-shadow:0 -1px 0 0 #171717;height:0;margin-left:10px;margin-top:-2px;width:0}.LiveTVDatePicker-close{background:none;background-image:none;border-color:transparent;border-radius:0;box-shadow:none}.LiveTVDatePicker-today{font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:24px;font-style:normal;font-weight:800;line-height:28px;text-transform:uppercase}.LiveTVDatePicker-datesContainer{float:left}.LiveTVDatePicker-dates{font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:24px;font-style:normal;font-weight:500;line-height:28px;margin-left:6px}.LiveTVDatePicker-selectDateContainer{text-align:left}.LiveTVDatePicker-selectDate{font-size:18px;font-style:normal;font-weight:500;line-height:28px;margin-left:6px}.LiveTVDatePicker-menu{background:#fff;border:1px solid #c3c3c3;border-radius:3px;height:200px;overflow:scroll;padding:6px 0 6px 7px;position:absolute;width:272px;z-index:100}.LiveTVDatePicker-menu button{border-radius:3px;display:block;font-family:Proxima Nova Semi Bold,Helvetica,Arial,sans-serif;font-size:16px;line-height:23px;margin-right:6px;padding:5px 12px 4px 8px;position:relative;text-align:initial;text-overflow:ellipsis;white-space:nowrap;width:100%}.LiveTVDatePicker-menu button:hover{color:#fff}.LiveTVDatePicker-menu li:hover{background-color:#2077b6;border-radius:3px;cursor:pointer;width:254px}.LiveTVDatePicker-filterDayWeek{display:inline-block;text-align:left;width:87px}.LiveTVDatePicker-filterMonth{display:inline-block;width:40px}.LiveTVDatePicker-hide{display:none}.LiveTVCurrentShow-container{border:4px solid #002f6c;color:#002f6c;margin:0 auto 41px;max-width:1145px;padding:8px 16px;position:relative;width:90%}.LiveTVCurrentShow-liveScheduleContainer{align-items:center;display:flex;justify-content:space-between;margin:0 22px}@media (max-width:1019px){.LiveTVCurrentShow-liveScheduleContainer{display:block}}.LiveTVCurrentShow-link,.LiveTVCurrentShow-link:hover{color:#002f6c}.LiveTVCurrentShow-onNow{align-items:center;background:#fff;display:flex;font-size:14px;font-style:normal;font-weight:700;justify-content:center;line-height:20px;position:absolute;text-align:center;top:-11px;width:114px}.LiveTVCurrentShow-onNow:before{-webkit-animation:LiveTVCurrentShow-pulse 2s infinite;animation:LiveTVCurrentShow-pulse 2s infinite;background-color:#ff5053;border-radius:100%;box-shadow:0 0 0 0 #ce2b2b;content:"";display:block;height:6px;margin:6px 8px;transform:scale(1);width:6px}@-webkit-keyframes LiveTVCurrentShow-pulse{0%{box-shadow:0 0 0 1px #ce2b2b;opacity:1;transform:scale(.95)}70%{box-shadow:0 0 0 2px #ce2b2b;opacity:.9;transform:scale(1)}to{box-shadow:0 0 0 1px #ce2b2b;opacity:1;transform:scale(.95)}}@keyframes LiveTVCurrentShow-pulse{0%{box-shadow:0 0 0 1px #ce2b2b;opacity:1;transform:scale(.95)}70%{box-shadow:0 0 0 2px #ce2b2b;opacity:.9;transform:scale(1)}to{box-shadow:0 0 0 1px #ce2b2b;opacity:1;transform:scale(.95)}}.LiveTVCurrentShow-currShow{font-size:28px;font-style:normal;font-weight:400;line-height:18px;padding:16px 0}@media (max-width:759px){.LiveTVCurrentShow-currShow{font-size:24px}}@media (max-width:479px){.LiveTVCurrentShow-currShow{font-size:18px}}.LiveTVCurrentShow-currShow .LiveTVCurrentShow-onNowTitle{font-weight:800}.LiveTVCurrentShow-currShow .LiveTVCurrentShow-separator{font-weight:700}.LiveTVCurrentShow-nextShow{font-size:20px;font-style:normal;font-weight:400;line-height:14px;padding:16px 0}@media (max-width:479px){.LiveTVCurrentShow-nextShow{display:none}}@media (max-width:759px){.LiveTVCurrentShow-nextShow{font-size:16px}}.LiveTVCurrentShow-nextShow .LiveTVCurrentShow-nextTitle{font-weight:800}.LiveTVSchedule-container{margin:auto;max-width:1145px;width:100%}.Loading-wrapper{background:none;height:100%}.Loading-nightModeWrapper{background:#000;height:100%}.Loading-loadingImage{height:295px;max-width:900px;width:100%}.ErrorChartBoundary-errorWrapper{background:grey;border:1px solid silver;color:#fff;height:352px}.ErrorChartBoundary-errorWrapper .ErrorChartBoundary-msg{position:relative;text-align:center;top:35%}.ErrorChartBoundary-errorWrapper .ErrorChartBoundary-msg span{background:#fff;border-radius:3px;color:#000;font-family:inherit;font-size:12px;line-height:inherit;margin:0;padding:2px}.PhoenixChartWrapper-rendererApp,.PhoenixChartWrapper-rendererWeb{min-height:380px;position:relative}.PhoenixChartWrapper-rendererWeb{margin-top:20px}.PhoenixChartWrapper-rendererApp{height:100%;margin:0}.PhoenixChartWrapper-loadingWrapper{background:#fff;bottom:0;left:0;position:absolute;right:0;top:0;z-index:10}.MobileAppChart-container{max-width:100%}@-webkit-keyframes WatchlistNotification-showAndFadeOut{0%{opacity:0;transform:translateY(5px)}5%{opacity:1;transform:translateY(0)}80%{opacity:1}to{opacity:0}}@keyframes WatchlistNotification-showAndFadeOut{0%{opacity:0;transform:translateY(5px)}5%{opacity:1;transform:translateY(0)}80%{opacity:1}to{opacity:0}}.WatchlistNotification-notificationContainer{display:flex;justify-content:center;position:absolute;width:100%}.WatchlistNotification-notificationContainer .WatchlistNotification-notification{-webkit-animation:WatchlistNotification-showAndFadeOut 3s linear;animation:WatchlistNotification-showAndFadeOut 3s linear;font-family:Proxima Nova,Helvetica,Arial,sans-serif;opacity:0;text-align:center;z-index:4000}.WatchlistSortableColumnHeader-defaultSort{fill:#bababa}.WatchlistSortableColumnHeader-sortActive{color:#005594!important}.WatchlistSortableColumnHeader-sortActive .WatchlistSortableColumnHeader-asc,.WatchlistSortableColumnHeader-sortActive .WatchlistSortableColumnHeader-desc{fill:#005594}button.WatchlistSortableColumnHeader-sortButton{align-items:center;border-right:1px solid #ccc;display:flex;float:right;margin-right:4px;padding-right:4px}button.WatchlistSortableColumnHeader-sortButton:last-child{border:0;margin:0;padding:0}.WatchlistSortableColumnHeader-sortingIcons{display:flex;flex-direction:column;margin-left:8px}.SymbolTable-symbolTable{border-bottom:1px solid #d9d9d9;font-family:Proxima Nova,Helvetica,Arial,sans-serif;position:relative;table-layout:fixed;width:100%}.SymbolTable-symbolTable.SymbolTable-zeroQuotes{border-bottom:none}.SymbolTable-symbolTable:before{bottom:0;content:"";display:block;height:40px;pointer-events:none;position:absolute;width:100%;z-index:1}.SymbolTable-symbolTable.SymbolTable-fade:before{background:linear-gradient(180deg,hsla(0,0%,100%,0),25%,#fff)}.SymbolTable-symbolTable thead{display:table;width:100%}.SymbolTable-symbolTable thead th{color:#747474;font-size:12px;font-style:normal;font-weight:700;line-height:15px;padding-bottom:5px}.SymbolTable-symbolTable td,.SymbolTable-symbolTable th{font-size:14px;padding:unset;padding-right:10px;text-align:end;width:25%}@media (max-width:1339px){.SymbolTable-symbolTable td,.SymbolTable-symbolTable th{font-size:12px}}.SymbolTable-symbolTable tr{box-sizing:border-box;display:table;width:100%}.SymbolTable-symbolTable tbody{display:block;max-height:240px;overflow-y:scroll;width:100%}.SymbolTable-symbolTable tbody tr{width:100%}.SymbolTable-symbolTable tbody tr:nth-child(odd){background:#f1f1f1}.SymbolTable-symbolTable tbody td{font-size:14px;font-style:normal;font-weight:600;height:30px;padding:4px 10px 4px 0}.SymbolTable-symbolTable tbody td.SymbolTable-symbol{overflow:hidden;padding-left:12px;text-align:start;text-overflow:ellipsis;white-space:nowrap}.SymbolTable-symbolTable tbody td a:hover{color:#005594;text-decoration:none}th{color:#9e9e9e}.SymbolTable-symbolLink{color:#000}.SymbolTable-positive{color:#00a857}.SymbolTable-negative{color:#ce2b2b}.SymbolTable-extendedHours{align-items:center;color:#e8802a;justify-content:flex-end;position:relative;text-align:end}.SymbolTable-extendedHours>svg{position:absolute;right:-3px;top:10px}.WatchlistSymbolAdder-container .WatchlistSymbolAdder-dropdownContent{left:0;right:auto}.WatchlistSymbolAdder-form{position:relative;white-space:nowrap;z-index:99}.WatchlistSymbolAdder-input{font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-weight:700;letter-spacing:.07em;padding:3px 3px 3px 6px;width:auto}@media (max-width:759px){.WatchlistSymbolAdder-input{width:100px}}input::-moz-placeholder{color:#ccc}input::placeholder{color:#ccc}.WatchlistSymbolAdder-addButton{background-color:#005594;border-radius:4px;color:#fff;font-size:12px;font-weight:700;letter-spacing:.07em;padding:3px 5px}.WatchlistSymbolAdder-addButton:hover{background-color:#002f6c;color:#fff;cursor:pointer;font-size:12px;font-weight:700;letter-spacing:.07em}.WatchlistSymbolAdder-dropdownContent{background-color:#fff;border-radius:4px;color:#333;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-weight:500;position:absolute;text-align:left;white-space:normal;width:392px;z-index:5000}@media (max-width:759px){.WatchlistSymbolAdder-dropdownContent{padding:10px;width:270px}}.WatchlistSymbolAdder-dropdownContent table{border-collapse:collapse;table-layout:fixed;white-space:nowrap;width:100%}.WatchlistSymbolAdder-dropdownContent table td{font-size:16px;padding:6px 6px 6px 0}.WatchlistSymbolAdder-dropdownItem{border-bottom:1px solid #ccd6d8;color:#333;display:table-row;line-height:20px;padding:2px 0;text-decoration:none}.WatchlistSymbolAdder-dropdownItem:last-of-type{border-bottom:0}.WatchlistSymbolAdder-dropdownItem.WatchlistSymbolAdder-active,.WatchlistSymbolAdder-dropdownItem:hover{background-color:#d5dee2;cursor:pointer}.WatchlistSymbolAdder-dropdownItem .WatchlistSymbolAdder-symbolName{overflow:hidden;text-overflow:ellipsis;width:90px}.WatchlistSymbolAdder-dropdownItem .WatchlistSymbolAdder-companyName{overflow:hidden;text-overflow:ellipsis;width:auto}.WatchlistSymbolAdder-dropdownItem .WatchlistSymbolAdder-countryCode{padding-right:0;width:25px}.WatchlistSymbolAdder-dropdownContent.WatchlistSymbolAdder-hasHighlightedSymbol .WatchlistSymbolAdder-dropdownItem:hover{background-color:none}.WatchlistSymbolAdder-ghostDropdownCloser{bottom:0;left:0;position:fixed;right:0;top:0;z-index:98}.WatchlistSymbolAdder-watchlistPage{background:#fff;border:1px solid #9e9e9e;border-bottom-left-radius:6px;border-bottom-right-radius:6px;border-top-right-radius:6px;display:flex;padding:10px;position:absolute;top:35px;z-index:98}.WatchlistSymbolAdder-watchlistPage .WatchlistSymbolAdder-searchOptions{border-bottom:1px solid #bababa;display:flex;justify-content:space-between;padding-bottom:8px}.WatchlistSymbolAdder-watchlistPage .WatchlistSymbolAdder-form{width:307px}.WatchlistSymbolAdder-watchlistPage .WatchlistSymbolAdder-form .WatchlistSymbolAdder-input{border:none;font-size:14px;font-weight:600;line-height:20px;padding:unset;text-transform:unset;width:85%}.WatchlistSymbolAdder-watchlistPage .WatchlistSymbolAdder-form .WatchlistSymbolAdder-dropdownContent{border:unset;box-shadow:unset;display:flex;padding:unset;padding-top:8px;position:inherit;width:auto;z-index:inherit}@media (max-width:759px){.WatchlistSymbolAdder-watchlistPage .WatchlistSymbolAdder-form{width:240px}}.WatchlistSymbolAdder-embedded .WatchlistSymbolAdder-form{width:100%}.WatchlistSymbolAdder-embedded .WatchlistSymbolAdder-form .WatchlistSymbolAdder-input{border:unset;border-bottom:1px solid #747474;border-radius:unset;color:#747474;font-size:12px;font-weight:600;letter-spacing:.15px;line-height:15px;margin-bottom:5px;text-transform:unset;width:100%}.WatchlistSymbolAdder-embedded .WatchlistSymbolAdder-form .WatchlistSymbolAdder-dropdownContent{border:1px solid #ccd6d8;box-shadow:0 1px 10px #d9d9d9;padding:8px;text-align:center;width:100%}.WatchlistSymbolAdder-embedded .WatchlistSymbolAdder-form .WatchlistSymbolAdder-dropdownContent table tr{line-height:16px}.WatchlistSymbolAdder-embedded .WatchlistSymbolAdder-form .WatchlistSymbolAdder-dropdownContent table tr td{font-size:14px}.EmbeddedWatchlist-container{display:flex;flex-direction:column;font-weight:800;height:100%;position:relative}.EmbeddedWatchlist-container,.EmbeddedWatchlist-container .EmbeddedWatchlist-notify{font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal}.EmbeddedWatchlist-container .EmbeddedWatchlist-notify{color:#747474;font-weight:500;line-height:15px;padding:16px 0;text-align:center}.EmbeddedWatchlist-dropdownAnchor{position:relative}.icon-offsite-arrow{color:#9e9e9e;font-size:10px;font-weight:600}.EmbeddedWatchlist-dropdownButton{align-items:center;display:flex;justify-content:left;margin-bottom:18px;text-align:left;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;z-index:2}.EmbeddedWatchlist-dropdownButton:hover{cursor:pointer}.EmbeddedWatchlist-dropdownButton:hover h2{color:#071d39}.EmbeddedWatchlist-dropdownButton div{align-items:center;border-bottom:1px solid #002f6c;display:flex;height:33px;max-width:200px;min-width:118px}.EmbeddedWatchlist-dropdownButton svg{margin-left:5px;margin-right:5px}.EmbeddedWatchlist-watchlistName{color:#002f6c;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:18px;font-style:normal;font-weight:600;letter-spacing:.33px;line-height:20px;margin:unset;margin-left:5px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:100%}.EmbeddedWatchlist-chevron{border-radius:1px;border-style:solid;border-width:2px 2px 0 0;color:#005594;height:10px;margin-left:10px;margin-right:7px;position:relative;transform:rotate(135deg);width:12px}.EmbeddedWatchlist-dropdown{background:#fff;box-shadow:1px 4px 16px rgba(0,0,0,.16);padding:0 10px;position:absolute;top:-18px;width:200px;z-index:2}.EmbeddedWatchlist-watchlistDropdownLink,.EmbeddedWatchlist-watchlistTools{border-bottom:1px solid #ccc;color:#424242;cursor:pointer;display:block;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-style:normal;font-weight:600;letter-spacing:.05em;line-height:15px;max-height:25px;overflow:hidden;padding-bottom:5px;padding-top:5px;text-align:left;text-overflow:ellipsis;white-space:nowrap;width:100%;word-break:break-word}.EmbeddedWatchlist-watchlistDropdownLink.EmbeddedWatchlist-activeWatchlist,.EmbeddedWatchlist-watchlistTools.EmbeddedWatchlist-activeWatchlist{color:#336aa0}.EmbeddedWatchlist-addIcon{fill:#005594}.EmbeddedWatchlist-watchlistDropdownLink:focus,.EmbeddedWatchlist-watchlistDropdownLink:hover{color:#002f6c}.EmbeddedWatchlist-selectedWatchlist{color:#005594}.EmbeddedWatchlist-watchlistTools a:last-of-type{border-bottom:0}.EmbeddedWatchlist-watchlistTools a:last-of-type:focus,.EmbeddedWatchlist-watchlistTools a:last-of-type:hover{color:#002f6c;text-decoration:none}.EmbeddedWatchlist-watchlistTools{align-items:center;border:none;display:flex;justify-content:space-between}.EmbeddedWatchlist-watchlistTools:focus .EmbeddedWatchlist-watchlistDropdownLink{color:#005594;text-decoration:none}.EmbeddedWatchlist-watchlistTools a{color:#005594}.EmbeddedWatchlist-watchlistTools .EmbeddedWatchlist-watchlistDropdownLink{padding:unset}.EmbeddedWatchlist-watchlistTools .EmbeddedWatchlist-watchlistDropdownLink:hover{color:#171717}.EmbeddedWatchlist-ghostDropdownCloser{bottom:0;left:0;position:fixed;right:0;top:0;z-index:1}.EmbeddedWatchlist-addWatchlistContainer,.EmbeddedWatchlist-errorContainer{align-items:center;background:#f1f1f1;display:flex;flex-direction:column;height:240px;justify-content:center}@media (max-width:1339px){.EmbeddedWatchlist-addWatchlistContainer,.EmbeddedWatchlist-errorContainer{height:269px}}.EmbeddedWatchlist-addWatchlistContainer>p,.EmbeddedWatchlist-errorContainer>p{color:#171717;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:600;letter-spacing:.05em;line-height:17px;margin-bottom:24px;margin-top:0;max-width:197px;text-align:center}.EmbeddedWatchlist-addWatchlistContainer>a,.EmbeddedWatchlist-errorContainer>a{align-items:center;background:#00a857;border-radius:3px;color:#fff;display:flex;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:700;justify-content:center;letter-spacing:1.09091px;line-height:16px;min-height:40px;min-width:191px;text-transform:uppercase}.EmbeddedWatchlist-addWatchlistContainer>a:hover,.EmbeddedWatchlist-errorContainer>a:hover{background-color:#008456;color:#fff;text-decoration:none}.EmbeddedWatchlist-errorContainer>p{margin-bottom:unset;margin-top:unset}.EmbeddedWatchlist-linkContainer{display:flex;font-size:12px;font-style:normal;font-weight:500;justify-content:flex-end;line-height:15px;margin-right:10px;margin-top:13px}.EmbeddedWatchlist-linkContainer a{align-items:center;color:#005594;display:flex}.EmbeddedWatchlist-linkContainer a>div{margin-right:3px;text-decoration:underline}.EmbeddedWatchlist-linkContainer a:hover,.EmbeddedWatchlist-linkContainer a:hover .icon-offsite-arrow{color:#002f6c}.EmbeddedWatchlist-linkContainer .icon-offsite-arrow{color:#336aa0;font-size:9px;font-weight:800}.EmbeddedWatchlist-tableOptions{align-items:baseline;display:flex;flex-direction:row;justify-content:flex-end;margin-bottom:12px}.EmbeddedWatchlist-tableOptions a,.EmbeddedWatchlist-tableOptions button{color:#005594;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-style:normal;font-weight:500;line-height:15px;-webkit-text-decoration-line:underline;text-decoration-line:underline}.EmbeddedWatchlist-tableOptions a:hover,.EmbeddedWatchlist-tableOptions button:hover{color:#002f6c}.EmbeddedWatchlist-tableOptions a:hover svg,.EmbeddedWatchlist-tableOptions button:hover svg{fill:#002f6c}.EmbeddedWatchlist-tableOptions a svg,.EmbeddedWatchlist-tableOptions button svg{margin-left:5px}.EmbeddedWatchlist-tableOptions a:first-child{margin-right:10px}.EmbeddedWatchlist-notificationContainer{right:0;top:86px}.EmbeddedWatchlist-notificationContainer .EmbeddedWatchlist-notification{background-color:#2077b6;border-radius:3px;box-shadow:0 1px 3px 1px rgba(0,0,0,.08);color:#fff;font-weight:700;line-height:16px;padding:10px;width:224px}.EmbeddedWatchlist-notificationContainer .EmbeddedWatchlist-notification.EmbeddedWatchlist-error{background-color:#ce2b2b;width:204px}.ExclusiveContentBucket-exclusiveContentBucket{font-family:Proxima Nova,Helvetica,Arial,sans-serif;margin-bottom:40px;margin-top:40px}@media (min-width:760px){.ExclusiveContentBucket-exclusiveContentBucket{margin-left:-29.16667%;max-width:677px}}@media (min-width:760px) and (min-width:760px){.ExclusiveContentBucket-exclusiveContentBucket{margin-left:-29.16667%}}@media (min-width:760px) and (min-width:1020px){.ExclusiveContentBucket-exclusiveContentBucket{margin-left:-29.16667%}}@media (min-width:760px) and (min-width:1340px){.ExclusiveContentBucket-exclusiveContentBucket{margin-left:-29.16667%}}@media (min-width:1020px){.ExclusiveContentBucket-exclusiveContentBucket{margin-left:-20.83333%;width:630px}}@media (min-width:1020px) and (min-width:760px){.ExclusiveContentBucket-exclusiveContentBucket{margin-left:-20.83333%}}@media (min-width:1020px) and (min-width:1020px){.ExclusiveContentBucket-exclusiveContentBucket{margin-left:-20.83333%}}@media (min-width:1020px) and (min-width:1340px){.ExclusiveContentBucket-exclusiveContentBucket{margin-left:-20.83333%}}@media (min-width:1340px){.ExclusiveContentBucket-exclusiveContentBucket{margin-left:-16.66667%}}@media (min-width:1340px) and (min-width:760px){.ExclusiveContentBucket-exclusiveContentBucket{margin-left:-16.66667%}}@media (min-width:1340px) and (min-width:1020px){.ExclusiveContentBucket-exclusiveContentBucket{margin-left:-16.66667%}}@media (min-width:1340px) and (min-width:1340px){.ExclusiveContentBucket-exclusiveContentBucket{margin-left:-16.66667%}}.ExclusiveContentBucket-exclusiveContentBucket .ExclusiveContentBucket-exclusiveContentHeading{color:#002f6c;font-size:20px;font-weight:900;letter-spacing:.25px;line-height:24px;text-transform:uppercase}.ExclusiveContentBucket-bucketImageContainer{display:flex}.ExclusiveContentBucket-proPill{height:30px}.ExclusiveContentBucket-proPillContainer{position:relative;right:40px}@media (max-width:759px){.ExclusiveContentBucket-proPillContainer{right:40px}}.ExclusiveContentBucket-investingClubPill{height:25px}.ExclusiveContentBucket-investingClubPillContainer{position:relative;right:45px}@media (max-width:759px){.ExclusiveContentBucket-investingClubPillContainer{right:40px}}.ExclusiveContentBucket-smallSpan{background-color:#002f6c;display:block;height:6px;width:88px}.ExclusiveContentBucket-border{background-color:#747474;display:block;height:1px;width:100%}.ExclusiveContentBucket-contentContainer{display:flex;flex-direction:column;justify-content:space-between;overflow-x:scroll}@media (min-width:760px){.ExclusiveContentBucket-contentContainer{overflow-x:unset}}.ExclusiveContentBucket-bucketItem{border-bottom:1px dashed #9e9e9e;display:flex;padding-bottom:10px;padding-top:20px}.ExclusiveContentBucket-bucketItem .ExclusiveContentBucket-title{font-size:18px;font-weight:600;line-height:22px;margin-bottom:16px}.ExclusiveContentBucket-bucketItem .ExclusiveContentBucket-title a{color:#171717;text-decoration:none!important}@media (max-width:759px){.ExclusiveContentBucket-bucketItem .ExclusiveContentBucket-title{font-size:16px;font-weight:500;line-height:20px;margin-bottom:0}}.ExclusiveContentBucket-bucketItem .ExclusiveContentBucket-publishTime{color:#747474;display:inline;font-size:12px;font-weight:600;letter-spacing:1.5px;line-height:16px;margin-top:9px;text-transform:uppercase}.ExclusiveContentBucket-bucketItem .ExclusiveContentBucket-textContainer{display:flex;flex-direction:column;justify-content:space-between;margin-left:-20px}@media (max-width:759px){.ExclusiveContentBucket-bucketItem .ExclusiveContentBucket-textContainer{margin-left:-25px}}.ExclusiveContentBucket-bucketItem .ExclusiveContentBucket-bylineContainer{display:flex;margin-top:10px}@media (max-width:759px){.ExclusiveContentBucket-bucketItem .ExclusiveContentBucket-bylineContainer{margin-top:0}}.ExclusiveContentBucket-bucketItem .ExclusiveContentBucket-icTextContainer{margin-left:-25px}.ExclusiveContentBucket-bucketItem .ExclusiveContentBucket-author{display:none;font-family:Lyon,Helvetica,Arial,sans-serif;font-weight:600;letter-spacing:.5px;line-height:16px;margin-right:10px}@media (min-width:760px){.ExclusiveContentBucket-bucketItem .ExclusiveContentBucket-author{display:inline}}.ExclusiveContentBucket-bucketItem .ExclusiveContentBucket-author a{color:#002f6c;font-size:12px;margin-right:8px;text-decoration:none}.ExclusiveContentBucket-bucketImage{height:95px;-o-object-fit:cover;object-fit:cover;width:190px}@media (max-width:759px){.ExclusiveContentBucket-bucketImage{height:75px;width:100px}}.ExclusiveContentBucket-firstElem,.ExclusiveContentBucket-thirdElem{border-bottom-right-radius:15px;border-top-left-radius:15px}.ExclusiveContentBucket-secondElem{border-bottom-left-radius:15px;border-bottom-right-radius:15px}@media (prefers-color-scheme:dark){.webview .ExclusiveContentBucket-exclusiveContentBucket .ExclusiveContentBucket-exclusiveContentHeading{color:#dce0e4}.webview .ExclusiveContentBucket-smallSpan{background-color:#dce0e4}.webview .ExclusiveContentBucket-border{background-color:#f8f8f8}.webview .ExclusiveContentBucket-bucketItem .ExclusiveContentBucket-textContainer .ExclusiveContentBucket-title a{color:#dce0e4}.webview .ExclusiveContentBucket-bucketItem .ExclusiveContentBucket-textContainer .ExclusiveContentBucket-author a{font-size:12px}}.PlayerLoadingIndicator-loadingContainer{margin-bottom:30px;padding-bottom:56.25%;position:relative;text-align:center}.PlayerLoadingIndicator-loadingOverlay{align-items:center;background-color:#000;display:flex;height:100%;justify-content:center;left:0;position:absolute;top:0;width:100%}.LiveStreamPlayer-container.LiveStreamPlayer-isNotLoaded{display:block;max-width:100%;padding-bottom:57%}.LiveStreamPlayer-languageContainer{align-items:center;display:flex;font-size:14px;margin:13px 0}.LiveStreamPlayer-bold,.LiveStreamPlayer-toggle{margin-right:12px}.LiveStreamPlayer-bold{font-weight:800}.LiveStreamPlayer-toggle{margin-right:12px}.LiveStreamPlayer-toggle:hover{cursor:pointer}.jw-settings-audioTracks{display:none!important}.Timer-progress{stroke:#fcb700;left:50%;position:absolute;top:50%;transform:translate(-50%,-50%) rotate(-90deg)}.Timer-progress circle{stroke-dasharray:302;stroke-dashoffset:302;-webkit-animation:Timer-dash 5s linear;animation:Timer-dash 5s linear}.Timer-sticky .Timer-progress circle{stroke-dasharray:151;stroke-dashoffset:151;-webkit-animation:Timer-sticky-dash 5s linear;animation:Timer-sticky-dash 5s linear}@-webkit-keyframes Timer-dash{0%{stroke-dashoffset:302}to{stroke-dashoffset:0}}@keyframes Timer-dash{0%{stroke-dashoffset:302}to{stroke-dashoffset:0}}@-webkit-keyframes Timer-sticky-dash{0%{stroke-dashoffset:151}to{stroke-dashoffset:0}}@keyframes Timer-sticky-dash{0%{stroke-dashoffset:151}to{stroke-dashoffset:0}}.Timer-buttonWrapper{align-items:center;border:1px solid rgba(207,216,226,.4);color:#fff;display:flex;height:40px;justify-content:center;left:50%;position:absolute;top:50%;transform:translate(-50%,-50%);width:40px}.Timer-buttonWrapper span{display:flex}.Timer-buttonWrapperEnded{border-radius:50%;box-shadow:inset 0 0 2px 0 #cfd8e2,0 0 2px 0 #cfd8e2;font-size:24px;height:66px;width:66px}@media (min-width:360px){.Timer-buttonWrapperEnded{font-size:36px;height:96px;width:96px}}.Timer-sticky .Timer-buttonWrapperEnded{font-size:18px;height:48px;width:48px}.Timer-buttonWrapperEnded:hover{color:#fcb700}.Timer-buttonWrapperEnded .icon-buffett-video{margin-left:5px}.Recommend-sticky .Recommend-buttonWrapperEnded .icon-buffett-video{margin-left:3px}.ScaledTimer-cancel{color:#fff;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:600;left:50%;letter-spacing:.06em;position:absolute;text-transform:uppercase;top:calc(50% + 60px);transform:translateX(-50%)}.ScaledTimer-cancel:hover{color:#fcb700}.Recommend-endCardWrapper{background-color:rgba(0,47,108,.8);background-image:url(https://static-redesign.cnbcfm.com/dist/8e3639eed7df32fad761.jpg);background-size:cover;cursor:pointer;height:0;padding-bottom:56.25%;position:relative;width:100%}.Recommend-endCardWrapper .Recommend-title{color:#fff;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:18px;font-weight:600;line-height:1.1em}.Recommend-replay .Recommend-endCardWrapper .Recommend-title{font-size:16px}@media (min-width:1020px){.Recommend-endCardWrapper .Recommend-title{font-size:18px;letter-spacing:.17px}}@media (min-width:1340px){.Recommend-endCardWrapper .Recommend-title{font-size:24px}}.Recommend-endCardWrapper:before{background:linear-gradient(transparent,#002f6c);bottom:0;content:"";height:100%;left:0;position:absolute;width:100%}@media (min-width:760px){.Buffett-wrapper{max-width:100%}}.Recommend-buttons{display:flex;justify-content:space-between;left:15px;position:absolute;text-align:right;top:15px;width:calc(100% - 30px)}.Recommend-buttons span{color:#fff;font-size:15px}.Recommend-buttons span:hover{color:#fcb700}.Recommend-content{bottom:15px;left:15px;padding-right:55px;position:absolute}.Recommend-eyebrow,.Recommend-eyebrow.Recommend-compact,.Recommend-mobile .Recommend-compact{color:#fcb700;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-weight:600;letter-spacing:2px;line-height:15px;margin-bottom:3px;text-transform:uppercase}.Recommend-replay
.Recommend-eyebrow.Recommend-compact,.Recommend-replay
.Recommend-mobile .Recommend-compact,.Recommend-replay .Recommend-eyebrow{font-size:10px}.Recommend-mobile .Recommend-replay .Recommend-eyebrow,.Recommend-mobile .Recommend-replay .Recommend-title,.Recommend-replay .Recommend-compact{display:none}.Recommend-mobile .Recommend-replay .Recommend-compact{color:#fff;display:initial}.Recommend-mobile .Recommend-replay .Recommend-eyebrow.Recommend-compact{padding-left:4px}.Recommend-endCardWrapper.Recommend-sticky .Recommend-eyebrow{font-size:10px;letter-spacing:.83px}.Recommend-endCardWrapper.Recommend-sticky .Recommend-title{font-size:12px;font-weight:700;letter-spacing:.5px;line-height:1.25}.Recommend-titleDark{color:#fff}.Recommend-slideshowItem .Recommend-titleDark{font-size:16px;letter-spacing:.15px;margin-top:5px}@media (min-width:760px){.Recommend-slideshowItem .Recommend-titleDark{font-size:24px;letter-spacing:.22px}}.PlaceHolder-buffettLongFormWrapper .Buffett-endCardWrapper{padding-bottom:calc(50% + 10px)}@media (min-width:760px){.PlaceHolder-buffettLongFormWrapper .Buffett-endCardWrapper{padding-bottom:calc(50% + 20px)}}@media (min-width:1020px){.PlaceHolder-buffettLongFormWrapper .Buffett-endCardWrapper{padding-bottom:680.625px}}.Recommend-content.Recommend-replay{bottom:auto;top:15px}.Recommend-sticky{padding-bottom:0;position:fixed;top:auto}.Recommend-endCardWrapper .icon-close{display:none}.Recommend-endCardWrapper.Recommend-sticky .icon-close{align-items:center;background:#fcb700;color:#fff;display:flex;font-size:15px;font-weight:900;height:28px;justify-content:center;left:0;position:relative;top:-28px;width:28px}.Recommend-endCardWrapper.Recommend-sticky .Recommend-cancel{display:none}.LiveEventDescription-container{margin-bottom:58px}.LiveEventDescription-container.LiveEventDescription-berkshireHathaway{margin-bottom:42px}.LiveEventDescription-container.LiveEventDescription-berkshireHathaway .group{max-width:unset}.LiveEventDescription-container.LiveEventDescription-berkshireHathaway .group p{font-family:Lyon Text,Helvetica,Arial,sans-serif;font-weight:400}@media (max-width:1019px){.LiveEventDescription-container.LiveEventDescription-berkshireHathaway{margin-bottom:30px}}@media (max-width:759px){.LiveEventDescription-container.LiveEventDescription-berkshireHathaway{margin-bottom:16px}}.LiveEventDescription-tagContainer{display:flex;flex-direction:row;margin:0 0 16px}.LiveEventDescription-title{color:#000;display:block;font-family:Proxima Nova,sans-serif;font-size:14px;font-weight:600;line-height:18px;margin:0;padding-right:18px;white-space:nowrap}@media (max-width:759px){.LiveEventDescription-title{display:none}}.LiveEventDescription-description{display:block}.LiveEventDescription-headline{color:#000;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:22px;font-weight:700;letter-spacing:.03px;line-height:26px;margin-bottom:16px;text-align:left}.LiveEventDescription-details{color:#000;font-family:Lyon Text,Helvetica,Arial,sans-serif;font-size:18px;font-weight:500;letter-spacing:.4444px;line-height:28px}.LiveEventDescription-timestamp{color:#747474;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-weight:600;letter-spacing:1.5px;line-height:16px;margin-top:16px;text-transform:uppercase}.LiveEventDescription-description .group{font-family:Proxima Nova,Helvetica,Arial,sans-serif;margin-left:0}.LiveEventDescription-description .group a{color:#2077b6;text-decoration:underline}.LiveEventDescription-description .group a:hover{color:#fcb700}.LiveEventDescription-description .group ol,.LiveEventDescription-description .group ol li,.LiveEventDescription-description .group ul,.LiveEventDescription-description .group ul li{list-style:revert;margin-left:10px}.MiniQuoteData-container{display:block;height:162px;line-height:22px;padding:0 30px;text-indent:0}@media (min-width:1020px){.MiniQuoteData-container{height:144px;padding:0 8px}}@media (max-width:759px){.MiniQuoteData-container{height:154px;min-width:320px;padding:0 15px}}@media (min-width:760px) and (max-width:1019px){.MiniQuoteData-container{height:274px;min-width:560px}}.MiniQuoteData-section{display:block;padding-bottom:0;padding-left:0;padding-top:0}@media (min-width:760px) and (max-width:1019px){.MiniQuoteData-section{margin-bottom:10px}}.MiniQuoteData-companyName{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.MiniQuoteData-companyName,.MiniQuoteData-last{font-weight:700}.MiniQuoteData-companyName,.MiniQuoteData-link{font-size:14px;margin-top:12px}@media (min-width:760px) and (max-width:1019px){.MiniQuoteData-companyName,.MiniQuoteData-link{font-size:24px;margin-bottom:14px;margin-top:14px}}.MiniQuoteData-last,.MiniQuoteData-quote,.MiniQuoteData-quoteDown,.MiniQuoteData-quoteUp{display:block;margin:4px 0}.MiniQuoteData-header{align-items:center;display:flex}.MiniQuoteData-last{font-size:24px;margin-right:12px}@media (min-width:760px) and (max-width:1019px){.MiniQuoteData-last{font-size:34px}}.MiniQuoteData-link{font-size:11px;font-weight:600}@media (min-width:760px) and (max-width:1019px){.MiniQuoteData-link{font-size:16px}}.MiniQuoteData-link a{color:#005594;text-decoration:underline}.MiniQuoteData-cnbcLink{color:#2077b6;text-decoration:underline}.MiniQuoteData-quote,.MiniQuoteData-quoteDown,.MiniQuoteData-quoteUp{color:#747474;font-family:Proxima Nova,sans-serif;font-size:12px;font-weight:700;line-height:12px}@media (min-width:760px) and (max-width:1019px){.MiniQuoteData-quote,.MiniQuoteData-quoteDown,.MiniQuoteData-quoteUp{font-size:20px}}.MiniQuoteData-quoteUp{color:#008456}.MiniQuoteData-quoteUp:before{content:"▾";display:inline-block;margin-right:4px;transform:rotate(-180deg)}.MiniQuoteData-quoteDown{color:#d0021b}.MiniQuoteData-quoteDown:before{content:"▾";margin-right:4px}.MiniQuoteData-details{grid-column-gap:4%;display:grid;grid-template-columns:1fr 1fr}.MiniQuoteData-container,.MiniQuoteData-withTopBorder{border-bottom:.5px solid #747474}.MiniQuoteData-halfDetail{color:#747474;display:flex;font-size:10px;font-weight:700;justify-content:space-between;margin:0}.MiniQuoteData-halfDetail :nth-child(2n){color:#171717}@media (min-width:760px) and (max-width:1019px){.MiniQuoteData-halfDetail{font-size:18px;line-height:40px;margin:0 0 20px}}.MiniQuoteData-halfDetail:nth-of-type(odd){grid-column:1/2}.MiniQuoteData-halfDetail:nth-of-type(2n){grid-column:2/3}.AddToWatchlistDropdown-container{align-content:center;align-items:center;background-color:#fff;display:flex;flex-direction:column;font-family:Proxima Nova,Helvetica,Arial,sans-serif;justify-content:center;padding:20px 0;position:fixed;z-index:1001}.AddToWatchlistDropdown-container.AddToWatchlistDropdown-withWatchlists{align-items:normal;justify-content:normal}@media (max-width:1019px){.AddToWatchlistDropdown-container{bottom:0;left:0;right:0;top:0;z-index:9999}}@media (min-width:1020px){.AddToWatchlistDropdown-container{border:.5px solid #9e9e9e;border-top:0;box-shadow:0 1px 6px rgba(0,0,0,.25),0 -3px 0 #002f6c;display:block;left:0;padding:0;position:absolute;width:auto}.AddToWatchlistDropdown-container.AddToWatchlistDropdown-mini{left:0;right:auto}}.AddToWatchlistDropdown-container .AddToWatchlistDropdown-signInMessage,.AddToWatchlistDropdown-container .AddToWatchlistDropdown-simpleText{display:block;font-size:12px;line-height:12px;text-align:center}.AddToWatchlistDropdown-container .AddToWatchlistDropdown-signInMessage{color:#000;font-weight:700;margin-bottom:-10px;margin-top:20px}.AddToWatchlistDropdown-container .AddToWatchlistDropdown-simpleText{font-weight:500}.AddToWatchlistDropdown-container .AddToWatchlistDropdown-simpleText:last-child{margin-bottom:20px}.AddToWatchlistDropdown-wrapper{max-height:calc(100vh - 158px);overflow:auto}@media (min-width:1020px){.AddToWatchlistDropdown-wrapper{max-height:118px}}.AddToWatchlistDropdown-watchlistContainer{border:.5px solid #cfd8e2;box-shadow:0 -3px 0 #002f6c;padding:unset;right:-1px;top:27px;width:calc(100% + 2px)}@media (max-width:1019px){.AddToWatchlistDropdown-watchlistContainer{top:0}}.AddToWatchlistDropdown-container.AddToWatchlistDropdown-isFetching{padding-top:0}.AddToWatchlistDropdown-closeButton{display:block;font-size:12px;position:absolute;right:15px;top:20px}@media (min-width:1020px){.AddToWatchlistDropdown-closeButton{display:none}}.AddToWatchlistDropdown-closeButton.AddToWatchlistDropdown-closeButtonForSymbolTag{font-size:15px;top:27px}.AddToWatchlistDropdown-header{color:#9e9e9e;font-size:12px;font-weight:600;letter-spacing:.01em;line-height:12px;margin:20px 30px;text-indent:0}.AddToWatchlistDropdown-header.AddToWatchlistDropdown-headerForWatchlistTag{align-items:center;display:flex;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:11px;height:32px;margin:0 0 0 8px}@media (max-width:1019px){.AddToWatchlistDropdown-header.AddToWatchlistDropdown-headerForWatchlistTag{font-size:18px;height:68px;line-height:normal;margin-left:30px;padding:8px 0}}.AddToWatchlistDropdown-footer{display:block;padding:15px 15px 20px;position:relative;width:100%;z-index:1}.AddToWatchlistDropdown-footer .AddToWatchlistDropdown-footerLink,.AddToWatchlistDropdown-footer .AddToWatchlistDropdown-watchlistTagFooterLink{color:#005594;display:block;font-size:11px;font-weight:600;line-height:13px;padding-left:10px;padding-top:10px;text-indent:0}.AddToWatchlistDropdown-footer .AddToWatchlistDropdown-footerLink.AddToWatchlistDropdown-signIn,.AddToWatchlistDropdown-footer .AddToWatchlistDropdown-watchlistTagFooterLink.AddToWatchlistDropdown-signIn{background-color:#005594;border:none;bottom:0;color:#fff;position:static}.AddToWatchlistDropdown-footer .AddToWatchlistDropdown-watchlistTagFooterLink{line-height:11px;margin-left:10px;padding:unset;text-decoration:underline}.AddToWatchlistDropdown-footer .AddToWatchlistDropdown-watchlistTagFooterLink:first-child{margin-bottom:12px;margin-top:12px}@media (max-width:1019px){.AddToWatchlistDropdown-footer .AddToWatchlistDropdown-watchlistTagFooterLink:first-child{margin-bottom:30px;margin-top:48px}.AddToWatchlistDropdown-footer .AddToWatchlistDropdown-watchlistTagFooterLink{font-size:18px;margin-left:30px}}.AddToWatchlistDropdown-footer .AddToWatchlistDropdown-watchlistTagFooterLink:hover{color:#005594}.AddToWatchlistDropdown-footer .AddToWatchlistDropdown-footerLink{border:1px solid #071d39;color:#071d39;line-height:12px;padding:15px;text-align:center;width:100%}@media (max-width:1019px){.AddToWatchlistDropdown-footer{bottom:20px;position:absolute}}.AddToWatchlistDropdown-watchlistTagFooter{padding:unset;position:relative}.AddToWatchlistDropdown-signInContainer{bottom:0;min-width:240px;position:relative;width:50%}.AddToWatchlistDropdown-createWatchlistContainer{bottom:0;padding-bottom:10px;position:relative}@media (max-width:1019px){.AddToWatchlistDropdown-createWatchlistContainer{text-align:center;top:20px;width:50%}}.AddToWatchlistDropdown-message{color:#e8802a;display:block;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-weight:600;line-height:100%;padding:15px 15px 0;text-align:center}@media (max-width:1019px){.AddToWatchlistDropdown-message{font-size:18px;font-weight:600;line-height:18px}}.AddToWatchlistDropdown-message.AddToWatchlistDropdown-watchListEmptyMsg{color:#171717}.AddToWatchlistDropdown-symbolIssueError{border-bottom:1px solid #bababa;color:#ce2b2b;display:block;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:600;line-height:18px;padding:35px 20px;text-align:center;white-space:normal}.AddToWatchlistDropdown-ghostDropdownCloser{bottom:0;display:none;left:0;position:fixed;right:0;top:0;z-index:98}@media (min-width:1020px){.AddToWatchlistDropdown-ghostDropdownCloser{display:block}}.AddToWatchlistDropdown-watchlistContainerAddTag{left:-1px;min-width:300px;top:27px;width:calc(100% + 2px)}@media (max-width:1019px){.AddToWatchlistDropdown-watchlistContainerAddTag{top:0}}.AddToWatchlistDropdown-watchlistContainerAddTag .AddToWatchlistDropdown-message{font-size:11px;font-weight:700;letter-spacing:-.004em;line-height:13px;padding-left:8px;padding-right:8px;text-align:center}@media (max-width:1019px){.AddToWatchlistDropdown-watchlistContainerAddTag .AddToWatchlistDropdown-message{align-items:center;display:flex;font-size:18px;font-weight:700;letter-spacing:-.002em;line-height:18px;text-align:center}}.AddToWatchlistDropdown-loggedOutAddTag{padding:unset}.AddToWatchlistDropdown-loggedOutAddTag .AddToWatchlistDropdown-signInContainer .AddToWatchlistDropdown-watchlistTagFooterLink{position:relative;right:9px;top:8px}@media (max-width:1019px){.AddToWatchlistDropdown-loggedOutAddTag .AddToWatchlistDropdown-signInContainer .AddToWatchlistDropdown-watchlistTagFooterLink{font-size:14px;margin-left:unset;padding-top:50px;right:0;text-align:center;top:0}}.AddToWatchlistDropdown-loggedOutAddTag .AddToWatchlistDropdown-createWatchlistContainer .AddToWatchlistDropdown-watchlistTagFooterLink{padding-bottom:8px;position:relative}@media (max-width:1019px){.AddToWatchlistDropdown-loggedOutAddTag .AddToWatchlistDropdown-createWatchlistContainer .AddToWatchlistDropdown-watchlistTagFooterLink{font-size:14px;margin-left:unset;padding-top:50px}}.AddToWatchlistDropdown-signInContainerAddTag{display:block;margin:0 10%;padding:8px}@media (min-width:1020px){.AddToWatchlistDropdown-signInContainerAddTag{min-width:unset;width:unset}}.AddToWatchlistDropdown-buttonLink{border:1px solid #005594;color:#005594;display:block;font-size:10px;font-weight:600;line-height:12px;padding:8px;text-align:center;width:100%}.AddToWatchlistDropdown-buttonLink.AddToWatchlistDropdown-signIn{background-color:#005594;border:none;bottom:0;color:#fff;margin-top:20px;position:static}.AddToWatchlistDropdown-buttonLink.AddToWatchlistDropdown-createWatchlist{background-color:#005594;border:none;bottom:0;color:#fff;margin:auto;min-width:120px;padding:15px;position:static;text-decoration:none;width:90%}.AddToWatchlistDropdown-buttonLink.AddToWatchlistDropdown-createWatchlist:hover{color:#fff}@media (max-width:1019px){.AddToWatchlistDropdown-buttonLink.AddToWatchlistDropdown-createWatchlist{min-width:200px}.AddToWatchlistDropdown-buttonLink{font-size:14px;font-weight:700}}.AddToWatchlistDropdown-signInButtonAddTag{align-items:center;font-size:10px;font-weight:700;letter-spacing:.5px;line-height:12px;padding:8px;text-align:center}.AddToWatchlistDropdown-signInButtonAddTag.AddToWatchlistDropdown-signIn{background-color:#005594}.AddToWatchlistDropdown-signInButtonAddTag.AddToWatchlistDropdown-signIn:hover{background-color:#002f6c}.AddToWatchlistDropdown-signInButtonAddTag.AddToWatchlistDropdown-createWatchlist{background-color:#005594;color:#fff;font-family:Proxima Nova,Helvetica,Arial,sans-serif;padding:8px;text-decoration:none}.AddToWatchlistDropdown-signInButtonAddTag.AddToWatchlistDropdown-createWatchlist:hover{background-color:#002f6c;color:#fff}@media (max-width:1019px){.AddToWatchlistDropdown-signInButtonAddTag.AddToWatchlistDropdown-createWatchlist{padding:12px}.AddToWatchlistDropdown-buttonLink{font-size:14px;letter-spacing:1.1px;line-height:16px;margin:auto;max-width:260px;padding:12px}}.AddToWatchlistDropdown-watchlistScrollContainer{display:block;max-height:100px;overflow-y:scroll}.AddToWatchlistDropdown-watchlistScrollContainer:before{bottom:32px;content:"";display:block;height:40px;pointer-events:none;position:absolute;width:100%;z-index:1}@media (max-width:1019px){.AddToWatchlistDropdown-watchlistScrollContainer:before{bottom:100px}}.AddToWatchlistDropdown-watchlistScrollContainer.AddToWatchlistDropdown-fade:before{background:linear-gradient(180deg,hsla(0,0%,100%,0),25%,#fff)}@media (max-width:1019px){.AddToWatchlistDropdown-watchlistScrollContainer{max-height:70%}}.AddToWatchlistDropdownCheckbox-container{border-top:1px solid #bababa;display:block}.AddToWatchlistDropdownCheckbox-container:last-of-type{border-bottom:1px solid #bababa}.AddToWatchlistDropdownCheckbox-watchlist{align-items:center;color:#071d39;display:flex;font-size:14px;font-weight:700;padding:8px 29px;width:100%}.AddToWatchlistDropdownCheckbox-watchlist:first-child{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.AddToWatchlistDropdownCheckbox-watchlist.AddToWatchlistDropdownCheckbox-watchlistForSymbolTag{color:#002f6c;font-size:11px;font-weight:600;height:32px;padding-left:8px}@media (max-width:1019px){.AddToWatchlistDropdownCheckbox-watchlist.AddToWatchlistDropdownCheckbox-watchlistForSymbolTag{font-size:18px;height:50px;padding-left:30px}}.AddToWatchlistDropdownCheckbox-checkbox{border:1px solid #bababa;border-radius:2px;flex-shrink:0;height:14px;margin-right:12px;position:relative;width:14px}.AddToWatchlistDropdownCheckbox-watchlistNameForSymbolTag{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.AddToWatchlistDropdownCheckbox-hasSymbols .AddToWatchlistDropdownCheckbox-checkbox:after{border-color:#071d39;border-style:solid;border-width:0 2px 2px 0;content:"";display:block;height:12px;left:5px;position:absolute;top:-4px;transform:rotate(45deg);width:5px}.AddToWatchlistDropdownCheckbox-hasSymbols .AddToWatchlistDropdownCheckbox-checkboxForSymbolTag{background:#2077b6;border:none}.AddToWatchlistDropdownCheckbox-hasSymbols .AddToWatchlistDropdownCheckbox-checkboxForSymbolTag:after{border-color:#fff;height:7px;left:5px;top:1px;width:3px}.AddToWatchlistDropdownCheckbox-isLoading{cursor:wait}.AddToWatchlistDropdownCheckbox-isLoading>*{opacity:.5}.AddToWatchlistDropdownCheckbox-error{color:#ce2b2b;display:block;font-size:12px;font-weight:600;padding:0 10px 8px 56px}.AddToWatchlistDropdownCheckboxes-notificationContainer{font-size:11px;line-height:18px;padding:2px 6px 0;top:150px}.AddToWatchlistDropdownCheckboxes-notificationContainer .AddToWatchlistDropdownCheckboxes-notification{background-color:#2077b6;border-radius:3px;box-shadow:0 1px 3px 1px rgba(0,0,0,.08);color:#fff;font-weight:700;line-height:16px;padding:10px;white-space:nowrap;width:224px}.AddToWatchlistDropdownCheckboxes-notificationContainer .AddToWatchlistDropdownCheckboxes-notification.AddToWatchlistDropdownCheckboxes-error{background-color:#ce2b2b;width:204px}@media (max-width:1019px){.AddToWatchlistDropdownCheckboxes-notificationContainer{top:165px}}.AddToWatchlistButton-container{display:block;font-family:Proxima Nova,Helvetica,Arial,sans-serif;position:relative}.AddToWatchlistButton-watchlistContainer{display:inline-block}.AddToWatchlistButton-button{align-items:center;border:1px solid #002f6c;box-sizing:border-box;color:#002f6c;display:flex;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-weight:600;justify-content:center;line-height:12px;padding:8px}@media (min-width:1020px){.AddToWatchlistButton-button{padding:14px 15px}}.AddToWatchlistButton-button .AddToWatchlistButton-mobileText{font-size:26px;font-weight:600;line-height:12px}.AddToWatchlistButton-button .AddToWatchlistButton-desktopText{display:none}@media (min-width:1020px){.AddToWatchlistButton-button .AddToWatchlistButton-desktopText{display:initial;margin:0 10px 0 0}}.AddToWatchlistButton-watchlistFromTagItem{border:.5px solid #cfd8e2;border-radius:7px;display:flex;position:relative}.AddToWatchlistButton-watchlistFromTagItem:hover{border:.5px solid #747474}.AddToWatchlistButton-watchlistFromTagItem.AddToWatchlistButton-dropdownVisible{border:.5px solid #cfd8e2}.AddToWatchlistButton-addWatchListFromTag{background-image:url(https://static-redesign.cnbcfm.com/dist/3d3257ad9e8a242b5362.svg);background-repeat:no-repeat;height:12px;width:12px}.AddToWatchlistButton-watchlistButton{align-items:center;color:#002f6c;display:flex;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-weight:600;line-height:12px;padding:8px 8px 8px 4px}.AddToWatchlistButton-watchlistButton.AddToWatchlistButton-dropdownOpen .AddToWatchlistButton-addWatchListFromTag,.AddToWatchlistButton-watchlistButton:focus .AddToWatchlistButton-addWatchListFromTag,.AddToWatchlistButton-watchlistButton:hover .AddToWatchlistButton-addWatchListFromTag{background-image:url(https://static-redesign.cnbcfm.com/dist/8eafdf125d3d82d5a92f.svg)}.ChartPreview-chartPreviewContainer{filter:drop-shadow(20px 20px 10px #00000044);left:50%;padding:20px;position:absolute;top:25px;transform:translateX(-50%);z-index:100}.ChartPreview-chartPreview{background:#fff;border:.5px solid #747474;border-radius:7px;padding:10px;z-index:101}.ChartPreview-chartPreview:before{border:11px solid transparent;border-bottom-color:#747474;bottom:calc(100% - 20px)}.ChartPreview-chartPreview:after,.ChartPreview-chartPreview:before{content:" ";height:0;left:50%;margin-left:-11px;pointer-events:none;position:absolute;width:0}.ChartPreview-chartPreview:after{border:11px solid transparent;border-bottom-color:#fff;bottom:calc(100% - 21px)}.ChartPreview-chartPreviewHeader{display:flex;flex-direction:column;font-family:Proxima Nova,sans-serif;gap:4px;line-height:normal;padding-bottom:10px}.ChartPreview-chartPreviewHeaderRow{display:flex;font-size:12px;font-weight:500;justify-content:space-between}.ChartPreview-chartPreviewHeaderName{color:#000;font-size:13px;font-weight:800}.ChartPreview-chartFrame{border:.5px solid #747474}.ChartPreview-link{text-decoration:none!important;white-space:nowrap}.QuoteItem-item{border:.5px solid #cfd8e2;border-radius:7px;display:flex;margin:0 15px 10px 0;position:relative}.QuoteItem-item:before{content:"";display:none}.QuoteItem-item:hover{border:.5px solid #747474}.QuoteItem-item.QuoteItem-hideHoverBorder{border:.5px solid #cfd8e2}.QuoteItem-link{align-items:center;display:flex;padding:8px;text-decoration:none!important;white-space:nowrap}.QuoteItem-link.QuoteItem-extHours{padding:7px 8px}.QuoteItem-link.QuoteItem-updated{border-color:#002f6c;transition:border-color .25s}.QuoteItem-symbol{color:#171717;font-family:Proxima Nova,sans-serif;font-size:12px;font-weight:700;line-height:12px;margin:0}@media (prefers-color-scheme:dark){.webview .QuoteItem-symbol{color:#fff}}.QuoteItem-quote,.QuoteItem-quoteDown,.QuoteItem-quoteUp{color:#747474;font-family:Proxima Nova,sans-serif;font-size:12px;font-weight:700;line-height:12px;margin:0 0 0 5px}.QuoteItem-quoteUp{color:#008456}.QuoteItem-quoteDown{color:#d0021b}.QuoteItem-afterHoursIcon{display:inline;height:14px;margin-left:8px}.RelatedQuotes-relatedQuotes{display:flex;flex-direction:column;margin:0 0 28px}@media (max-width:1019px){.RelatedQuotes-relatedQuotes{overflow-x:hidden}}@media (min-width:760px){.RelatedQuotes-relatedQuotes{display:grid;grid-template-columns:auto 1fr}}.RelatedQuotes-relatedQuotes .RelatedQuotes-titleAndTime{align-items:center;display:flex;margin:0 15px 10px 0}.RelatedQuotes-relatedQuotes .RelatedQuotes-subtext,.RelatedQuotes-relatedQuotes .RelatedQuotes-text{color:#171717;font-family:Proxima Nova,sans-serif;font-size:12px;font-weight:700;line-height:16px;margin:0;padding:0;white-space:nowrap}.RelatedQuotes-relatedQuotes .RelatedQuotes-subtext{color:#747474;font-size:9px;font-weight:700;margin:0;text-transform:uppercase}.RelatedQuotes-relatedQuotes .RelatedQuotes-list{-webkit-overflow-scrolling:touch;display:flex;flex-wrap:wrap;line-height:0;margin:0;padding:0;text-indent:0;width:100%}@media (min-width:760px){.RelatedQuotes-relatedQuotes .RelatedQuotes-list{flex-wrap:wrap}}@media (max-width:759px){.RelatedQuotes-relatedQuotes .RelatedQuotes-list{overflow-x:scroll}}.RelatedQuotes-relatedQuotes .RelatedQuotes-list.RelatedQuotes-isMobileWebview{flex-wrap:wrap}.RelatedQuotes-relatedQuotes .RelatedQuotes-list:before{content:"";display:none}.RelatedQuotes-relatedQuotes .RelatedQuotes-list::-webkit-scrollbar{display:none}.RelatedQuotes-relatedQuotes .RelatedQuotes-signUpBtnEnabledlist{-webkit-overflow-scrolling:touch;display:flex;flex-wrap:wrap;line-height:0;margin:0;padding:0;text-indent:0;width:70%}@media (min-width:760px){.RelatedQuotes-relatedQuotes .RelatedQuotes-signUpBtnEnabledlist{flex-wrap:wrap}}@media (max-width:759px){.RelatedQuotes-relatedQuotes .RelatedQuotes-signUpBtnEnabledlist{overflow-x:scroll}}.RelatedQuotes-relatedQuotes .RelatedQuotes-signUpBtnEnabledlist.RelatedQuotes-isMobileWebview{flex-wrap:wrap}.RelatedQuotes-relatedQuotes .RelatedQuotes-signUpBtnEnabledlist:before{content:"";display:none}.RelatedQuotes-relatedQuotes .RelatedQuotes-signUpBtnEnabledlist::-webkit-scrollbar{display:none}@media (max-width:759px){.RelatedQuotes-listDropdownVisible{overflow-x:unset!important}}@media (prefers-color-scheme:dark){.RelatedQuotes-relatedQuotes .webview .RelatedQuotes-subtext,.webview .RelatedQuotes-relatedQuotes .RelatedQuotes-subtext,.webview .RelatedQuotes-text{color:#fff}.webview .RelatedQuotes-subtext{color:#9a9fa7!important}}.RelatedQuotes-buttonLink{background:radial-gradient(50% 50% at 50% 50%,#035ac8 0,#071d39 100%);border-radius:2px;color:#fff;height:48px;left:590px;padding:10px;position:absolute;top:15px;width:150px}@media (max-width:1339px){.RelatedQuotes-buttonLink{left:480px}}@media (max-width:1019px){.RelatedQuotes-buttonLink{left:84%;top:0}}@media (max-width:759px){.RelatedQuotes-buttonLink{left:70%}}.RelatedQuotes-twoOrlessTickerStyles{top:-12px}@media screen and (max-width:950px){.RelatedQuotes-buttonLink{left:83%}}@media screen and (max-width:900px){.RelatedQuotes-buttonLink{left:82%}}@media screen and (max-width:850px){.RelatedQuotes-buttonLink{left:81%}}@media screen and (max-width:830px){.RelatedQuotes-buttonLink{left:80%}}@media screen and (max-width:790px){.RelatedQuotes-buttonLink{left:79%}}@media screen and (max-width:700px){.RelatedQuotes-buttonLink{left:78%}}@media screen and (max-width:670px){.RelatedQuotes-buttonLink{left:77%}}@media screen and (max-width:645px){.RelatedQuotes-buttonLink{left:76%}}@media screen and (max-width:585px){.RelatedQuotes-buttonLink{left:73%}}@media screen and (max-width:550px){.RelatedQuotes-buttonLink{left:71%}}@media screen and (max-width:530px){.RelatedQuotes-buttonLink{left:70%}}@media screen and (max-width:500px){.RelatedQuotes-buttonLink{left:68%}}@media screen and (max-width:450px){.RelatedQuotes-buttonLink{left:64%}}@media screen and (max-width:420px){.RelatedQuotes-buttonLink{left:62%}}@media screen and (max-width:400px){.RelatedQuotes-buttonLink{left:60%}}@media screen and (max-width:380px){.RelatedQuotes-buttonLink{left:56%}}.RelatedQuotes-buttonLink .RelatedQuotes-btnSmallDes{display:block;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:11px;font-weight:400}.RelatedQuotes-buttonLink .RelatedQuotes-buttonText{display:block;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:11px;font-weight:700}.RelatedQuotes-buttonLink:hover{color:#ffe965}@media screen and (max-width:360px){.RelatedQuotes-isSignupBtnEna{margin-top:50px!important}.RelatedQuotes-buttonLink{align-items:center;display:inline-flex;gap:5px;justify-content:space-around;left:0;margin-bottom:20px;position:absolute;text-align:center;top:-15px!important;width:100%}.RelatedQuotes-buttonLink .RelatedQuotes-btnSmallDes{font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:11px;font-weight:400}.RelatedQuotes-buttonLink .RelatedQuotes-buttonText{font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-weight:800}.RelatedQuotes-buttonLink:hover{color:#ffe965}}@media screen and (max-width:759px){.RelatedQuotes-buttonLink{top:40px}.RelatedQuotes-twoOrlessTickerStyles{top:-12px}}.LiveEventSlate-container .LiveEventSlate-liveEventSlate{background-repeat:no-repeat;background-size:contain;display:block;margin-bottom:30px;max-width:100%;padding-bottom:57%}.LiveEventSlate-container .LiveEventSlate-error{background-image:url(https://static-redesign.cnbcfm.com/dist/54f3d8c60727fdd092ad.png)}.LiveEventSlate-container .LiveEventSlate-pre.LiveEventSlate-investingClub{background-image:url(https://static-redesign.cnbcfm.com/dist/261db0afca7926c9c4d5.png)}@media (max-width:759px){.LiveEventSlate-container .LiveEventSlate-pre.LiveEventSlate-investingClub{background-image:url(https://static-redesign.cnbcfm.com/dist/635637529f397c6b0b99.png)}}.LiveEventSlate-container .LiveEventSlate-pre.LiveEventSlate-morningMeeting{background-image:url(https://static-redesign.cnbcfm.com/dist/c4b2ab67f20d4702a761.png)}@media (max-width:759px){.LiveEventSlate-container .LiveEventSlate-pre.LiveEventSlate-morningMeeting{height:300px}}@media (min-width:760px){.LiveEventSlate-container .LiveEventSlate-pre.LiveEventSlate-morningMeeting{background-image:url(https://static-redesign.cnbcfm.com/dist/05644c6301c29d5f98e1.png)}}@media (min-width:1020px){.LiveEventSlate-container .LiveEventSlate-pre.LiveEventSlate-morningMeeting{background-image:url(https://static-redesign.cnbcfm.com/dist/0907dbcaa9e6b98f1590.png)}}@media (min-width:1340px){.LiveEventSlate-container .LiveEventSlate-pre.LiveEventSlate-morningMeeting{background-image:url(https://static-redesign.cnbcfm.com/dist/4c02522e1899983c236e.png)}}.LiveEventSlate-container .LiveEventSlate-pre.LiveEventSlate-pro{background-image:url(https://static-redesign.cnbcfm.com/dist/603bc0c9eee2fffcf418.png)}.LiveEventSlate-container .LiveEventSlate-pre.LiveEventSlate-berkshireHathawayMeeting,.LiveEventSlate-container .LiveEventSlate-pre.LiveEventSlate-free{background-image:url(https://static-redesign.cnbcfm.com/dist/aa7e1174aeed08b7bd0f.png)}.LiveEventSlate-container .LiveEventSlate-post.LiveEventSlate-berkshireHathawayMeeting{background-image:url(https://static-redesign.cnbcfm.com/dist/5c142c155da6b42bf23b.png)}@media (max-width:759px){.LiveEventSlate-container .LiveEventSlate-post.LiveEventSlate-berkshireHathawayMeeting{background-image:url(https://static-redesign.cnbcfm.com/dist/acff13a99fc3cb2c8406.png)}}.LiveEventSlate-container .LiveEventSlate-post.LiveEventSlate-investingClub{background-image:url(https://static-redesign.cnbcfm.com/dist/9b60e1df4c50583b02fa.png)}@media (max-width:759px){.LiveEventSlate-container .LiveEventSlate-post.LiveEventSlate-investingClub{background-image:url(https://static-redesign.cnbcfm.com/dist/00e4560338770d5246e7.png)}}.LiveEventSlate-container .LiveEventSlate-post.LiveEventSlate-morningMeeting{background-image:url(https://static-redesign.cnbcfm.com/dist/189c780e2af6e2b69066.png)}@media (max-width:759px){.LiveEventSlate-container .LiveEventSlate-post.LiveEventSlate-morningMeeting{height:300px}}@media (min-width:760px){.LiveEventSlate-container .LiveEventSlate-post.LiveEventSlate-morningMeeting{background-image:url(https://static-redesign.cnbcfm.com/dist/b055b5b9f509671e0d77.png)}}@media (min-width:1020px){.LiveEventSlate-container .LiveEventSlate-post.LiveEventSlate-morningMeeting{background-image:url(https://static-redesign.cnbcfm.com/dist/00daf039d9d82c7296e8.png)}}@media (min-width:1340px){.LiveEventSlate-container .LiveEventSlate-post.LiveEventSlate-morningMeeting{background-image:url(https://static-redesign.cnbcfm.com/dist/b6108ecbb43ceecfdd4b.png)}}.LiveEventSlate-container .LiveEventSlate-post.LiveEventSlate-pro{background-image:url(https://static-redesign.cnbcfm.com/dist/351cbae0bbe7fd326046.png)}.LiveEventSlate-container .LiveEventSlate-post.LiveEventSlate-free{background-image:url(https://static-redesign.cnbcfm.com/dist/fe3c67caf861a2022cf7.png)}.LiveEventPlayerWrapper-liveStreamWrapper{margin-bottom:30px}.LiveEventPlayerWrapper-liveStreamWrapper .jw-slider-time{display:none}.StandaloneLiveEventPlayerWrapper-standaloneContainer{font-family:Proxima Nova,Helvetica,Arial,sans-serif;margin-top:20px}.StandaloneLiveEventPlayerWrapper-eventState{font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:20px;font-weight:600}.StandaloneLiveEventPlayerWrapper-webview{display:flex;justify-content:center;padding:15px 0}@media (max-width:359px){.StandaloneLiveEventPlayerWrapper-webview img{width:100%}}.QuoteInBody-quoteNameContainer{white-space:nowrap}.QuoteInBody-inlineButton{margin-right:-6px;position:relative}.QuoteInBody-dropdownInBody{border-radius:unset;color:#000;left:0;top:22px;width:200px}@media (max-width:1019px){.QuoteInBody-dropdownInBody{top:0;width:100%}}.CollapsibleContainer-collapsibleContainer,.CollapsibleContainer-collapsibleContent{position:relative}.CollapsibleContainer-collapsibleContent{height:auto;overflow:hidden;transition:max-height .2s ease}.CollapsibleContainer-collapsed .CollapsibleContainer-collapsibleContent{max-height:300px}@media (min-width:760px){.CollapsibleContainer-collapsed .CollapsibleContainer-collapsibleContent{max-height:140px}}.CollapsibleContainer-collapsed .CollapsibleContainer-fadingGradient{background-image:linear-gradient(180deg,hsla(0,0%,100%,0),#fff 49.23%);background-image:linear-gradient(180deg,hsla(0,0%,100%,0),hsla(0,0%,100%,.9));content:"";height:80px;height:300px;left:0;position:absolute;right:0;top:calc(100% - 80px);top:0}@media (min-width:760px){.CollapsibleContainer-collapsed .CollapsibleContainer-fadingGradient{max-height:140px}}.CollapsibleContainer-expanded .CollapsibleContainer-collapsibleContent{max-height:4000px}@media (min-width:1020px){.CollapsibleContainer-expanded .CollapsibleContainer-collapsibleContent{max-height:3000px}}.CollapsibleContainer-toggleContainer{align-items:center;border-top:1px solid #d9d9d9;display:flex;height:42px;justify-content:center;position:relative;text-align:center}.CollapsibleContainer-toggle{align-items:center;color:#0477c9;cursor:pointer;display:flex;font-family:Lato,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:900;line-height:20px;transition:all .2s ease}.CollapsibleContainer-webview-normal .CollapsibleContainer-toggle{font-size:14px}.CollapsibleContainer-webview-large .CollapsibleContainer-toggle{font-size:17.5px;line-height:normal}.CollapsibleContainer-webview-larger .CollapsibleContainer-toggle{font-size:21px;line-height:normal}.CollapsibleContainer-webview-xlarge .CollapsibleContainer-toggle{font-size:24.5px;line-height:normal}.CollapsibleContainer-webview-xxlarge .CollapsibleContainer-toggle{font-size:28px;line-height:normal}.CollapsibleContainer-webview-xxxlarge .CollapsibleContainer-toggle{font-size:31.5px;line-height:normal}.CollapsibleContainer-toggle span{display:inline-block;line-height:1}.CollapsibleContainer-toggle:active,.CollapsibleContainer-toggle:focus,.CollapsibleContainer-toggle:hover,.CollapsibleContainer-toggle:link{color:#0477c9}.CollapsibleContainer-toggle .icon-arrow-down-readmore:before{font-size:13px;font-weight:400;margin-left:8px}.CollapsibleContainer-expanded .icon-arrow-down-readmore:before{display:inline-block;transform:rotate(180deg)}.LiveBlogTimestamp-liveBlogTimeStamp>div,.LiveBlogTimestamp-time,.LiveBlogTimestamp-timeHidden{color:#747474;font-size:10px;font-weight:600;letter-spacing:1.2px;margin-bottom:10px;margin-right:4px;text-transform:uppercase;white-space:normal}.LiveBlogTimestamp-liveBlogTimeStamp>div time,.LiveBlogTimestamp-time time,.LiveBlogTimestamp-timeHidden time{white-space:nowrap}@media (min-width:760px){.LiveBlogTimestamp-liveBlogTimeStamp>div,.LiveBlogTimestamp-time,.LiveBlogTimestamp-timeHidden{font-size:12px;margin-bottom:16px}}.LiveBlogTimestamp-timeHidden{opacity:0}.LiveBlogTimestamp-liveBlogTimeStamp{align-items:center;display:flex;margin-top:0}.LiveBlogTimestamp-datetimeDivider:before{content:"•";display:inline-block;padding:0 3px}.OneTrustLoadingPlaceholder-container{align-items:center;background:#fff;display:flex;justify-content:center}.OneTrustBlockedPlaceholder-container{align-items:center;background-color:#d1d9dc;background-image:url(https://static-redesign.cnbcfm.com/dist/1eaf28c48f6e504fb498.svg);background-repeat:no-repeat;background-size:auto 100%;display:flex;justify-content:center}.OneTrustBlockedPlaceholder-innerCopy{font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:18px;font-weight:800;padding:20px;text-align:center}@media (prefers-color-scheme:dark){.OneTrustBlockedPlaceholder-innerCopy{color:#111}}.OneTrustBlockedPlaceholder-link{color:#1876b8;cursor:pointer}a.OneTrustBlockedPlaceholder-onetrustSettingsDeepLink{text-decoration:none!important}.withOneTrustPlaceholder-placeholderDimensions{width:100%}@media (max-width:759px){.withOneTrustPlaceholder-placeholderDimensions{height:196px}}@media (min-width:760px){.withOneTrustPlaceholder-placeholderDimensions{height:235px}}.ArticleGate-proGate{display:flex;justify-content:flex-end;margin-bottom:50px;margin-left:0;padding-bottom:50px;position:relative;width:100%}.ArticleGate-proGate:before{background:linear-gradient(180deg,hsla(0,0%,100%,0),#fff);bottom:calc(100% + 30px);content:"";height:160px;position:absolute;width:100%}.ArticleGate-proGate .ArticleGate-spacer{overflow:hidden;width:100%}@media (min-width:760px){.ArticleGate-proGate{margin-bottom:40px;padding-bottom:0}.ArticleGate-proGate:before{height:135px}.ArticleGate-proGate .ArticleGate-spacer{margin-left:16.66667%}}@media (min-width:1020px){.ArticleGate-proGate{margin-bottom:50px}.ArticleGate-proGate:before{height:105px}.ArticleGate-proGate .ArticleGate-spacer{margin-left:calc(14.28571% + 4.28571px)}}.ArticleGate-pianoGateWebview{position:relative}.ArticleGate-pianoGateWebview:before{background:linear-gradient(180deg,hsla(0,0%,100%,0),#fff);bottom:calc(100% + 30px);content:"";height:160px;position:absolute;width:100%}@media (prefers-color-scheme:dark){.ArticleGate-pianoGateWebview:before{background:linear-gradient(180deg,transparent,#000)}}.ArticleGate-dynamicPaywall{display:flex;margin-bottom:50px}.ArticleGate-dynamicPaywall:before{background:none}.ArticleGate-dynamicPaywall .ArticleGate-spacer{overflow:hidden;width:100%}@media (min-width:760px){.ArticleGate-dynamicPaywall{margin-bottom:40px;padding-bottom:0}.ArticleGate-dynamicPaywall .ArticleGate-spacer{margin-left:16.66667%}}@media (min-width:1020px){.ArticleGate-dynamicPaywall{margin-bottom:50px}.ArticleGate-dynamicPaywall .ArticleGate-spacer{margin-left:calc(14.28571% + 4.28571px)}}.UpdatePill-updatePill{align-items:center;background:#ce2b2b;border-radius:14px;color:#fff;cursor:pointer;display:flex;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:700;height:28px;justify-content:center;line-height:17px;margin-right:7.78px;pointer-events:auto;-webkit-user-select:none;-moz-user-select:none;user-select:none;width:120px}.UpdatePill-displayText{margin-left:7.78px}.BackToTopPill-pillContainer{align-items:center;background:#fff;border:2px solid #27313c;border-radius:60px;color:#27313c;cursor:pointer;display:flex;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:700;height:28px;justify-content:center;line-height:17px;pointer-events:auto;-webkit-user-select:none;-moz-user-select:none;user-select:none;width:120px}.BackToTopPill-pillContainer svg{fill:#27313c}.BackToTopPill-backPillStickyPosition{align-items:center;display:block;display:flex;justify-content:center;pointer-events:none;position:sticky;right:0;top:0;z-index:95}.BackToTopPill-backPillStickyPosition .BackToTopPill-backPillVerticalOffset{pointer-events:none;position:relative;top:10px}.BackToTopPill-displayText{margin-left:5.78px;margin-top:-1px;padding-right:2px}.LiveCommentaryFeed-scrollContainer{height:100%;overflow-x:hidden;overflow-y:auto;position:relative;width:100%}.LiveCommentaryFeed-scrollContainer .LiveCommentaryFeed-fade:before{box-shadow:0 0 93px 93px #fff;content:"";display:block;height:.1px;pointer-events:none;position:sticky;top:100%;width:100%;z-index:1}@media (min-width:760px){.LiveCommentaryFeed-scrollContainer .LiveCommentaryFeed-fade:before{box-shadow:0 0 76px 76px #fff}}@media (min-width:1020px){.LiveCommentaryFeed-scrollContainer .LiveCommentaryFeed-fade:before{box-shadow:0 0 93px 93px #fff}}.LiveCommentaryFeed-slate,.LiveCommentaryFeed-slate a{color:#171717;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:18px;font-style:normal;font-weight:600;line-height:24px}.LiveCommentaryFeed-slate{align-items:center;background-color:#f8f8f8;border:1px solid #d9d9d9;display:flex;flex-direction:column;height:100%;justify-content:center;padding:18px;text-align:center}.LiveCommentaryFeed-slate a{text-decoration:underline}.LiveCommentaryFeed-slate a:hover{color:#00a857}.LiveCommentaryFeed-slateContainer{border-top:3px solid #9e9e9e;height:120px}.LiveCommentaryFeed-slateContainer p{font-size:12px;line-height:20px;margin:0}.LiveCommentaryFeed-slateContainer p a{font-size:12px}.LiveCommentaryFeed-slateContainer p:first-child{font-size:14px}.LiveCommentaryFeed-slateContainer p:not(:first-child):not(:last-child){margin-top:8px}.LiveCommentaryFeed-slateContainer p:last-child{line-height:22px;margin-top:8px}@media (min-width:760px){.LiveCommentaryFeed-slateContainer p{font-size:16px;line-height:36px}.LiveCommentaryFeed-slateContainer p a{font-size:16px}.LiveCommentaryFeed-slateContainer p:first-child{font-size:18px;line-height:24px}.LiveCommentaryFeed-slateContainer p:not(:first-child):not(:last-child){margin-top:unset}.LiveCommentaryFeed-slateContainer p:last-child{line-height:28px}}@media (min-width:1020px){.LiveCommentaryFeed-slateContainer{margin-top:unset}.LiveCommentaryFeed-slateContainer p:not(:first-child):not(:last-child){line-height:58px}}@media (min-width:760px){.LiveCommentaryFeed-slateContainer.LiveCommentaryFeed-offline{height:180px}}@media (min-width:1020px){.LiveCommentaryFeed-slateContainer.LiveCommentaryFeed-offline{height:302px}}@media (min-width:1340px){.LiveCommentaryFeed-slateContainer.LiveCommentaryFeed-offline{height:425px}}.LiveCommentaryFeed-slateContainer.LiveCommentaryFeed-coverageEnded{height:0;overflow:visible;position:sticky;top:0;transform:translateY(-62px);z-index:90}.LiveCommentaryFeed-slateContainer.LiveCommentaryFeed-coverageEnded .LiveCommentaryFeed-slate{height:62px}@media (min-width:760px){.LiveCommentaryFeed-slateContainer.LiveCommentaryFeed-coverageEnded{transform:translateY(-120px)}.LiveCommentaryFeed-slateContainer.LiveCommentaryFeed-coverageEnded .LiveCommentaryFeed-slate{height:120px}}.LiveCommentaryFeed-slateContainer.LiveCommentaryFeed-shadow .LiveCommentaryFeed-slate{box-shadow:0 6px 4px -4px #c4c4c4}.LiveCommentaryFeed-coverageEndedFeedWrapper{padding-top:62px}@media (min-width:760px){.LiveCommentaryFeed-coverageEndedFeedWrapper{padding-top:120px}}.LiveCommentaryHeader-liveUpdatesPill{height:28px;margin-bottom:12px;text-align:center;width:142px}.LiveCommentaryHeader-liveUpdatesPill .LiveCommentaryHeader-liveUpdatesPillContent{background:#002f6c;color:#fff;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-weight:600;height:100%;line-height:28px;margin:0;width:100%}.LiveCommentaryHeader-timestampContainer{align-items:baseline;height:18px;width:288px}@media (max-width:759px){.LiveCommentaryHeader-timestampContainer{flex-direction:column;margin-bottom:16px}}.LiveCommentaryHeader-liveCommentaryHeader{position:relative}.LiveCommentaryHeader-wrapper{flex-grow:0;flex-shrink:0;max-width:calc(100% - 30px);max-width:100%;min-width:calc(100% - 30px);padding-left:2px;position:relative}@media (min-width:760px){.LiveCommentaryHeader-wrapper{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.LiveCommentaryHeader-wrapper{max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media screen and (min-width:1020px) and (-ms-high-contrast:none){.LiveCommentaryHeader-wrapper{max-width:100%;min-width:100%}}@media (min-width:1340px){.LiveCommentaryHeader-wrapper{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:760px){.LiveCommentaryHeader-wrapper{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.LiveCommentaryHeader-wrapper{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.LiveCommentaryHeader-wrapper{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.LiveCommentaryHeader-wrapper{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.LiveCommentaryHeader-wrapper{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.LiveCommentaryHeader-wrapper{flex-grow:0;flex-shrink:0;max-width:calc(88.88889% - 3.33333px);min-width:calc(88.88889% - 3.33333px)}}@media (min-width:1340px){.LiveCommentaryHeader-wrapper{flex-grow:0;flex-shrink:0;max-width:calc(72.72727% + 21.81818px);min-width:calc(72.72727% + 21.81818px);padding-right:70px}}.LiveCommentaryHeader-headerContentContainer{margin:0 auto;position:relative}@media (min-width:760px){.LiveCommentaryHeader-headerContentContainer{padding:0}}@media (min-width:1020px){.LiveCommentaryHeader-headerContentContainer{max-width:960px}}@media (min-width:1340px){.LiveCommentaryHeader-headerContentContainer{max-width:1290px}}.LiveCommentaryHeader-liveBlogTimeStamp>div,.LiveCommentaryHeader-time,.LiveCommentaryHeader-timeHidden{color:#747474;font-size:11px;font-weight:600;letter-spacing:1.2px;margin-bottom:4px;margin-right:4px;text-transform:uppercase}.LiveCommentaryHeader-liveBlogTimeStamp>div time,.LiveCommentaryHeader-time time,.LiveCommentaryHeader-timeHidden time{white-space:nowrap}@media (min-width:760px){.LiveCommentaryHeader-liveBlogTimeStamp>div,.LiveCommentaryHeader-time,.LiveCommentaryHeader-timeHidden{font-size:12px;margin-bottom:6px}}.LiveCommentaryHeader-timeHidden{opacity:0}.LiveCommentaryHeader-datetimeDivider:before{content:"•";display:inline-block;padding:0 3px}.LiveCommentaryHeader-title{color:#171717;font-family:Proxima Nova,sans-serif;font-size:16px;font-style:normal;font-weight:700;letter-spacing:0;line-height:20px;margin:0 0 1px}@media (min-width:760px){.LiveCommentaryHeader-title{font-size:28px;line-height:32px;margin:0 0 6px}}@media (max-width:759px){.LiveCommentaryHeader-about.LiveCommentaryHeader-proUserAboutSection{display:none}}.LiveCommentaryHeader-about>div{color:#747474;font-family:Lyon,serif;font-size:18px;font-style:italic;font-weight:400;line-height:26px;margin-left:0;max-width:unset}@media (max-width:759px){.LiveCommentaryHeader-about>div{font-size:14px;line-height:20px}}.LiveCommentaryHeader-about>div p{margin-bottom:10px;margin-top:10px}.LiveCommentaryHeader-about>div p a{color:#747474;text-decoration:underline}.LiveCommentaryHeader-about>div p a:hover{color:#00a857}.PlayerSlate-slateOverlay{display:block;height:auto;top:0;width:100%;z-index:2}.PlayerSlate-clickable{cursor:pointer}.ProLivePlayer-container{background-color:#171717;position:absolute;top:0;width:100%}.ProLivePlayer-nofs .jw-icon-fullscreen{display:none!important}#jw-cnbc-live-stream-player .jw-text-live:before{color:#ce2b2b}#jw-cnbc-live-stream-player .jw-text-live.jw-dvr-live:before{color:#fff}#jw-cnbc-live-stream-player .jw-text-live.jw-dvr-live{color:#747474}#jw-cnbc-live-stream-player .jw-slider-time .jw-progress{background:#f2f2f2}.LiveCommentaryPlayer-container{background-color:#171717;left:0;padding-top:56.25%;position:relative;top:0;width:100%}@media (max-width:1019px){.LiveCommentaryPlayer-container{margin-bottom:16px}}.LiveCommentaryPopularQuotes-tableContainer{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='100%25' height='100%25' fill='none' stroke='%239E9E9EFF' stroke-dasharray='1, 2' stroke-linecap='square'/%3E%3C/svg%3E");display:flex;flex-direction:column;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:800;height:100%;padding:30px 18px}.LiveCommentaryPopularQuotes-title{border-top:3px solid #cfd8e2;color:#002f6c;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-style:bold;font-weight:700;line-height:20px;max-width:365px;padding:4px 0 20px}.ProLiveCommentary-outerContainer{align-items:center;display:flex;flex-direction:column;margin:0 auto;max-width:1290px;min-height:900px;padding:20px;width:100%}@media (min-width:760px){.ProLiveCommentary-outerContainer{padding:40px 20px}}@media (min-width:1020px){.ProLiveCommentary-outerContainer{padding:40px 0}}.ProLiveCommentary-nonProMainContainer,.ProLiveCommentary-proMainContainer{display:flex;flex-direction:column;width:100%}@media (min-width:1020px){.ProLiveCommentary-nonProMainContainer,.ProLiveCommentary-proMainContainer{flex-direction:row;margin:0 auto;max-width:960px}}@media (min-width:1340px){.ProLiveCommentary-nonProMainContainer,.ProLiveCommentary-proMainContainer{max-width:1290px}}.ProLiveCommentary-nonProMainContainer{flex-direction:column}.ProLiveCommentary-leftColumn{padding:0;width:100%}@media (min-width:1020px){.ProLiveCommentary-leftColumn{width:555px}}@media (min-width:1340px){.ProLiveCommentary-leftColumn{width:770px}}.ProLiveCommentary-rightColumn{height:700px;margin:0 auto;padding:0;width:100%}@media (min-width:1020px){.ProLiveCommentary-rightColumn{height:651px;margin:0 0 20px 26px;width:410px}}@media (min-width:1340px){.ProLiveCommentary-rightColumn{height:794px;width:520px}}.ProLiveCommentary-title{color:#171717;font-family:Proxima Nova,sans-serif;font-size:16px;font-style:normal;font-weight:700;letter-spacing:0;line-height:20px;margin:16px 0 12px}@media (min-width:760px){.ProLiveCommentary-title{font-size:28px;line-height:32px;margin:24px 0 12px}}.ProLiveCommentary-about>div{color:#747474;font-family:Lyon,serif;font-size:18px;font-style:italic;font-weight:400;line-height:26px;margin-left:0;max-width:unset}@media (max-width:759px){.ProLiveCommentary-about>div{font-size:14px;line-height:20px}}.ProLiveCommentary-about>div p{margin-bottom:10px;margin-top:10px}.ProLiveCommentary-about>div p a{color:#747474;text-decoration:underline}.ProLiveCommentary-about>div p a:hover{color:#00a857}@media (max-width:759px){.ProLiveCommentary-proMainContainer .ProLiveCommentary-about{display:none}}.ProLiveCommentary-headerAndMainContainer{display:flex;flex-direction:column;width:100%}.ProLiveCommentary-nonProTextContainer{width:100%}@media (min-width:1020px){.ProLiveCommentary-nonProTextContainer{max-width:648px}}@media (min-width:1340px){.ProLiveCommentary-nonProTextContainer{max-width:739px}}.ProLiveCommentary-nonProTextContainer .ProLiveCommentary-title{margin-top:0}@media (min-width:760px){.ProLiveCommentary-nonProTextContainer .ProLiveCommentary-title{margin-top:2px}}.ProLiveCommentary-nonProTextContainer .ProLiveCommentary-about{margin-bottom:-6px}@media (min-width:760px){.ProLiveCommentary-nonProTextContainer .ProLiveCommentary-about{margin-bottom:-2px}}.ProLiveCommentary-tableTitle{border-top:3px solid #cfd8e2;color:#002f6c;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-style:bold;font-weight:700;line-height:20px;padding:4px 0 20px}.ProLiveCommentary-symbolTablesContainer{display:flex;justify-content:space-between;margin-top:33px}.ProLiveCommentary-symbolTablesContainer>div:first-child{margin-right:9px}.ProLiveCommentary-symbolTablesContainer>div{flex-basis:0;flex-grow:1}@media (max-width:1019px){.ProLiveCommentary-symbolTablesContainer{display:none}}.ProLiveCommentary-symbolTablesContainer .ProLiveCommentary-popularQuotesContainer{margin-bottom:11px}@media (max-width:1339px){.ProLiveCommentary-symbolTablesContainer .ProLiveCommentary-popularQuotesContainer{height:269px}}.ProLiveCommentary-symbolTablesContainer .ProLiveCommentary-watchlistContainer{margin-bottom:11px}.ProLiveCommentary-symbolTablesContainer .ProLiveCommentary-popularQuotesContainer>div,.ProLiveCommentary-symbolTablesContainer .ProLiveCommentary-watchlistContainer>div{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='100%25' height='100%25' fill='none' stroke='%239E9E9EFF' stroke-dasharray='1, 2' stroke-linecap='square'/%3E%3C/svg%3E");padding:14px 18px}@font-face{font-display:swap;font-family:Avenir;font-style:italic;font-weight:500;src:local("~assets/fonts/Avenir/AvenirNext-MediumItalic.eot"),url(https://static-redesign.cnbcfm.com/dist/AvenirNext-MediumItalic.eot) format("eot")}@font-face{font-display:swap;font-family:Avenir;font-style:italic;font-weight:500;src:local("~assets/fonts/Avenir/AvenirNext-MediumItalic.woff"),url(https://static-redesign.cnbcfm.com/dist/AvenirNext-MediumItalic.woff) format("woff")}@font-face{font-display:swap;font-family:Avenir;font-style:italic;font-weight:500;src:local("~assets/fonts/Avenir/AvenirNext-MediumItalic.woff2"),url(https://static-redesign.cnbcfm.com/dist/AvenirNext-MediumItalic.woff2) format("woff2")}@font-face{font-display:swap;font-family:Avenir;font-style:italic;font-weight:600;src:local("~assets/fonts/Avenir/AvenirNext-DemiBoldItalic.eot"),url(https://static-redesign.cnbcfm.com/dist/AvenirNext-DemiBoldItalic.eot) format("eot")}@font-face{font-display:swap;font-family:Avenir;font-style:italic;font-weight:600;src:local("~assets/fonts/Avenir/AvenirNext-DemiBoldItalic.woff"),url(https://static-redesign.cnbcfm.com/dist/AvenirNext-DemiBoldItalic.woff) format("woff")}@font-face{font-display:swap;font-family:Avenir;font-style:italic;font-weight:600;src:local("~assets/fonts/Avenir/AvenirNext-DemiBoldItalic.woff2"),url(https://static-redesign.cnbcfm.com/dist/AvenirNext-DemiBoldItalic.woff2) format("woff2")}@font-face{font-display:swap;font-family:Avenir;font-style:italic;font-weight:700;src:local("~assets/fonts/Avenir/AvenirNext-BoldItalic.eot"),url(https://static-redesign.cnbcfm.com/dist/AvenirNext-BoldItalic.eot) format("eot")}@font-face{font-display:swap;font-family:Avenir;font-style:italic;font-weight:700;src:local("~assets/fonts/Avenir/AvenirNext-BoldItalic.woff"),url(https://static-redesign.cnbcfm.com/dist/AvenirNext-BoldItalic.woff) format("woff")}@font-face{font-display:swap;font-family:Avenir;font-style:italic;font-weight:700;src:local("~assets/fonts/Avenir/AvenirNext-BoldItalic.woff2"),url(https://static-redesign.cnbcfm.com/dist/AvenirNext-BoldItalic.woff2) format("woff2")}@font-face{font-display:swap;font-family:Avenir;font-style:italic;font-weight:800;src:local("~assets/fonts/Avenir/AvenirNext-HeavyItalic.eot"),url(https://static-redesign.cnbcfm.com/dist/AvenirNext-HeavyItalic.eot) format("eot")}@font-face{font-display:swap;font-family:Avenir;font-style:italic;font-weight:800;src:local("~assets/fonts/Avenir/AvenirNext-HeavyItalic.woff"),url(https://static-redesign.cnbcfm.com/dist/AvenirNext-HeavyItalic.woff) format("woff")}@font-face{font-display:swap;font-family:Avenir;font-style:italic;font-weight:800;src:local("~assets/fonts/Avenir/AvenirNext-HeavyItalic.woff2"),url(https://static-redesign.cnbcfm.com/dist/AvenirNext-HeavyItalic.woff2) format("woff2")}@font-face{font-display:swap;font-family:Avenir;font-style:normal;font-weight:400;src:local("~assets/fonts/Avenir/AvenirNext-Regular.eot"),url(https://static-redesign.cnbcfm.com/dist/AvenirNext-Regular.eot) format("eot")}@font-face{font-display:swap;font-family:Avenir;font-style:normal;font-weight:400;src:local("~assets/fonts/Avenir/AvenirNext-Regular.woff"),url(https://static-redesign.cnbcfm.com/dist/AvenirNext-Regular.woff) format("woff")}@font-face{font-display:swap;font-family:Avenir;font-style:normal;font-weight:400;src:local("~assets/fonts/Avenir/AvenirNext-Regular.woff2"),url(https://static-redesign.cnbcfm.com/dist/AvenirNext-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Avenir;font-style:normal;font-weight:500;src:local("~assets/fonts/Avenir/AvenirNext-Medium.eot"),url(https://static-redesign.cnbcfm.com/dist/AvenirNext-Medium.eot) format("eot")}@font-face{font-display:swap;font-family:Avenir;font-style:normal;font-weight:500;src:local("~assets/fonts/Avenir/AvenirNext-Medium.woff"),url(https://static-redesign.cnbcfm.com/dist/AvenirNext-Medium.woff) format("woff")}@font-face{font-display:swap;font-family:Avenir;font-style:normal;font-weight:500;src:local("~assets/fonts/Avenir/AvenirNext-Medium.woff2"),url(https://static-redesign.cnbcfm.com/dist/AvenirNext-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Avenir;font-style:normal;font-weight:600;src:local("~assets/fonts/Avenir/AvenirNext-DemiBold.eot"),url(https://static-redesign.cnbcfm.com/dist/AvenirNext-DemiBold.eot) format("eot")}@font-face{font-display:swap;font-family:Avenir;font-style:normal;font-weight:600;src:local("~assets/fonts/Avenir/AvenirNext-DemiBold.woff"),url(https://static-redesign.cnbcfm.com/dist/AvenirNext-DemiBold.woff) format("woff")}@font-face{font-display:swap;font-family:Avenir;font-style:normal;font-weight:600;src:local("~assets/fonts/Avenir/AvenirNext-DemiBold.woff2"),url(https://static-redesign.cnbcfm.com/dist/AvenirNext-DemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Avenir;font-style:normal;font-weight:700;src:local("~assets/fonts/Avenir/AvenirNext-Bold.eot"),url(https://static-redesign.cnbcfm.com/dist/AvenirNext-Bold.eot) format("eot")}@font-face{font-display:swap;font-family:Avenir;font-style:normal;font-weight:700;src:local("~assets/fonts/Avenir/AvenirNext-Bold.woff"),url(https://static-redesign.cnbcfm.com/dist/AvenirNext-Bold.woff) format("woff")}@font-face{font-display:swap;font-family:Avenir;font-style:normal;font-weight:700;src:local("~assets/fonts/Avenir/AvenirNext-Bold.woff2"),url(https://static-redesign.cnbcfm.com/dist/AvenirNext-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Avenir;font-style:normal;font-weight:800;src:local("~assets/fonts/Avenir/AvenirNext-Heavy.eot"),url(https://static-redesign.cnbcfm.com/dist/AvenirNext-Heavy.eot) format("eot")}@font-face{font-display:swap;font-family:Avenir;font-style:normal;font-weight:800;src:local("~assets/fonts/Avenir/AvenirNext-Heavy.woff"),url(https://static-redesign.cnbcfm.com/dist/AvenirNext-Heavy.woff) format("woff")}@font-face{font-display:swap;font-family:Avenir;font-style:normal;font-weight:800;src:local("~assets/fonts/Avenir/AvenirNext-Heavy.woff2"),url(https://static-redesign.cnbcfm.com/dist/AvenirNext-Heavy.woff2) format("woff2")}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular.eot"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular.eot) format("eot")}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular.woff"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular.woff) format("woff")}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular.woff2"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("Rozha One"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular.woff)}@font-face{font-display:swap;font-family:Lyon;font-style:normal;font-weight:800;src:local("~assets/fonts/Lyon/LyonText-Black-Web.eot"),url(https://static-redesign.cnbcfm.com/dist/LyonText-Black-Web.eot) format("eot")}@font-face{font-display:swap;font-family:Lyon;font-style:normal;font-weight:800;src:local("~assets/fonts/Lyon/LyonText-Black-Web.woff"),url(https://static-redesign.cnbcfm.com/dist/LyonText-Black-Web.woff) format("woff")}@font-face{font-display:swap;font-family:Lyon;font-style:normal;font-weight:800;src:local("~assets/fonts/Lyon/LyonText-Black-Web.woff2"),url(https://static-redesign.cnbcfm.com/dist/LyonText-Black-Web.woff2) format("woff2")}@font-face{font-display:swap;font-family:Lyon;font-style:normal;font-weight:600;src:local("~assets/fonts/Lyon/LyonText-Bold-Web.eot"),url(https://static-redesign.cnbcfm.com/dist/LyonText-Bold-Web.eot) format("eot")}@font-face{font-display:swap;font-family:Lyon;font-style:normal;font-weight:600;src:local("~assets/fonts/Lyon/LyonText-Bold-Web.woff"),url(https://static-redesign.cnbcfm.com/dist/LyonText-Bold-Web.woff) format("woff")}@font-face{font-display:swap;font-family:Lyon;font-style:normal;font-weight:600;src:local("~assets/fonts/Lyon/LyonText-Bold-Web.woff2"),url(https://static-redesign.cnbcfm.com/dist/LyonText-Bold-Web.woff2) format("woff2")}@font-face{font-display:swap;font-family:Lyon;font-style:normal;font-weight:400;src:local("~assets/fonts/Lyon/LyonText-Regular-Web.eot"),url(https://static-redesign.cnbcfm.com/dist/LyonText-Regular-Web.eot) format("eot")}@font-face{font-display:swap;font-family:Lyon;font-style:normal;font-weight:400;src:local("~assets/fonts/Lyon/LyonText-Regular-Web.woff"),url(https://static-redesign.cnbcfm.com/dist/LyonText-Regular-Web.woff) format("woff")}@font-face{font-display:swap;font-family:Lyon;font-style:normal;font-weight:400;src:local("~assets/fonts/Lyon/LyonText-Regular-Web.woff2"),url(https://static-redesign.cnbcfm.com/dist/LyonText-Regular-Web.woff2) format("woff2")}@font-face{font-display:swap;font-family:Lyon;font-style:italic;font-weight:400;src:local("~assets/fonts/Lyon/LyonText-RegularItalic-Web.eot"),url(https://static-redesign.cnbcfm.com/dist/LyonText-RegularItalic-Web.eot) format("eot")}@font-face{font-display:swap;font-family:Lyon;font-style:italic;font-weight:400;src:local("~assets/fonts/Lyon/LyonText-RegularItalic-Web.woff"),url(https://static-redesign.cnbcfm.com/dist/LyonText-RegularItalic-Web.woff) format("woff")}@font-face{font-display:swap;font-family:Lyon;font-style:italic;font-weight:400;src:local("~assets/fonts/Lyon/LyonText-RegularItalic-Web.woff2"),url(https://static-redesign.cnbcfm.com/dist/LyonText-RegularItalic-Web.woff2) format("woff2")}@font-face{font-display:swap;font-family:Lyon;font-style:normal;font-weight:500;src:local("~assets/fonts/Lyon/LyonText-Semibold-Web.eot"),url(https://static-redesign.cnbcfm.com/dist/LyonText-Semibold-Web.eot) format("eot")}@font-face{font-display:swap;font-family:Lyon;font-style:normal;font-weight:500;src:local("~assets/fonts/Lyon/LyonText-Semibold-Web.woff"),url(https://static-redesign.cnbcfm.com/dist/LyonText-Semibold-Web.woff) format("woff")}@font-face{font-display:swap;font-family:Lyon;font-style:normal;font-weight:500;src:local("~assets/fonts/Lyon/LyonText-Semibold-Web.woff2"),url(https://static-redesign.cnbcfm.com/dist/LyonText-Semibold-Web.woff2) format("woff2")}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:800;src:local("~assets/fonts/Averta/361747_2_0.eot"),url(https://static-redesign.cnbcfm.com/dist/361747_2_0.eot) format("eot")}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:800;src:local("~assets/fonts/Averta/361747_2_0.eot?#iefix"),url(https://static-redesign.cnbcfm.com/dist/361747_2_0.eot?#iefix) format("embedded-opentype")}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:800;src:local("~assets/fonts/Averta/361747_2_0.ttf"),url(https://static-redesign.cnbcfm.com/dist/361747_2_0.ttf) format("ttf")}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:800;src:local("~assets/fonts/Averta/361747_2_0.woff"),url(https://static-redesign.cnbcfm.com/dist/361747_2_0.woff) format("woff")}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:800;src:local("~assets/fonts/Averta/361747_2_0.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_2_0.woff2) format("woff2")}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:600;src:local("~assets/fonts/Averta/361747_0_0.eot"),url(https://static-redesign.cnbcfm.com/dist/361747_0_0.eot) format("eot")}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:600;src:local("~assets/fonts/Averta/361747_0_0.eot?#iefix"),url(https://static-redesign.cnbcfm.com/dist/361747_0_0.eot?#iefix) format("embedded-opentype")}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:600;src:local("~assets/fonts/Averta/361747_0_0.ttf"),url(https://static-redesign.cnbcfm.com/dist/361747_0_0.ttf) format("ttf")}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:600;src:local("~assets/fonts/Averta/361747_0_0.woff"),url(https://static-redesign.cnbcfm.com/dist/361747_0_0.woff) format("woff")}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:600;src:local("~assets/fonts/Averta/361747_0_0.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_0_0.woff2) format("woff2")}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:700;src:local("~assets/fonts/Averta/361747_1_0.eot"),url(https://static-redesign.cnbcfm.com/dist/361747_1_0.eot) format("eot")}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:700;src:local("~assets/fonts/Averta/361747_1_0.eot?#iefix"),url(https://static-redesign.cnbcfm.com/dist/361747_1_0.eot?#iefix) format("embedded-opentype")}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:700;src:local("~assets/fonts/Averta/361747_1_0.ttf"),url(https://static-redesign.cnbcfm.com/dist/361747_1_0.ttf) format("ttf")}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:700;src:local("~assets/fonts/Averta/361747_1_0.woff"),url(https://static-redesign.cnbcfm.com/dist/361747_1_0.woff) format("woff")}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:700;src:local("~assets/fonts/Averta/361747_1_0.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_1_0.woff2) format("woff2")}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:400;src:local("~assets/fonts/Averta/361747_3_0.eot"),url(https://static-redesign.cnbcfm.com/dist/361747_3_0.eot) format("eot")}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:400;src:local("~assets/fonts/Averta/361747_3_0.eot?#iefix"),url(https://static-redesign.cnbcfm.com/dist/361747_3_0.eot?#iefix) format("embedded-opentype")}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:400;src:local("~assets/fonts/Averta/361747_3_0.ttf"),url(https://static-redesign.cnbcfm.com/dist/361747_3_0.ttf) format("ttf")}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:400;src:local("~assets/fonts/Averta/361747_3_0.woff"),url(https://static-redesign.cnbcfm.com/dist/361747_3_0.woff) format("woff")}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:400;src:local("~assets/fonts/Averta/361747_3_0.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_3_0.woff2) format("woff2")}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:800;src:local("~assets/fonts/ProximaNova/351C86_0_0.eot"),url(https://static-redesign.cnbcfm.com/dist/351C86_0_0.eot) format("eot")}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:800;src:local("~assets/fonts/ProximaNova/351C86_0_0.eot?#iefix"),url(https://static-redesign.cnbcfm.com/dist/351C86_0_0.eot?#iefix) format("embedded-opentype")}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:800;src:local("~assets/fonts/ProximaNova/351C86_0_0.ttf"),url(https://static-redesign.cnbcfm.com/dist/351C86_0_0.ttf) format("truetype")}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:800;src:local("~assets/fonts/ProximaNova/351C86_0_0.woff"),url(https://static-redesign.cnbcfm.com/dist/351C86_0_0.woff) format("woff")}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:800;src:local("~assets/fonts/ProximaNova/351C86_0_0.woff2"),url(https://static-redesign.cnbcfm.com/dist/351C86_0_0.woff2) format("woff2")}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:600;src:local("~assets/fonts/ProximaNova/351C86_1_0.eot"),url(https://static-redesign.cnbcfm.com/dist/351C86_1_0.eot) format("eot")}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:600;src:local("~assets/fonts/ProximaNova/351C86_1_0.eot?#iefix"),url(https://static-redesign.cnbcfm.com/dist/351C86_1_0.eot?#iefix) format("embedded-opentype")}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:600;src:local("~assets/fonts/ProximaNova/351C86_1_0.ttf"),url(https://static-redesign.cnbcfm.com/dist/351C86_1_0.ttf) format("truetype")}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:600;src:local("~assets/fonts/ProximaNova/351C86_1_0.woff"),url(https://static-redesign.cnbcfm.com/dist/351C86_1_0.woff) format("woff")}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:600;src:local("~assets/fonts/ProximaNova/351C86_1_0.woff2"),url(https://static-redesign.cnbcfm.com/dist/351C86_1_0.woff2) format("woff2")}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:700;src:local("~assets/fonts/ProximaNova/351C86_2_0.eot"),url(https://static-redesign.cnbcfm.com/dist/351C86_2_0.eot) format("eot")}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:700;src:local("~assets/fonts/ProximaNova/351C86_2_0.eot?#iefix"),url(https://static-redesign.cnbcfm.com/dist/351C86_2_0.eot?#iefix) format("embedded-opentype")}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:700;src:local("~assets/fonts/ProximaNova/351C86_2_0.ttf"),url(https://static-redesign.cnbcfm.com/dist/351C86_2_0.ttf) format("truetype")}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:700;src:local("~assets/fonts/ProximaNova/351C86_2_0.woff"),url(https://static-redesign.cnbcfm.com/dist/351C86_2_0.woff) format("woff")}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:700;src:local("~assets/fonts/ProximaNova/351C86_2_0.woff2"),url(https://static-redesign.cnbcfm.com/dist/351C86_2_0.woff2) format("woff2")}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:400;src:local("~assets/fonts/ProximaNova/351C86_3_0.eot"),url(https://static-redesign.cnbcfm.com/dist/351C86_3_0.eot) format("eot")}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:400;src:local("~assets/fonts/ProximaNova/351C86_3_0.eot?#iefix"),url(https://static-redesign.cnbcfm.com/dist/351C86_3_0.eot?#iefix) format("embedded-opentype")}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:400;src:local("~assets/fonts/ProximaNova/351C86_3_0.ttf"),url(https://static-redesign.cnbcfm.com/dist/351C86_3_0.ttf) format("truetype")}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:400;src:local("~assets/fonts/ProximaNova/351C86_3_0.woff"),url(https://static-redesign.cnbcfm.com/dist/351C86_3_0.woff) format("woff")}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:400;src:local("~assets/fonts/ProximaNova/351C86_3_0.woff2"),url(https://static-redesign.cnbcfm.com/dist/351C86_3_0.woff2) format("woff2")}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:500;src:local("~assets/fonts/ProximaNova/351C86_4_0.eot"),url(https://static-redesign.cnbcfm.com/dist/351C86_4_0.eot) format("eot")}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:500;src:local("~assets/fonts/ProximaNova/351C86_4_0.eot?#iefix"),url(https://static-redesign.cnbcfm.com/dist/351C86_4_0.eot?#iefix) format("embedded-opentype")}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:500;src:local("~assets/fonts/ProximaNova/351C86_4_0.ttf"),url(https://static-redesign.cnbcfm.com/dist/351C86_4_0.ttf) format("truetype")}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:500;src:local("~assets/fonts/ProximaNova/351C86_4_0.woff"),url(https://static-redesign.cnbcfm.com/dist/351C86_4_0.woff) format("woff")}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:500;src:local("~assets/fonts/ProximaNova/351C86_4_0.woff2"),url(https://static-redesign.cnbcfm.com/dist/351C86_4_0.woff2) format("woff2")}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular.ttf"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular.ttf) format("ttf")}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("Rozha One"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular.ttf)}@font-face{font-display:swap;font-family:Lato;font-style:normal;font-weight:400;src:local("~assets/fonts/Lato/Lato-Regular.woff2"),url(https://static-redesign.cnbcfm.com/dist/Lato-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Lato;font-style:normal;font-weight:700;src:local("~assets/fonts/Lato/Lato-Bold.woff2"),url(https://static-redesign.cnbcfm.com/dist/Lato-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Lato;font-style:normal;font-weight:900;src:local("~assets/fonts/Lato/Lato-Black.woff2"),url(https://static-redesign.cnbcfm.com/dist/Lato-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Lato;font-style:italic;font-weight:400;src:local("~assets/fonts/Lato/Lato-RegularItalic.woff2"),url(https://static-redesign.cnbcfm.com/dist/Lato-RegularItalic.woff2) format("woff2")}@font-face{font-display:swap;font-family:Lato;font-style:italic;font-weight:700;src:local("~assets/fonts/Lato/Lato-BoldItalic.woff2"),url(https://static-redesign.cnbcfm.com/dist/Lato-BoldItalic.woff2) format("woff2")}@font-face{font-display:swap;font-family:Lato;font-style:italic;font-weight:900;src:local("~assets/fonts/Lato/Lato-BlackItalic.woff2"),url(https://static-redesign.cnbcfm.com/dist/Lato-BlackItalic.woff2) format("woff2")}.SearchGroup-container{border-top:6px solid #002f6c;display:block;width:100%}.SearchGroup-container.SearchGroup-railVariant{margin-bottom:0}@media (min-width:760px){.SearchGroup-container.SearchGroup-railVariant{margin-bottom:20px}}@media (min-width:1020px){.SearchGroup-container.SearchGroup-railVariant{margin-bottom:20px}}.SearchGroup-header{align-items:flex-start;background:#fff;display:flex;flex-direction:row;justify-content:space-between;padding:10px 0}@media (min-width:760px){.SearchGroup-header{align-items:center}}.SearchGroup-sectionTitle{color:#002f6c;font-size:22px;font-weight:800;line-height:1.2;margin:0;text-transform:uppercase}@media (min-width:1020px){.SearchGroup-sectionTitle{font-size:14px}}.SearchGroup-railVariant .SearchGroup-sectionTitle{font-size:18px;font-weight:800}@media (min-width:760px){.SearchGroup-railVariant .SearchGroup-sectionTitle{font-size:20px}}@media (min-width:1340px){.SearchGroup-railVariant .SearchGroup-sectionTitle{font-size:30px}}.SearchGroup-contentButton{color:#002f6c;display:inline-block;font-size:12px;font-weight:700;letter-spacing:1px;margin-top:10px;text-transform:uppercase;vertical-align:middle;white-space:nowrap}.SearchGroup-contentButton i{font-style:normal;margin-right:3px}.SearchGroup-railVariant .SearchGroup-contentButton{margin:10px 0 0}@media (min-width:760px){.SearchGroup-contentButton{margin:0 0 0 25px}.SearchGroup-railVariant .SearchGroup-contentButton{margin:0 0 0 auto}}@media (min-width:1020px){.SearchGroup-contentButton{line-height:1}.SearchGroup-railVariant .SearchGroup-contentButton{margin:5px 0 0}}@media (min-width:1340px){.SearchGroup-railVariant .SearchGroup-contentButton{flex-grow:0;margin:0 0 0 24px}}.SearchGroup-headerButton{margin:0 0 0 50px}.SearchGroup-headerButton .icon-short-arrow-right{display:inline-block;margin-left:3px;margin-right:0;vertical-align:middle}@media (min-width:760px){.SearchGroup-headerButton{margin-left:auto}}.SearchGroup-content{position:relative}.SearchGroup-item{border-top:1px dashed #9b9b9b;display:flex;flex-direction:row;flex-wrap:wrap;padding:8px 5px}.SearchGroup-item:nth-of-type(1n+6){display:none}.SearchGroup-item:nth-child(2n){background-color:#f2f2f2}@media (min-width:360px){.SearchGroup-item:nth-of-type(1n+6){display:none}}@media (min-width:760px){.SearchGroup-item{flex-wrap:nowrap;padding:20px 5px}.SearchGroup-item:nth-of-type(1n+4){display:block}.SearchGroup-item:nth-of-type(1n+6){display:none}.SearchGroup-railVariant .SearchGroup-item{flex-wrap:wrap}}@media (min-width:1020px){.SearchGroup-item{min-height:53px;padding:10px}}@media (min-width:1340px){.SearchGroup-railVariant .SearchGroup-item{flex-wrap:nowrap}}.SearchGroup-itemIdentifier{display:block;flex-grow:1;float:left;min-width:50%;width:60%}@media (min-width:760px){.SearchGroup-itemIdentifier{min-width:0;width:auto}.SearchGroup-railVariant .SearchGroup-itemIdentifier{max-width:42%;min-width:42%}}@media (min-width:1020px){.SearchGroup-railVariant .SearchGroup-itemIdentifier{max-width:50%;min-width:50%}}@media (min-width:1340px){.SearchGroup-railVariant .SearchGroup-itemIdentifier{max-width:100%;min-width:0}}.SearchGroup-itemTitle{color:#171717;display:block;font-size:16px;font-weight:800;line-height:1.25;text-transform:uppercase}.SearchGroup-itemTitle:focus,.SearchGroup-itemTitle:hover{color:#005594}.SearchGroup-itemSubTitle{color:#747474;display:block;font-size:14px;line-height:1.4;margin-top:5px}@media (min-width:1020px){.SearchGroup-itemSubTitle{font-size:12px;line-height:1}}.SearchGroup-railVariant .SearchGroup-itemSubTitle{font-weight:500}.SearchGroup-marketChange{color:#747474;display:block;font-size:14px;font-weight:600;line-height:1.42;margin-left:auto;min-width:40%;text-align:right;text-transform:uppercase}@media (min-width:760px){.SearchGroup-marketChange{min-width:0}}@media (min-width:1020px){.SearchGroup-marketChange{font-size:12px;line-height:1}.SearchGroup-railVariant .SearchGroup-marketChange{max-width:50%;min-width:50%}}@media (min-width:1340px){.SearchGroup-railVariant .SearchGroup-marketChange{max-width:100%;min-width:0}}.SearchGroup-marketChangeUp{color:#008456}.SearchGroup-marketChangeDown{color:#ce2b2b}.SearchGroup-change,.SearchGroup-change_pct{display:block}.SearchGroup-change_pct{margin-top:5px}.SearchGroup-label{color:#747474;display:block;font-size:14px;font-weight:600;line-height:1.42;margin-left:auto;text-align:right;text-transform:uppercase}@media (min-width:1020px){.SearchGroup-label{font-size:12px;line-height:1}}.SearchGroup-noSavedData{border-top:1px dashed #9b9b9b;display:block;padding:20px 0}@media (min-width:1020px){.SearchGroup-noSavedData{padding:10px 0 0}}@media (min-width:1340px){.SearchGroup-noSavedData{padding-top:18px}}.SearchGroup-callToActionTitle{color:#171717;display:block;font-size:20px;font-weight:700;line-height:1.2;margin:0}.SearchGroup-callToActionDescription{color:#5d5d5d;display:block;font-size:14px;font-weight:500;line-height:1.28;margin:10px 0 20px}.SearchGroup-callToActionDescription .SearchGroup-emphasized{font-weight:600;text-transform:uppercase}@media (min-width:760px){.SearchGroup-callToActionDescription{font-size:12px;line-height:1.33;margin:10px 0 30px;max-width:382px;width:70%}}@media (min-width:1020px){.SearchGroup-callToActionDescription{font-size:12px;line-height:1.33;margin:10px 0 20px;max-width:100%;width:100%}}.SearchGroup-callToActionButton{align-items:center;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#002f6c;border:1px solid #002f6c;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.SearchGroup-callToActionButton>span{display:block;line-height:12px}.SearchGroup-callToActionButton [class*=" icon-"],.SearchGroup-callToActionButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.SearchGroup-callToActionButton [class*=" icon-"]:before,.SearchGroup-callToActionButton [class^=icon-]:before{line-height:12px}.SearchGroup-callToActionButton:focus,.SearchGroup-callToActionButton:hover{background-color:#2077b6;border-color:#2077b6;color:#fff}.SearchGroup-callToActionButton[class*=touchButton]:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}@media (hover:hover){.SearchGroup-callToActionButton[class*=touchButton]:hover{background-color:#2077b6;border-color:#2077b6;color:#fff}}@media (min-width:760px){.SearchGroup-callToActionButton{max-width:236px;padding:0 30px;width:auto}}.SearchGroup-noResults{border-top:1px dotted #9b9b9b;color:#5d5d5d;font-size:14px;font-weight:500;padding-top:10px}.SearchGroup-noResults span{font-weight:700}.SearchResult-searchResult{border-bottom:1px dashed #9b9b9b;margin-bottom:20px;padding-bottom:20px}@media (min-width:760px){.SearchResult-searchResult{display:flex;flex-direction:row;margin-bottom:30px;padding-bottom:30px}}@media (min-width:1020px){.SearchResult-searchResult{margin-bottom:40px;padding-bottom:40px}}@media (min-width:1340px){.SearchResult-searchResult{margin-left:-30px}}.SearchResult-searchResult:last-child{border-bottom:0;padding-bottom:0}.SearchResult-searchResult.SearchResult-standardVariant{justify-content:space-between}@media (min-width:1340px){.SearchResult-searchResult.SearchResult-standardVariant{margin-left:0}}.SearchResult-searchResultCard{margin-bottom:10px}.SearchResult-standardVariant .SearchResult-searchResultCard{height:150px;padding-bottom:50%}@media (min-width:760px){.SearchResult-searchResultCard{margin-bottom:-20px;order:2;width:calc(33.33333% - 15px)}.SearchResult-standardVariant .SearchResult-searchResultCard{flex:1 1 300px;padding-bottom:inherit}}@media (min-width:1020px){.SearchResult-standardVariant .SearchResult-searchResultCard{margin-bottom:20px}}@media (min-width:1340px){.SearchResult-searchResultCard{width:calc(30% - 15px)}.SearchResult-standardVariant .SearchResult-searchResultCard{flex:1 1 300px}}.PlayButton-container{border-top:6px solid #fcb700;height:100%;left:0;position:absolute;top:0;width:100%;z-index:1}.PlayButton-base{align-items:center;background-color:#fcb700;color:#fff;display:flex;font-size:12px;height:40px;justify-content:center;position:absolute;right:0;top:-5px;transition:all .15s linear;width:40px;z-index:1}.PlayButton-base:focus .PlayButton-flyout,.PlayButton-base:hover .PlayButton-flyout,.PlayButton-basebutton:focus .PlayButton-flyout,.PlayButton-basebutton:hover .PlayButton-flyout{color:#071d39;transform:scaleX(1);transition:color .15s linear .15s,transform .15s linear}.PlayButton-flyout{background-color:#fcb700;color:#071d39;font-size:9px;font-weight:800;height:100%;letter-spacing:1px;line-height:1;position:absolute;right:35px;text-align:left;text-transform:uppercase;top:0;transform:scaleX(0);transform-origin:center right;transition:color .15s linear,transform .15s linear .15s;width:90px;z-index:1}.PlayButton-flyout,.PlayButton-icon{align-items:center;display:flex;justify-content:center}.PlayButton-icon{border:2px solid #fcb700;height:30px;transition:border .15s linear;width:30px;z-index:2}.PlayButton-icon:focus,.PlayButton-icon:hover,.PlayButton-iconbutton:focus,.PlayButton-iconbutton:hover{border:2px solid #fff}@media (min-width:760px){.SearchResult-searchResultContent{margin-right:30px;width:calc(66.66667% - 15px)}.SearchResult-standardVariant .SearchResult-searchResultContent{flex:1 1 340px}}@media (min-width:1340px){.SearchResult-searchResultContent{width:calc(70% - 15px)}.SearchResult-standardVariant .SearchResult-searchResultContent{flex:1 0 410px}}.SearchResult-searchHighlight{background-color:#e7ecf1}.SearchResult-searchResultEyebrow{color:#732634;font-size:12px;font-weight:500;letter-spacing:2px;line-height:1.116;margin-bottom:10px;text-transform:uppercase}.SearchResult-standardVariant .SearchResult-searchResultEyebrow{color:#005594;font-weight:700;letter-spacing:1px}.SearchResult-searchResultTitle{color:#171717;font-family:Lyon,Helvetica,Arial,sans-serif;font-size:20px;font-weight:500;line-height:1.3;margin-bottom:10px}.SearchResult-standardVariant .SearchResult-searchResultTitle{font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:24px;font-weight:600}@media (min-width:1020px){.SearchResult-standardVariant .SearchResult-searchResultTitle{margin-bottom:10px}.SearchResult-searchResultTitle{font-size:26px;line-height:1.23;margin-bottom:20px}}.SearchResult-searchResultPreview{color:#5d5d5d;font-family:Lyon,Helvetica,Arial,sans-serif;font-size:18px;font-weight:400;line-height:1.611;margin-bottom:0;margin-top:0}.SearchResult-standardVariant .SearchResult-searchResultPreview{margin-bottom:10px}.SearchResult-byline{font-size:12px}.SearchResult-author{color:#005594;font-family:Lyon,Helvetica,Arial,sans-serif;font-weight:600;letter-spacing:1px}.SearchResult-publishedDate{color:#747474;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-weight:600;text-transform:uppercase}.SearchResult-searchResultFrom{color:#b2b2b2;font-size:12px;font-weight:500;letter-spacing:2px;line-height:1.33;margin-top:15px;text-transform:uppercase}@media (min-width:1020px){.SearchResult-searchResultFrom{margin-top:25px}}.SearchResult-searchResultFrom a{color:#000}.SearchResult-searchResultFrom a:hover{color:#d1bb7e}.SearchResult-searchResultImage{background-position:50% 50%;background-size:cover;margin-bottom:10px;padding-bottom:50%;width:100%}@media (min-width:760px){.SearchResult-searchResultImage{margin-bottom:20px}}.SearchDropDown-dropDownContainer .Card-mediaContainer{background-position:50% 50%;background-size:cover;padding-bottom:50%}.SearchDropDown-dropDownContainer .Card-mediaContainer .Card-placeholder{position:absolute}
/*# sourceMappingURL=source-maps/main-10328a92c7b164509e08.css.map*/
.BrandPageWrapper-contentWrapper{margin-top:45px;overflow:visible;position:relative}@media (min-width:1020px){.BrandPageWrapper-contentWrapper{overflow:visible}}.BrandPageWrapper-contentWrapper.BrandPageWrapper-xfinity{margin-top:89px}.BrandPageWrapper-contentWrapper.BrandPageWrapper-countDownClock{margin-top:112px}.BrandPageWrapper-contentWrapper.BrandPageWrapper-fiveThings{margin-top:85px}.BrandPageWrapper-contentWrapper.BrandPageWrapper-xfinity.BrandPageWrapper-fiveThings{margin-top:130px}.BrandPageWrapper-contentWrapper.BrandPageWrapper-fiveThings.BrandPageWrapper-countDownClock{margin-top:152px}@media (min-width:760px){.BrandPageWrapper-contentWrapper{margin-top:85px}.BrandPageWrapper-contentWrapper.BrandPageWrapper-xfinity{margin-top:114px}.BrandPageWrapper-contentWrapper.BrandPageWrapper-fiveThings{margin-top:125px}.BrandPageWrapper-contentWrapper.BrandPageWrapper-fiveThings.BrandPageWrapper-xfinity{margin-top:156px}.BrandPageWrapper-contentWrapper.BrandPageWrapper-fiveThings.BrandPageWrapper-xfinity.BrandPageWrapper-countDownClock{margin-top:196px}.BrandPageWrapper-contentWrapper.BrandPageWrapper-countDownClock{margin-top:112px}.BrandPageWrapper-contentWrapper.BrandPageWrapper-countDownClock.BrandPageWrapper-xfinity{margin-top:156px}}.BrandPageWrapper-contentWrapper.BrandPageWrapper-newsAlert{margin-top:85px}.BrandPageWrapper-contentWrapper.BrandPageWrapper-newsAlert.BrandPageWrapper-xfinity{margin-top:129px}.BrandPageWrapper-contentWrapper.BrandPageWrapper-newsAlert.BrandPageWrapper-liveAlert{margin-top:125px}.BrandPageWrapper-contentWrapper.BrandPageWrapper-newsAlert.BrandPageWrapper-countDownClock{margin-top:192px}.BrandPageWrapper-contentWrapper.BrandPageWrapper-newsAlert.BrandPageWrapper-fiveThings{margin-top:125px}.BrandPageWrapper-contentWrapper.BrandPageWrapper-newsAlert.BrandPageWrapper-xfinity.BrandPageWrapper-fiveThings,.BrandPageWrapper-contentWrapper.BrandPageWrapper-newsAlert.BrandPageWrapper-xfinity.BrandPageWrapper-liveAlert{margin-top:169px}.BrandPageWrapper-contentWrapper.BrandPageWrapper-newsAlert.BrandPageWrapper-xfinity.BrandPageWrapper-liveAlert.BrandPageWrapper-fiveThings{margin-top:209px}@media (min-width:760px){.BrandPageWrapper-contentWrapper.BrandPageWrapper-newsAlert{margin-top:125px}.BrandPageWrapper-contentWrapper.BrandPageWrapper-newsAlert.BrandPageWrapper-xfinity{margin-top:154px}.BrandPageWrapper-contentWrapper.BrandPageWrapper-newsAlert.BrandPageWrapper-fiveThings,.BrandPageWrapper-contentWrapper.BrandPageWrapper-newsAlert.BrandPageWrapper-liveAlert{margin-top:165px}.BrandPageWrapper-contentWrapper.BrandPageWrapper-newsAlert.BrandPageWrapper-countDownClock{margin-top:152px}.BrandPageWrapper-contentWrapper.BrandPageWrapper-newsAlert.BrandPageWrapper-countDownClock.BrandPageWrapper-xfinity{margin-top:196px}.BrandPageWrapper-contentWrapper.BrandPageWrapper-newsAlert.BrandPageWrapper-xfinity.BrandPageWrapper-fiveThings,.BrandPageWrapper-contentWrapper.BrandPageWrapper-newsAlert.BrandPageWrapper-xfinity.BrandPageWrapper-liveAlert{margin-top:194px}.BrandPageWrapper-contentWrapper.BrandPageWrapper-newsAlert.BrandPageWrapper-xfinity.BrandPageWrapper-fiveThings.BrandPageWrapper-countDownClock{margin-top:236px}}.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert{margin-top:85px}@media (min-width:360px){.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert.BrandPageWrapper-xfinity{margin-top:128px}}@media (min-width:760px){.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert.BrandPageWrapper-xfinity{margin-top:154px}}@media (min-width:1020px){.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert.BrandPageWrapper-xfinity{margin-top:154px}}@media (min-width:1340px){.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert.BrandPageWrapper-xfinity{margin-top:154px}}@media (min-width:360px){.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert.BrandPageWrapper-newsAlert{margin-top:125px}}@media (min-width:760px){.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert.BrandPageWrapper-newsAlert{margin-top:165px}}@media (min-width:1020px){.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert.BrandPageWrapper-newsAlert{margin-top:165px}}@media (min-width:1340px){.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert.BrandPageWrapper-newsAlert{margin-top:165px}}.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert.BrandPageWrapper-newsAlert.BrandPageWrapper-countDownClock{margin-top:192px}.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert.BrandPageWrapper-newsAlert.BrandPageWrapper-countDownClock.BrandPageWrapper-xfinity{margin-top:236px}@media screen and (max-width:500px){.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert.BrandPageWrapper-newsAlert.BrandPageWrapper-liveAlertAd{margin-top:165px}}@media (min-width:360px){.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert.BrandPageWrapper-fiveThings{margin-top:125px}}@media (min-width:760px){.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert.BrandPageWrapper-fiveThings{margin-top:165px}}@media (min-width:1020px){.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert.BrandPageWrapper-fiveThings{margin-top:165px}}@media (min-width:1340px){.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert.BrandPageWrapper-fiveThings{margin-top:165px}}@media screen and (max-width:500px){.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert.BrandPageWrapper-fiveThings.BrandPageWrapper-liveAlertAd{margin-top:165px}}.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert.BrandPageWrapper-fiveThings.BrandPageWrapper-countDownClock,.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert.BrandPageWrapper-fiveThings.BrandPageWrapper-newsAlert{margin-top:192px}@media (max-width:759px){.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert.BrandPageWrapper-fiveThings.BrandPageWrapper-newsAlert{margin-top:165px}}@media screen and (max-width:500px){.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert.BrandPageWrapper-fiveThings.BrandPageWrapper-newsAlert.BrandPageWrapper-liveAlertAd{margin-top:205px}}.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert.BrandPageWrapper-fiveThings.BrandPageWrapper-newsAlert.BrandPageWrapper-xfinity{margin-top:236px}@media (min-width:360px){.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert.BrandPageWrapper-fiveThings.BrandPageWrapper-newsAlert.BrandPageWrapper-xfinity{margin-top:209px}}@media (min-width:760px){.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert.BrandPageWrapper-fiveThings.BrandPageWrapper-newsAlert.BrandPageWrapper-xfinity{margin-top:234px}.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert.BrandPageWrapper-fiveThings.BrandPageWrapper-newsAlert.BrandPageWrapper-xfinity.BrandPageWrapper-countDownClock{margin-top:276px}}.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert.BrandPageWrapper-fiveThings.BrandPageWrapper-newsAlert.BrandPageWrapper-countDownClock{margin-top:232px}.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert.BrandPageWrapper-fiveThings.BrandPageWrapper-newsAlert.BrandPageWrapper-countDownClock.BrandPageWrapper-xfinity{margin-top:276px}.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert.BrandPageWrapper-countDownClock{margin-top:152px}.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert.BrandPageWrapper-countDownClock.BrandPageWrapper-xfinity{margin-top:196px}@media (min-width:760px){.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert{margin-top:125px}}@media (min-width:1020px){.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert .Ad-adWrapperSticky,.BrandPageWrapper-contentWrapper.BrandPageWrapper-newsAlert .Ad-adWrapperSticky{top:120px}.BrandPageWrapper-contentWrapper.BrandPageWrapper-fiveThings .Ad-adWrapperSticky,.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert .Ad-adWrapperSticky,.BrandPageWrapper-contentWrapper.BrandPageWrapper-newsAlert .Ad-adWrapperSticky{top:160px}.BrandPageWrapper-contentWrapper.BrandPageWrapper-xfinity .Ad-adWrapperSticky{top:124px}.BrandPageWrapper-contentWrapper.BrandPageWrapper-countDownClock .Ad-adWrapperSticky{top:122px}.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert.BrandPageWrapper-fiveThings .Ad-adWrapperSticky,.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert.BrandPageWrapper-newsAlert .Ad-adWrapperSticky,.BrandPageWrapper-contentWrapper.BrandPageWrapper-newsAlert.BrandPageWrapper-fiveThings .Ad-adWrapperSticky{top:160px}.BrandPageWrapper-contentWrapper.BrandPageWrapper-fiveThings.BrandPageWrapper-xfinity .Ad-adWrapperSticky,.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert.BrandPageWrapper-xfinity .Ad-adWrapperSticky,.BrandPageWrapper-contentWrapper.BrandPageWrapper-newsAlert.BrandPageWrapper-xfinity .Ad-adWrapperSticky{top:164px}.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert.BrandPageWrapper-countDownClock .Ad-adWrapperSticky,.BrandPageWrapper-contentWrapper.BrandPageWrapper-newsAlert.BrandPageWrapper-countDownClock .Ad-adWrapperSticky{top:162px}.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert.BrandPageWrapper-newsAlert.BrandPageWrapper-countDownClock .Ad-adWrapperSticky{top:204px}.BrandPageWrapper-contentWrapper.BrandPageWrapper-liveAlert.BrandPageWrapper-newsAlert.BrandPageWrapper-countDownClock.BrandPageWrapper-xfinity .Ad-adWrapperSticky{top:246px}}.BrandPageWrapper-contentWrapperClock{margin-top:112px}.BrandPageWrapper-mobileWebview{margin-bottom:100px;margin-top:0}
/*# sourceMappingURL=source-maps/1990-73263bc035a29ad55fb8.css.map*/
.nav-menu-navMenu,.nav-menu-navMenuIC,.nav-menu-navMenuPro{align-items:center;background-color:#005594;display:flex;flex-direction:row;height:54px;left:0;overflow:hidden;padding:0 20px;z-index:99}@media (min-width:760px){.nav-menu-navMenu,.nav-menu-navMenuIC,.nav-menu-navMenuPro{padding:0 20px}}@media (min-width:1020px){.nav-menu-navMenu,.nav-menu-navMenuIC,.nav-menu-navMenuPro{background-color:transparent;height:35px;padding:0 15px 0 30px}}.nav-menu-navMenuPro{background-color:#27313c;transition:background-color .5s ease}.nav-menu-navMenuIC{background-color:#071d39;transition:background-color .5s ease}.nav-menu-navMenu,.nav-menu-navMenuIC,.nav-menu-navMenuPro{bottom:0;padding-left:8px;position:fixed;transition:background-color .25s;width:100%}@media (max-width:1019px){.nav-menu-navMenu,.nav-menu-navMenuIC,.nav-menu-navMenuPro{padding-left:28px}}@media (min-width:760px){.nav-menu-navMenu,.nav-menu-navMenuIC,.nav-menu-navMenuPro{background-color:transparent;height:36px;overflow:visible;position:absolute;top:45px;transition:top .25s,height .25s,width .25s}}@media (min-width:1020px){.nav-menu-navMenu,.nav-menu-navMenuIC,.nav-menu-navMenuPro{position:absolute;top:45px;width:70%;z-index:999}.nav-menu-navMenu.nav-menu-navMenuSticky,.nav-menu-navMenu.nav-menu-navMenuStickyIC,.nav-menu-navMenu.nav-menu-navMenuStickyPro,.nav-menu-navMenuIC.nav-menu-navMenuSticky,.nav-menu-navMenuIC.nav-menu-navMenuStickyIC,.nav-menu-navMenuIC.nav-menu-navMenuStickyPro,.nav-menu-navMenuPro.nav-menu-navMenuSticky,.nav-menu-navMenuPro.nav-menu-navMenuStickyIC,.nav-menu-navMenuPro.nav-menu-navMenuStickyPro{padding-bottom:19px}}@media (min-width:1340px){.nav-menu-navMenu,.nav-menu-navMenuIC,.nav-menu-navMenuPro{top:45px}}@media only screen and (device-width:375px) and (device-height:812px) and (-webkit-device-pixel-ratio:3){.nav-menu-navMenu,.nav-menu-navMenuIC,.nav-menu-navMenuPro{margin-bottom:0;overflow:visible}.nav-menu-navMenu:after,.nav-menu-navMenuIC:after,.nav-menu-navMenuPro:after{background:#005594;bottom:-20px;content:"";height:21px;left:0;position:absolute;transition:background-color .25s;width:100%}}@media (min-width:760px) and (max-width:1019px){.nav-menu-navMenu,.nav-menu-navMenuIC,.nav-menu-navMenuPro{z-index:0}}@media (min-width:760px){.nav-menu-navMenuArticle{pointer-events:auto}}.nav-menu-navMenuSticky{background:#005594}.nav-menu-navMenuStickyPro{background:#27313c}.nav-menu-navMenuStickyIC{background:#071d39}.nav-menu-navMenuSticky,.nav-menu-navMenuStickyIC,.nav-menu-navMenuStickyPro{z-index:1000}@media (min-width:760px){.nav-menu-navMenuSticky,.nav-menu-navMenuStickyIC,.nav-menu-navMenuStickyPro{height:45px;top:0}}@media (min-width:1020px){.nav-menu-navMenuSticky,.nav-menu-navMenuStickyIC,.nav-menu-navMenuStickyPro{height:45px;top:0}}.nav-menu-navMenuSticky.nav-menu-withOpenSearch,.nav-menu-navMenuStickyIC.nav-menu-withOpenSearch,.nav-menu-navMenuStickyPro.nav-menu-withOpenSearch{z-index:1000}.nav-menu-navMenuSticky .nav-menu-subLinks,.nav-menu-navMenuStickyIC .nav-menu-subLinks,.nav-menu-navMenuStickyPro .nav-menu-subLinks{left:6px;position:absolute;top:34px}@media (min-width:1340px){.nav-menu-navMenuSticky .nav-menu-subLinks,.nav-menu-navMenuStickyIC .nav-menu-subLinks,.nav-menu-navMenuStickyPro .nav-menu-subLinks{left:15px}}.nav-menu-navMenuArticleSticky,.nav-menu-navMenuArticleStickyPro{background:#fff;color:#000}@media (min-width:760px){.nav-menu-navMenuArticleSticky,.nav-menu-navMenuArticleStickyPro{background:transparent;width:100%;z-index:999}}@media only screen and (device-width:375px) and (device-height:812px) and (-webkit-device-pixel-ratio:3){.nav-menu-navMenuArticleSticky:after,.nav-menu-navMenuArticleStickyPro:after{background:#fff}}.nav-menu-navMenuArticleSticky .nav-menu-logoStickyContainer,.nav-menu-navMenuArticleStickyPro .nav-menu-logoStickyContainer{margin-right:5%}@media (min-width:1020px){.nav-menu-navMenuArticleSticky .nav-menu-logoStickyContainer,.nav-menu-navMenuArticleStickyPro .nav-menu-logoStickyContainer{margin-right:0}}.nav-menu-buttonPro{align-items:center;background-color:transparent;border:0;color:#fff;display:flex;flex-direction:column;font-size:18px;order:2;padding:0}.nav-menu-buttonPro:focus,.nav-menu-buttonPro:hover{color:#00a857}.nav-menu-buttonPro .icon-cnbctv{font-size:26px;margin-bottom:-3px;position:relative;top:4px}.nav-menu-buttonPro .icon-news{font-size:23px;position:relative;top:4px}.nav-menu-buttonPro .icon-markets,.nav-menu-buttonPro .icon-watchlist{font-size:18px;padding-bottom:5px;position:relative;top:7px}.nav-menu-buttonPro:focus .nav-menu-buttonText{color:#fff}.nav-menu-buttonPro+.nav-menu-subLinks{background:#fff;display:none;font-size:12px;left:6px;padding:0;position:absolute;top:34px}@media (min-width:1340px){.nav-menu-buttonPro+.nav-menu-subLinks{left:15px}}.nav-menu-buttonPro+.nav-menu-subLinks li{border-bottom:2px solid #f3f5f7;padding:0 20px;position:relative;z-index:600}.nav-menu-buttonPro+.nav-menu-subLinks li:first-child{padding:5px 20px 0}.nav-menu-buttonPro+.nav-menu-subLinks li:last-child{border-bottom:none;padding:0 20px 5px}.nav-menu-buttonPro+.nav-menu-subLinks li:hover{background-color:#f3f5f7}.nav-menu-buttonPro+.nav-menu-subLinks li:hover .nav-menu-subLink{opacity:0}.nav-menu-buttonPro+.nav-menu-subLinks li:hover:first-child:before{top:9px}.nav-menu-buttonPro+.nav-menu-subLinks li:hover:before{color:#002f6c;content:attr(data-text);font-weight:700;pointer-events:none;position:absolute;top:4px}.nav-menu-buttonPro+.nav-menu-subLinks .nav-menu-subLink{color:#002f6c;display:block;font-weight:500;line-height:9px;padding:14px 0}@media (max-width:359px){.nav-menu-buttonPro{font-size:23px}}@media (min-width:760px){.nav-menu-buttonPro{order:0;padding:0 8px}.nav-menu-buttonPro span:first-child{display:none}}@media (min-width:1020px){.nav-menu-buttonPro{padding:0 6px}}@media (min-width:1340px){.nav-menu-buttonPro{padding-left:15px;padding-right:8px}}.nav-menu-buttonIC{align-items:center;background-color:transparent;border:0;color:#fff;display:flex;flex-direction:column;font-size:18px;order:2;padding:0}.nav-menu-buttonIC:focus,.nav-menu-buttonIC:hover{color:#0496ff}.nav-menu-buttonIC .icon-cnbctv{font-size:26px;margin-bottom:-3px;position:relative;top:4px}.nav-menu-buttonIC .icon-news{font-size:23px;position:relative;top:4px}.nav-menu-buttonIC .icon-markets,.nav-menu-buttonIC .icon-watchlist{font-size:18px;padding-bottom:5px;position:relative;top:7px}.nav-menu-buttonIC:focus .nav-menu-buttonText{color:#fff}.nav-menu-buttonIC+.nav-menu-subLinks{background:#fff;display:none;font-size:12px;left:6px;padding:0;position:absolute;top:34px}@media (min-width:1340px){.nav-menu-buttonIC+.nav-menu-subLinks{left:15px}}.nav-menu-buttonIC+.nav-menu-subLinks li{border-bottom:2px solid #f3f5f7;padding:0 20px;position:relative;z-index:600}.nav-menu-buttonIC+.nav-menu-subLinks li:first-child{padding:5px 20px 0}.nav-menu-buttonIC+.nav-menu-subLinks li:last-child{border-bottom:none;padding:0 20px 5px}.nav-menu-buttonIC+.nav-menu-subLinks li:hover{background-color:#f3f5f7}.nav-menu-buttonIC+.nav-menu-subLinks li:hover .nav-menu-subLink{opacity:0}.nav-menu-buttonIC+.nav-menu-subLinks li:hover:first-child:before{top:9px}.nav-menu-buttonIC+.nav-menu-subLinks li:hover:before{color:#002f6c;content:attr(data-text);font-weight:700;pointer-events:none;position:absolute;top:4px}.nav-menu-buttonIC+.nav-menu-subLinks .nav-menu-subLink{color:#002f6c;display:block;font-weight:500;line-height:9px;padding:14px 0}@media (max-width:359px){.nav-menu-buttonIC{font-size:23px}}@media (min-width:760px){.nav-menu-buttonIC{order:0;padding:0 8px}.nav-menu-buttonIC span:first-child{display:none}}@media (min-width:1020px){.nav-menu-buttonIC{padding:0 6px}}@media (min-width:1340px){.nav-menu-buttonIC{padding-left:15px;padding-right:8px}}.nav-menu-button{align-items:center;background-color:transparent;border:0;color:#fff;display:flex;flex-direction:column;font-size:18px;order:2;padding:0;position:relative}.nav-menu-button .icon-cnbctv{font-size:26px;margin-bottom:-3px;position:relative;top:4px}.nav-menu-button .icon-news{font-size:23px;position:relative;top:4px}.nav-menu-button .icon-markets,.nav-menu-button .icon-watchlist{font-size:18px;padding-bottom:5px;position:relative;top:7px}.nav-menu-button:focus .nav-menu-buttonText{color:#fff}.nav-menu-button+.nav-menu-subLinks{background:#fff;display:none;font-size:12px;left:6px;padding:0;position:absolute;top:34px}@media (min-width:1340px){.nav-menu-button+.nav-menu-subLinks{left:15px}}.nav-menu-button+.nav-menu-subLinks li{border-bottom:2px solid #f3f5f7;padding:0 20px;position:relative;z-index:600}.nav-menu-button+.nav-menu-subLinks li:first-child{padding:5px 20px 0}.nav-menu-button+.nav-menu-subLinks li:last-child{border-bottom:none;padding:0 20px 5px}.nav-menu-button+.nav-menu-subLinks li:hover{background-color:#f3f5f7}.nav-menu-button+.nav-menu-subLinks li:hover .nav-menu-subLink{opacity:0}.nav-menu-button+.nav-menu-subLinks li:hover:first-child:before{top:9px}.nav-menu-button+.nav-menu-subLinks li:hover:before{color:#005594;content:attr(data-text);font-weight:700;pointer-events:none;position:absolute;top:4px}.nav-menu-button+.nav-menu-subLinks .nav-menu-subLink{color:#005594;display:block;font-weight:500;line-height:9px;padding:14px 0}@media (max-width:359px){.nav-menu-button{font-size:23px}}@media (min-width:760px){.nav-menu-button{order:0;padding:0 8px}.nav-menu-button span:first-child{display:none}}@media (min-width:1020px){.nav-menu-button{padding:0 6px}}@media (min-width:1340px){.nav-menu-button{padding-left:15px;padding-right:8px}}.nav-menu-hamburgerIC{font-size:19px;position:relative;top:3px}.nav-menu-hamburgerIC:hover{color:#0496ff}.nav-menu-hamburgerIC span{font-weight:600;margin-top:3px}@media (min-width:760px){.nav-menu-hamburgerIC{top:0}}.nav-menu-hamburgerPro{font-size:19px;position:relative;top:3px}.nav-menu-hamburgerPro:hover{color:#00a857}.nav-menu-hamburgerPro span{font-weight:600;margin-top:3px}@media (min-width:760px){.nav-menu-hamburgerPro{top:0}}.nav-menu-hamburger{font-size:19px;position:relative;top:3px}.nav-menu-hamburger:hover{color:#ffbc05}.nav-menu-hamburger span{font-weight:600;margin-top:3px}@media (min-width:760px){.nav-menu-hamburger{top:0}}.nav-menu-articleHamburger{color:#005594}.nav-menu-articleHamburgerPro{color:#002f6c}.nav-menu-desktopHamburger,.nav-menu-desktopHamburgerIC,.nav-menu-desktopHamburgerPro{color:#fff;font-size:16px;font-weight:700;margin-right:7px;position:relative;top:4px;transition:top .25s}@media (min-width:760px){.nav-menu-desktopHamburger,.nav-menu-desktopHamburgerIC,.nav-menu-desktopHamburgerPro{margin-right:13px;transform:none}}@media (max-width:759px){.nav-menu-desktopHamburger,.nav-menu-desktopHamburgerIC,.nav-menu-desktopHamburgerPro{display:none}}@media (min-width:1020px){.nav-menu-desktopHamburger,.nav-menu-desktopHamburgerIC,.nav-menu-desktopHamburgerPro{margin-right:7px}}.nav-menu-desktopHamburger span[class=icon-menu],.nav-menu-desktopHamburgerIC span[class=icon-menu],.nav-menu-desktopHamburgerPro span[class=icon-menu]{display:inline}.nav-menu-desktopHamburger:hover{color:#fcb700}.nav-menu-desktopHamburger:focus{color:#fff}.nav-menu-desktopHamburger.nav-menu-button{padding-right:0}@media (min-width:760px){.nav-menu-desktopHamburger{display:block;padding-left:0}.nav-menu-desktopHamburger:hover{color:#fcb700}.nav-menu-desktopHamburger:hover:after,.nav-menu-desktopHamburger:hover:before{background:#fcb700}}.nav-menu-desktopHamburgerPro:hover{color:#00a857}.nav-menu-desktopHamburgerPro:focus{color:#fff}.nav-menu-desktopHamburgerPro.nav-menu-button{padding-right:0}@media (min-width:760px){.nav-menu-desktopHamburgerPro{display:block;padding-left:0}.nav-menu-desktopHamburgerPro:hover{color:#00a857}.nav-menu-desktopHamburgerPro:hover:after,.nav-menu-desktopHamburgerPro:hover:before{background:#00a857}}.nav-menu-desktopHamburgerIC:hover{color:#0496ff}.nav-menu-desktopHamburgerIC:focus{color:#fff}.nav-menu-desktopHamburgerIC.nav-menu-button{padding-right:0}@media (min-width:760px){.nav-menu-desktopHamburgerIC{display:block;padding-left:0}.nav-menu-desktopHamburgerIC:hover{color:#0496ff}.nav-menu-desktopHamburgerIC:hover:after,.nav-menu-desktopHamburgerIC:hover:before{background:#0496ff}}@media (min-width:1020px){.nav-menu-desktopHamburgerSticky{transform:translateY(7px)}}@media (min-width:1020px){.nav-menu-desktopHamburgerStickyPro{transform:translateY(7px)}}@media (min-width:1020px){.nav-menu-desktopHamburgerStickyIC{transform:translateY(7px)}}.nav-menu-desktopHamburgerArticleSticky{color:#005594}.nav-menu-desktopHamburgerArticleSticky:after,.nav-menu-desktopHamburgerArticleSticky:before{background:#005594}.nav-menu-desktopHamburgerArticleSticky:focus{color:#005594}.nav-menu-desktopHamburgerArticleSticky:focus:after,.nav-menu-desktopHamburgerArticleSticky:focus:before{background:#005594}.nav-menu-desktopHamburgerArticleStickyPro{color:#002f6c}.nav-menu-desktopHamburgerArticleStickyPro:after,.nav-menu-desktopHamburgerArticleStickyPro:before{background:#002f6c}.nav-menu-desktopHamburgerArticleStickyPro:focus{color:#002f6c}.nav-menu-desktopHamburgerArticleStickyPro:focus:after,.nav-menu-desktopHamburgerArticleStickyPro:focus:before{background:#002f6c}.nav-menu-desktopHamburgerArticleStickyIC{color:#002f6c}.nav-menu-desktopHamburgerArticleStickyIC:after,.nav-menu-desktopHamburgerArticleStickyIC:before{background:#002f6c}.nav-menu-desktopHamburgerArticleStickyIC:focus{color:#002f6c}.nav-menu-desktopHamburgerArticleStickyIC:focus:after,.nav-menu-desktopHamburgerArticleStickyIC:focus:before{background:#002f6c}.nav-menu-buttonText{color:#e8e8e8;font-size:9px;font-weight:600;letter-spacing:1px;margin-top:5px;opacity:.75;text-align:center;text-transform:uppercase}@media (min-width:760px){.nav-menu-buttonText{color:#fff;font-size:12px;font-weight:700;opacity:1}}@media (min-width:1020px){.nav-menu-buttonText{font-size:14px;font-weight:600;letter-spacing:.5px}}@media (min-width:1340px){.nav-menu-buttonText{letter-spacing:.8px}}.nav-menu-articleButtonText{color:#005594}.nav-menu-articleButtonTextPro{color:#002f6c}.nav-menu-articleButtonTextIC{color:#071d39}.nav-menu-logoStickyContainer{margin-right:9%}@media (min-width:760px){.nav-menu-logoStickyContainer{margin-right:0}}.nav-menu-logo{height:100%;opacity:0;overflow:hidden;width:34px}@media (min-width:760px){.nav-menu-logo{transform:translate(-100%,-100%)}}.nav-menu-logoSticky,.nav-menu-logoStickyMobilePro{height:31px;opacity:1;width:41px;z-index:1}@media (min-width:760px){.nav-menu-logoSticky,.nav-menu-logoStickyMobilePro{margin-right:20px;transform:translate(9px)}}@media (min-width:1020px){.nav-menu-logoSticky,.nav-menu-logoStickyMobilePro{transform:translate(9px,9px)}}@media (max-width:759px){.nav-menu-logoStickyMobilePro{height:20px;width:122px}}.nav-menu-logoStickyMobileIC{width:150px}.nav-menu-mainLinks{flex:1;margin-left:-35px;margin-right:0;overflow:hidden;text-align:left;transition:all .25s;white-space:nowrap;width:100%;z-index:2}@media (min-width:760px){.nav-menu-mainLinks{align-items:center;display:flex;flex:100;flex-direction:row;height:auto;overflow:visible}}.nav-menu-mainLinksSticky{margin-left:0}@media (min-width:1020px){.nav-menu-mainLinksSticky{transform:translateY(10px)}}.nav-menu-mainLinksWrapper{position:relative}.nav-menu-mainLinksWrapper:after,.nav-menu-mainLinksWrapper:before{content:"";display:none;height:100%;position:absolute;top:0;width:44px}@media (min-width:760px){.nav-menu-mainLinksWrapper:after,.nav-menu-mainLinksWrapper:before{display:none}}.nav-menu-mainLinksWrapper:before{background:linear-gradient(270deg,transparent,#005594);opacity:1;transition:all .25s}.nav-menu-mainLinksWrapper:after{background:linear-gradient(270deg,#005594,transparent);right:0}.nav-menu-mainLinksWrapperStart{display:flex;justify-content:space-between}.nav-menu-mainLinksWrapperStart:before{opacity:0}.nav-menu-articleMainWrapper{flex:1;height:32px}@media (min-width:760px){.nav-menu-articleMainWrapper{height:auto}}.nav-menu-articleContent{align-items:center;display:flex;justify-content:flex-end;width:100%}@media (min-width:1020px){.nav-menu-articleContent{justify-content:space-between;width:calc(100% - 54px)}}@media (min-width:1340px){.nav-menu-articleContent{width:100%}}.nav-menu-articleTitle,.nav-menu-articleTitleWithoutShareComponent{display:none;font-size:14px;font-weight:700;line-height:2;text-overflow:ellipsis;transform:translateY(2px)}@media (min-width:1020px){.nav-menu-articleTitle,.nav-menu-articleTitleWithoutShareComponent{display:block;overflow:hidden;padding-right:30px}}@media (max-width:1179px){.nav-menu-articleTitle,.nav-menu-articleTitleWithoutShareComponent{width:auto}}@media (max-width:1339px){.nav-menu-articleTitle,.nav-menu-articleTitleWithoutShareComponent{width:690px}}@media (min-width:1340px){.nav-menu-articleTitle,.nav-menu-articleTitleWithoutShareComponent{padding-left:5px}}.nav-menu-articleSocial{display:contents}.nav-menu-articleTitleWithoutShareComponent{margin-bottom:15px}@media (min-width:1020px){.nav-menu-articleTitleWithoutShareComponent{width:912px}}.nav-menu-articleHidden{display:none}.nav-menu-linksSticky,.nav-menu-navLinks{display:flex;flex:1;justify-content:space-between}@media (min-width:760px){.nav-menu-linksSticky .nav-menu-button,.nav-menu-linksSticky .nav-menu-buttonPro{padding:0 5px}}@media (min-width:1020px){.nav-menu-linksSticky .nav-menu-button,.nav-menu-linksSticky .nav-menu-buttonPro{padding:0 12px}}.nav-menu-linksSticky .nav-menu-subLinks{left:12px;position:absolute;top:34px}.nav-menu-articleNavLinks{display:none}@media (min-width:760px){.nav-menu-articleNavLinks{display:flex}.nav-menu-articleNavLinks.nav-menu-linksSticky{display:none}.nav-menu-articleNavLinks.nav-menu-linksSticky .nav-menu-primaryLink{margin-bottom:0}}.nav-menu-primaryLink{display:inline-block;font-size:14px;font-weight:700;letter-spacing:.85px;margin-right:4px;position:relative;text-transform:uppercase}@media (min-width:760px){.nav-menu-primaryLink{line-height:30px}.nav-menu-primaryLink:not(.markets):not(.business_news):not(.investing):not(.tech):not(.politics):not(.cnbc_tv):not(.investing_club):not(.pro){display:none}}.nav-menu-primaryLink:not(.watchlist):not(.markets):not(.cnbc_tv):not(.hamburger){display:none}@media (min-width:760px){.nav-menu-primaryLink{font-size:12px;margin-right:0}.nav-menu-primaryLink:not(.watchlist):not(.markets):not(.cnbc_tv):not(.hamburger){display:block}.nav-menu-primaryLink:last-child{display:none}}.nav-menu-primaryLink.nav-menu-active{position:relative}.nav-menu-primaryLink.nav-menu-active:after{background-color:#fff;bottom:-10px;content:"";height:3px;left:0;position:absolute;width:100%}@media (min-width:1020px){.nav-menu-primaryLink:hover~.nav-menu-navUnderline,.nav-menu-primaryLink:hover~.nav-menu-navUnderlineIC,.nav-menu-primaryLink:hover~.nav-menu-navUnderlinePro{opacity:1}}@media (min-width:760px){.nav-menu-progressBarContainer{display:none}}.nav-menu-logoContainer{pointer-events:none;width:34px}.nav-menu-navDropdownWrap{-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards;background-color:#fff;box-shadow:0 1px 3px 1px rgba(0,0,0,.08);height:100px;left:0;opacity:1;pointer-events:none;position:absolute;top:4px;transform:matrix(0,0,0,0,0,0);transform-origin:0 0;z-index:-1}.nav-menu-navUnderlinePro{height:1px;left:0;opacity:0;pointer-events:none;position:absolute;transform:matrix(0,0,0,0,0,0);transform-origin:left;width:100px;z-index:600}.nav-menu-navUnderlinePro:after{border-bottom:4px solid #00a857;content:" ";list-style:none;position:absolute;width:100%}.nav-menu-navUnderlineIC{height:1px;left:0;opacity:0;pointer-events:none;position:absolute;transform:matrix(0,0,0,0,0,0);transform-origin:left;width:100px;z-index:600}.nav-menu-navUnderlineIC:after{border-bottom:4px solid #0496ff;content:" ";list-style:none;position:absolute;width:100%}.nav-menu-navUnderline{height:1px;left:0;opacity:0;pointer-events:none;position:absolute;transform:matrix(0,0,0,0,0,0);transform-origin:left;width:100px;z-index:600}.nav-menu-navUnderline:after{border-bottom:4px solid #fcb700;content:" ";list-style:none;position:absolute;width:100%}.nav-menu-subLinks-enter{background-color:transparent;opacity:.01!important}.nav-menu-subLinks-enter.nav-menu-subLinks-enter-active{background-color:#fff;opacity:1!important;transition:all .2s ease-in .14s}.nav-menu-investingClubLockIcon,.nav-menu-proLockIcon{background:#fff;height:11px;margin-left:-4px;margin-top:14px;mask-image:url(https://static-redesign.cnbcfm.com/dist/2510aab92bf855eb1ad7.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/2510aab92bf855eb1ad7.svg);-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;width:10px}@media (max-width:759px){.nav-menu-investingClubLockIcon,.nav-menu-proLockIcon{display:none}}@media (min-width:1020px){.nav-menu-investingClubLockIcon,.nav-menu-proLockIcon{margin-top:15px}}.nav-menu-investingClubLockIcon{margin-left:0}@media (min-width:1020px){.nav-menu-investingClubLockIcon{margin-left:2px}}@media (min-width:1340px){.nav-menu-investingClubLockIcon{margin-left:0}}.nav-menu-berkshireWatchLive{font-size:11px}@media (min-width:760px){.nav-menu-berkshireWatchLive{display:none}}@media (min-width:1020px){.nav-menu-berkshireWatchLive{display:flex;margin-right:-17px}.nav-menu-berkshireWatchLive a{display:-webkit-flex}}@media (min-width:1340px){.nav-menu-berkshireWatchLive{margin-right:27px}}.nav-menu-berkshireWatchLive a{color:#005594;font-weight:700;letter-spacing:1.2px;text-transform:uppercase}.nav-menu-berkshireWatchLive a:hover{color:#d1bb7e}.nav-menu-berkshireWatchLive span{font-weight:600}.nav-menu-berkshireWatchLive span.nav-menu-liveText{background-color:#131840;color:#d1bb7e;letter-spacing:1.2px;margin-left:2px;padding:0 2px 0 3px;text-transform:uppercase}.nav-menu-berkshireWatchLive:before{-webkit-animation:nav-menu-pulse 2s infinite;animation:nav-menu-pulse 2s infinite;background-color:#ff5053;border-radius:100%;box-shadow:0 0 0 0 #ce2b2b;content:"";display:block;height:6px;margin:5px 6px;transform:scale(1);width:6px}@-webkit-keyframes nav-menu-pulse{0%{box-shadow:0 0 0 1px #ce2b2b;opacity:1;transform:scale(.95)}70%{box-shadow:0 0 0 2px #ce2b2b;opacity:.9;transform:scale(1)}to{box-shadow:0 0 0 1px #ce2b2b;opacity:1;transform:scale(.95)}}.nav-menu-watchLive{font-size:11px}@media (min-width:1020px){.nav-menu-watchLive{display:flex;margin-right:-17px}.nav-menu-watchLive a{display:-webkit-flex}}@media (min-width:1340px){.nav-menu-watchLive{margin-right:27px}}.nav-menu-watchLive a{color:#005594;font-weight:600;letter-spacing:1.2px;text-transform:uppercase}.nav-menu-watchLive span{font-weight:600}.nav-menu-watchLive span.nav-menu-liveText{background-color:#005594;color:#fff;letter-spacing:1.2px;margin-left:2px;padding:0 2px 0 3px;text-transform:uppercase}.nav-menu-watchLive span.nav-menu-showTitle{background-color:#fff;color:#071d39;letter-spacing:.4px;margin-left:8px;text-transform:none}.nav-menu-watchLive:before{-webkit-animation:nav-menu-pulse 2s infinite;animation:nav-menu-pulse 2s infinite;background-color:#ff5053;border-radius:100%;box-shadow:0 0 0 0 #ce2b2b;content:"";display:block;height:6px;margin:5px 6px;transform:scale(1);width:6px}@keyframes nav-menu-pulse{0%{box-shadow:0 0 0 1px #ce2b2b;opacity:1;transform:scale(.95)}70%{box-shadow:0 0 0 2px #ce2b2b;opacity:.9;transform:scale(1)}to{box-shadow:0 0 0 1px #ce2b2b;opacity:1;transform:scale(.95)}}
/*# sourceMappingURL=source-maps/2160-beef690bef50f001651f.css.map*/
.SearchToggle-button,.SearchToggle-signinButton .SearchToggle-signinButtonBtn{border-radius:0;color:#fff;margin-top:3px;padding:6px;position:absolute;right:10px;top:0;z-index:0}.SearchToggle-button.SearchToggle-closeButtonText,.SearchToggle-signinButton .SearchToggle-signinButtonBtn.SearchToggle-closeButtonText{font-size:16px;font-weight:600;margin-left:-50px;right:14px;width:auto}.SearchToggle-button .icon-search,.SearchToggle-signinButton .SearchToggle-signinButtonBtn .icon-search{display:block}.SearchToggle-button .icon-search:before,.SearchToggle-signinButton .SearchToggle-signinButtonBtn .icon-search:before{font-size:24px;transition:font-size .25s}.SearchToggle-button .icon-close:before,.SearchToggle-signinButton .SearchToggle-signinButtonBtn .icon-close:before{font-size:18px}.SearchToggle-button span,.SearchToggle-signinButton .SearchToggle-signinButtonBtn span{color:#7a7a7a;display:none;font-size:12px;font-weight:600;left:10px;letter-spacing:.785px;opacity:1;position:absolute;top:5px;transition:opacity .25s}.SearchToggle-button span.SearchToggle-searchOpen,.SearchToggle-signinButton .SearchToggle-signinButtonBtn span.SearchToggle-searchOpen{display:none}.SearchToggle-button.SearchToggle-searchOpen,.SearchToggle-signinButton .SearchToggle-signinButtonBtn.SearchToggle-searchOpen{background:inherit}@media (min-width:760px){.SearchToggle-button,.SearchToggle-signinButton .SearchToggle-signinButtonBtn{align-items:center;background:#fff;display:flex;flex-direction:row;height:30px;justify-content:flex-end;margin-right:28px;margin-top:10px;padding:0 20px 0 15px;right:130px;width:205px}.SearchToggle-button span,.SearchToggle-signinButton .SearchToggle-signinButtonBtn span{display:block;font-size:9px;left:12px;top:7px}.SearchToggle-button span.SearchToggle-megaMenuSearchToggler,.SearchToggle-button span.SearchToggle-megaMenuSearchTogglerIC,.SearchToggle-button span.SearchToggle-megaMenuSearchTogglerPro,.SearchToggle-signinButton .SearchToggle-signinButtonBtn span.SearchToggle-megaMenuSearchToggler,.SearchToggle-signinButton .SearchToggle-signinButtonBtn span.SearchToggle-megaMenuSearchTogglerIC,.SearchToggle-signinButton .SearchToggle-signinButtonBtn span.SearchToggle-megaMenuSearchTogglerPro{left:30px;top:10px}.SearchToggle-button .icon-search,.SearchToggle-signinButton .SearchToggle-signinButtonBtn .icon-search{bottom:0;color:#7a7a7a;height:20px;margin:auto;position:absolute;right:10px;top:0}.SearchToggle-button .icon-search:before,.SearchToggle-signinButton .SearchToggle-signinButtonBtn .icon-search:before{font-size:20px}.SearchToggle-button:before,.SearchToggle-signinButton .SearchToggle-signinButtonBtn:before{background-color:rgba(102,153,190,.5);content:"";height:calc(100% - 30px);left:0;position:absolute;top:50%;transform:translateY(-50%)}}@media (min-width:1020px){.SearchToggle-button,.SearchToggle-signinButton .SearchToggle-signinButtonBtn{align-items:center;background:#fff;bottom:auto;height:30px;margin-top:10px;padding-left:20px;padding-right:0;position:absolute;right:108px;transition:transform .25s,height .25s;width:250px}.SearchToggle-button span,.SearchToggle-button span.SearchToggle-megaMenuSearchToggler,.SearchToggle-button span.SearchToggle-megaMenuSearchTogglerIC,.SearchToggle-button span.SearchToggle-megaMenuSearchTogglerPro,.SearchToggle-signinButton .SearchToggle-signinButtonBtn span,.SearchToggle-signinButton .SearchToggle-signinButtonBtn span.SearchToggle-megaMenuSearchToggler,.SearchToggle-signinButton .SearchToggle-signinButtonBtn span.SearchToggle-megaMenuSearchTogglerIC,.SearchToggle-signinButton .SearchToggle-signinButtonBtn span.SearchToggle-megaMenuSearchTogglerPro{font-size:12px;left:10px;top:5px}.SearchToggle-button .icon-search,.SearchToggle-signinButton .SearchToggle-signinButtonBtn .icon-search{bottom:0;color:#7a7a7a;right:10px}}.SearchToggle-mega-menu
.SearchToggle-signinButton .SearchToggle-signinButtonBtn,.SearchToggle-mega-menu .SearchToggle-button{position:relative;width:auto}@media (min-width:1340px){.SearchToggle-mega-menu .SearchToggle-button,.SearchToggle-mega-menu .SearchToggle-signinButton .SearchToggle-signinButtonBtn{margin:0 75px;padding:0}}@media (min-width:760px){.SearchToggle-signinButton{right:160px}}@media (min-width:1020px){.SearchToggle-signinButton{right:137px}}@media (min-width:760px){.SearchToggle-signinButtonBtn{right:160px}}@media (min-width:1020px){.SearchToggle-signinButtonBtn{right:318px}}.SearchToggle-articleButton.SearchToggle-buttonSticky,.SearchToggle-articleButton.SearchToggle-buttonStickyIC,.SearchToggle-articleButton.SearchToggle-buttonStickyPro{background:none;border-left:1px solid #e8e8e8;color:#005594;padding-left:43px;width:39px;z-index:999}.SearchToggle-articleButton.SearchToggle-buttonSticky .icon-search,.SearchToggle-articleButton.SearchToggle-buttonStickyIC .icon-search,.SearchToggle-articleButton.SearchToggle-buttonStickyPro .icon-search{color:#005594!important}@media (min-width:760px){.SearchToggle-articleButton.SearchToggle-buttonSticky,.SearchToggle-articleButton.SearchToggle-buttonStickyIC,.SearchToggle-articleButton.SearchToggle-buttonStickyPro{margin-right:0;padding-left:22px}}@media (min-width:1020px){.SearchToggle-articleButton.SearchToggle-buttonSticky,.SearchToggle-articleButton.SearchToggle-buttonStickyIC,.SearchToggle-articleButton.SearchToggle-buttonStickyPro{display:block;line-height:1px;margin-right:0;padding-left:43px}.SearchToggle-articleButton.SearchToggle-buttonSticky:before,.SearchToggle-articleButton.SearchToggle-buttonStickyIC:before,.SearchToggle-articleButton.SearchToggle-buttonStickyPro:before{background:none;bottom:0;content:"";display:block;height:30px;left:0;position:absolute;width:1px}}.SearchToggle-articleButton.SearchToggle-buttonStickyPro{color:#002f6c}.SearchToggle-articleButton.SearchToggle-buttonStickyPro .icon-search{color:#002f6c!important}.SearchToggle-articleButton.SearchToggle-buttonStickyIC{color:#002f6c}.SearchToggle-articleButton.SearchToggle-buttonStickyIC .icon-search{color:#002f6c!important}.SearchToggle-buttonSticky{margin-right:0;transform:translateY(-100%);z-index:1000}@media (max-width:759px){.SearchToggle-buttonSticky{opacity:0}}@media (min-width:760px){.SearchToggle-buttonSticky{background:#005594;height:26px;right:5px;transform:translateY(0);transition:width 0s .25s;width:45px}.SearchToggle-buttonSticky:before{display:none}.SearchToggle-buttonSticky span{opacity:0;transition:opacity .25s}.SearchToggle-buttonSticky .icon-search{color:#fff!important;height:26px}.SearchToggle-buttonSticky .icon-search:before{font-size:26px}}@media (min-width:1020px){.SearchToggle-buttonSticky{right:-12px}.SearchToggle-buttonSticky .icon-search,.SearchToggle-buttonSticky .icon-search:before{font-size:26px}}@media (-ms-high-contrast:none),screen and (-ms-high-contrast:active){.SearchToggle-buttonSticky{height:35px}}.SearchToggle-buttonStickyIC,.SearchToggle-buttonStickyPro{margin-right:0;transform:translateY(-100%);z-index:1000}@media (max-width:759px){.SearchToggle-buttonStickyIC,.SearchToggle-buttonStickyPro{opacity:0}}@media (min-width:760px){.SearchToggle-buttonStickyIC,.SearchToggle-buttonStickyPro{background:#27313c;height:26px;right:5px;transform:translateY(0);transition:width 0s .25s;width:45px}.SearchToggle-buttonStickyIC:before,.SearchToggle-buttonStickyPro:before{display:none}.SearchToggle-buttonStickyIC span,.SearchToggle-buttonStickyPro span{opacity:0;transition:opacity .25s}.SearchToggle-buttonStickyIC .icon-search,.SearchToggle-buttonStickyPro .icon-search{color:#fff!important;height:26px}.SearchToggle-buttonStickyIC .icon-search:before,.SearchToggle-buttonStickyPro .icon-search:before{font-size:26px}}@media (min-width:1020px){.SearchToggle-buttonStickyIC,.SearchToggle-buttonStickyPro{right:-12px}.SearchToggle-buttonStickyIC .icon-search,.SearchToggle-buttonStickyIC .icon-search:before,.SearchToggle-buttonStickyPro .icon-search,.SearchToggle-buttonStickyPro .icon-search:before{font-size:26px}}@media (-ms-high-contrast:none),screen and (-ms-high-contrast:active){.SearchToggle-buttonStickyIC,.SearchToggle-buttonStickyPro{height:35px}}@media (min-width:760px){.SearchToggle-buttonStickyPro{background:#27313c}.SearchToggle-buttonStickyIC{background:#071d39}}.SearchToggle-megaMenuButton{align-items:center;background-color:#f2f2f2;display:flex;height:45px;justify-content:space-between;min-width:110px;padding:0 20px;position:relative;width:100%}@media (min-width:1020px){.SearchToggle-megaMenuButton{background-color:transparent;justify-content:flex-start;padding:0}}.SearchToggle-megaMenuButton span{border-radius:3px;color:#005594;display:inline-block;font-size:14px;font-weight:600;letter-spacing:1px;margin-top:.2rem;text-transform:uppercase}@media (min-width:760px){.SearchToggle-megaMenuButton span{margin-top:.3rem}}@media (min-width:1020px){.SearchToggle-megaMenuButton span{margin-top:1px}}.SearchToggle-megaMenuButton .icon-search{color:#071d39;font-size:24px;height:30px;padding-left:10px;width:30px}.SearchToggle-megaMenuButton .icon-search:before{color:#005594;display:block;height:100%;line-height:30px}@media (min-width:1020px){.SearchToggle-megaMenuButton:hover .icon-search,.SearchToggle-megaMenuButton:hover .icon-search:before,.SearchToggle-megaMenuButton:hover span{color:#fcb700}}.SearchToggle-megaMenuButtonPro{align-items:center;background-color:#f2f2f2;display:flex;height:45px;justify-content:space-between;min-width:110px;padding:0 20px;position:relative;width:100%}@media (min-width:1020px){.SearchToggle-megaMenuButtonPro{background-color:transparent;justify-content:flex-start;padding:0}}.SearchToggle-megaMenuButtonPro span{border-radius:3px;color:#27313c;display:inline-block;font-size:14px;font-weight:600;letter-spacing:1px;margin-top:.2rem;text-transform:uppercase}@media (min-width:760px){.SearchToggle-megaMenuButtonPro span{margin-top:.3rem}}@media (min-width:1020px){.SearchToggle-megaMenuButtonPro span{margin-top:1px}}.SearchToggle-megaMenuButtonPro .icon-search{color:#27313c;font-size:24px;height:30px;padding-left:10px;width:30px}.SearchToggle-megaMenuButtonPro .icon-search:before{color:#27313c;display:block;height:100%;line-height:30px}@media (min-width:1020px){.SearchToggle-megaMenuButtonPro:focus .icon-search,.SearchToggle-megaMenuButtonPro:focus .icon-search:before,.SearchToggle-megaMenuButtonPro:focus span,.SearchToggle-megaMenuButtonPro:hover .icon-search,.SearchToggle-megaMenuButtonPro:hover .icon-search:before,.SearchToggle-megaMenuButtonPro:hover span{color:#00a857}}.SearchToggle-megaMenuButtonIC{align-items:center;background-color:#f2f2f2;display:flex;height:45px;justify-content:space-between;min-width:110px;padding:0 20px;position:relative;width:100%}@media (min-width:1020px){.SearchToggle-megaMenuButtonIC{background-color:transparent;justify-content:flex-start;padding:0}}.SearchToggle-megaMenuButtonIC span{border-radius:3px;color:#27313c;display:inline-block;font-size:14px;font-weight:600;letter-spacing:1px;margin-top:.2rem;text-transform:uppercase}@media (min-width:760px){.SearchToggle-megaMenuButtonIC span{margin-top:.3rem}}@media (min-width:1020px){.SearchToggle-megaMenuButtonIC span{margin-top:1px}}.SearchToggle-megaMenuButtonIC .icon-search{color:#27313c;font-size:24px;height:30px;padding-left:10px;width:30px}.SearchToggle-megaMenuButtonIC .icon-search:before{color:#27313c;display:block;height:100%;line-height:30px}@media (min-width:1020px){.SearchToggle-megaMenuButtonIC:focus .icon-search,.SearchToggle-megaMenuButtonIC:focus .icon-search:before,.SearchToggle-megaMenuButtonIC:focus span,.SearchToggle-megaMenuButtonIC:hover .icon-search,.SearchToggle-megaMenuButtonIC:hover .icon-search:before,.SearchToggle-megaMenuButtonIC:hover span{color:#0496ff}}.SearchToggle-buttonLoggedIn{right:10px}@media (min-width:760px){.SearchToggle-buttonLoggedIn{right:219px}}@media (min-width:1020px){.SearchToggle-buttonLoggedIn{right:200px}.SearchToggle-buttonLoggedInWithSubscribeMenu{right:335px}}
/*# sourceMappingURL=source-maps/6725-ce425fd785c2d3a9ffcf.css.map*/
.PageBuilder-containerFluidWidths{margin:0 auto;width:100%}@media (min-width:1020px){.PageBuilder-containerFluidWidths{max-width:960px}}@media (min-width:1340px){.PageBuilder-containerFluidWidths{max-width:1290px}}.PageBuilder-containerWidth100{width:100%}.PageBuilder-page{display:block;margin-bottom:25px;overflow:visible}@media (min-width:760px){.PageBuilder-page{margin-bottom:28px}}.PageBuilder-pageGrid{margin-left:auto;margin-right:auto;max-width:1290px;overflow:visible;width:100%}.PageBuilder-pageWrapper{margin:0 auto;max-width:100%}@media (min-width:760px){.PageBuilder-pageWrapper{max-width:678px}}@media (min-width:1020px){.PageBuilder-pageWrapper{max-width:960px}}@media (min-width:1340px){.PageBuilder-pageWrapper{max-width:1290px}}@media (min-width:760px){.PageBuilder-pageWrapper{max-width:100%!important}}.PageBuilder-pageRow{display:flex;flex-direction:row;flex-wrap:wrap;padding:0 20px}@media (min-width:760px){.PageBuilder-pageRow{padding-left:0;padding-right:0}}@media (min-width:1020px){.PageBuilder-pageRow{display:flex;flex-direction:row;flex-wrap:wrap;padding:0 20px}}@media (min-width:1020px) and (min-width:760px){.PageBuilder-pageRow{padding-left:0;padding-right:0}}@media (max-width:1019px){.PageBuilder-pageRow{margin:0;padding:0}}@media (min-width:360px) and (max-width:759px){.PageBuilder-pageRow.PageBuilder-containerFluidWidths{padding:0 21px}}@media (min-width:760px) and (max-width:1019px){.PageBuilder-pageRow.PageBuilder-containerFluidWidths{padding:0 45px}}.PageBuilder-pageRowFlex{display:flex}.PageBuilder-rowUnderAd{margin-top:-29px}@media (min-width:1020px){.PageBuilder-rowUnderAd{margin-top:-50px}}@media (min-width:1340px){.PageBuilder-rowUnderAd{margin-top:-44px}}.PageBuilder-rowWithBackground{background:#cfd8e2;position:relative}.PageBuilder-rowWithBackground:after,.PageBuilder-rowWithBackground:before{background:#cfd8e2;content:"";display:block;height:100%;position:absolute;width:25vw}.PageBuilder-rowWithBackground:before{right:100%;top:0}.PageBuilder-rowWithBackground:after{left:100%;top:0}.PageBuilder-flipRowOrder .PageBuilder-col:first-child{order:2}@media (min-width:1020px){.PageBuilder-flipRowOrder .PageBuilder-col:first-child{order:1}}.PageBuilder-flipRowOrder .PageBuilder-col:last-child{order:1}@media (min-width:1020px){.PageBuilder-flipRowOrder .PageBuilder-col:last-child{order:2}}.PageBuilder-col{display:flex;flex-direction:column;flex-grow:0;flex-shrink:0;margin-right:30px;max-width:calc(100% - 30px);min-width:calc(100% - 30px)}@media (min-width:760px){.PageBuilder-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.PageBuilder-col{max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media screen and (min-width:1020px) and (-ms-high-contrast:none){.PageBuilder-col{max-width:100%;min-width:100%}}@media (min-width:1340px){.PageBuilder-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}.PageBuilder-col:last-child{margin-right:0}@media (min-width:360px) and (max-width:759px){.PageBuilder-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}}@media (min-width:760px) and (max-width:1019px){.PageBuilder-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}.PageBuilder-containerFluidWidths .PageBuilder-col{max-width:678px!important;min-width:678px}}@media (min-width:760px){.PageBuilder-col-3{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.PageBuilder-col-3{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.PageBuilder-col-3{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.PageBuilder-col-3{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.PageBuilder-col-3{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.PageBuilder-col-3{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(33.33333% - 20px);min-width:calc(33.33333% - 20px)}.PageBuilder-col-3:first-child{margin-left:0;margin-right:30px}}@media (min-width:1340px){.PageBuilder-col-3{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(25% - 22.5px);min-width:calc(25% - 22.5px)}}@media (min-width:760px){.PageBuilder-col-6{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.PageBuilder-col-6{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.PageBuilder-col-6{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.PageBuilder-col-6{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.PageBuilder-col-6{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.PageBuilder-col-6{flex-grow:0;flex-shrink:0;margin-left:0;margin-right:0;max-width:calc(44.44444% - 16.66667px);min-width:calc(44.44444% - 16.66667px)}.PageBuilder-col-6:first-child{margin-left:0;margin-right:30px}}@media (min-width:1340px){.PageBuilder-col-6{flex-grow:0;flex-shrink:0;margin-left:0;max-width:calc(50% - 15px);min-width:calc(50% - 15px)}}.PageBuilder-col-9 .BrandBanner-container{margin-bottom:30px;z-index:99}@media (min-width:1340px){.PageBuilder-col-9 .BrandBanner-container{margin-left:calc(-50vw - -538.5px)}}@media (min-width:760px){.PageBuilder-col-9 .BrandBanner-container{margin-bottom:-100px;margin-top:50px}.PageBuilder-col-9{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.PageBuilder-col-9{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.PageBuilder-col-9{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.PageBuilder-col-9{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.PageBuilder-col-9{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.PageBuilder-col-9{flex-grow:0;flex-shrink:0;margin-right:0;max-width:calc(66.66667% - 10px);min-width:calc(66.66667% - 10px)}.PageBuilder-col-9:last-child{margin-right:0}}@media (min-width:1340px){.PageBuilder-col-9{flex-grow:0;flex-shrink:0;max-width:calc(75% - 7.5px);min-width:calc(75% - 7.5px)}.PageBuilder-col-9.PageBuilder-article{flex-grow:0;flex-shrink:0;margin-left:calc(8.33333% + 2.5px);max-width:calc(58.33333% - 12.5px);min-width:calc(58.33333% - 12.5px)}}@media (min-width:760px){.PageBuilder-col-12{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.PageBuilder-col-12{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.PageBuilder-col-12{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.PageBuilder-col-12{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.PageBuilder-col-12{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.PageBuilder-col-12{flex-grow:0;flex-shrink:0;margin-right:0;max-width:100%;min-width:100%}.PageBuilder-col-12:last-child{margin-right:0}}@media (min-width:1340px){.PageBuilder-col-12{flex-grow:0;flex-shrink:0;max-width:100%;min-width:100%}}.PageBuilder-col-full{flex-grow:0;flex-shrink:0;margin-right:0;max-width:100%;min-width:100%}.PageBuilder-col-full .MyComponentName-container{width:100vw}@media (min-width:1340px){.PageBuilder-col-full .MyComponentName-container{max-width:none}}.PageBuilder-col-full:last-child{margin-right:0}.PageBuilder-clear-col-padding{padding-bottom:0;padding-top:0}.PageBuilder-paddedWrapper{padding-bottom:15px;padding-top:15px}@media (min-width:1020px){.PageBuilder-paddedWrapper{padding-bottom:20px;padding-top:25px}.PageBuilder-hasBanner{margin-bottom:130px}}.PageBuilder-sidebar{flex-grow:0;flex-shrink:0;max-width:calc(100% - 30px);min-width:calc(100% - 30px)}@media (min-width:760px){.PageBuilder-sidebar{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.PageBuilder-sidebar{max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media screen and (min-width:1020px) and (-ms-high-contrast:none){.PageBuilder-sidebar{max-width:100%;min-width:100%}}@media (min-width:1340px){.PageBuilder-sidebar{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:360px){.PageBuilder-sidebar{min-width:100%}}@media (min-width:760px){.PageBuilder-sidebar{flex-grow:0;flex-shrink:0;max-width:100%;min-width:100%}}@media (min-width:1020px){.PageBuilder-sidebar{flex-grow:0;flex-shrink:0;margin-bottom:40px;margin-left:30px;max-width:calc(33.33333% - 20px);min-width:calc(33.33333% - 20px)}}@media (min-width:1340px){.PageBuilder-sidebar{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(25% - 22.5px);min-width:calc(25% - 22.5px)}}.PageBuilder-sidebarLeft{flex-grow:0;flex-shrink:0;max-width:calc(100% - 30px);min-width:calc(100% - 30px)}@media (min-width:760px){.PageBuilder-sidebarLeft{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.PageBuilder-sidebarLeft{max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media screen and (min-width:1020px) and (-ms-high-contrast:none){.PageBuilder-sidebarLeft{max-width:100%;min-width:100%}}@media (min-width:1340px){.PageBuilder-sidebarLeft{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:360px){.PageBuilder-sidebarLeft{min-width:100%}}@media (min-width:760px){.PageBuilder-sidebarLeft{flex-grow:0;flex-shrink:0;max-width:100%;min-width:100%}}@media (min-width:1020px){.PageBuilder-sidebarLeft{flex-grow:0;flex-shrink:0;margin-bottom:40px;margin-left:0;margin-right:30px;max-width:calc(22.22222% - 23.33333px);min-width:calc(22.22222% - 23.33333px);z-index:1}}@media (min-width:1340px){.PageBuilder-sidebarLeft{flex-grow:0;flex-shrink:0;margin-left:0;max-width:calc(25% - 22.5px);min-width:calc(25% - 22.5px)}}.PageBuilder-sidebarLeftNav{max-width:none}.PageBuilder-sidebarPro{margin-left:0;margin-right:30px}
/*# sourceMappingURL=source-maps/8033-bd16bf484f9e4ea2d12e.css.map*/
.SponsorLogo-container>div>div{align-items:center;align-self:center;display:flex;justify-content:center;margin:0;width:88px}
/*# sourceMappingURL=source-maps/8085-1a5cc3c66ac42df270ea.css.map*/
.TopBanner-container{overflow:hidden;text-align:center;width:100%}@media (min-width:760px){.TopBanner-container{margin:15px auto 0;min-height:120px;min-width:728px;padding:15px 0}}@media (min-width:1020px){.TopBanner-container{margin-left:auto;margin-right:auto}}.TopBanner-berkshireEvent{display:none}@media (max-width:759px){.TopBanner-berkshireEvent{display:block;margin:20px auto;max-width:318px;width:100%}}
/*# sourceMappingURL=source-maps/9326-2e93fa24e2d45402f2c0.css.map*/
@charset "UTF-8";.RecaptchaAcknowledgement-acknowledgement{color:#747474;flex:1;font-size:11px;font-weight:600;line-height:15px;margin-bottom:7px;margin-top:24px;width:100%}.RecaptchaAcknowledgement-acknowledgement a{color:#747474;font-weight:500;text-decoration:none}.RecaptchaAcknowledgement-acknowledgement a:hover{color:#747474;text-decoration:underline}.RecaptchaAcknowledgement-acknowledgement a:active{color:#747474}.RecaptchaAcknowledgement-reCaptchaPadding{margin-top:15px}.RecaptchaAcknowledgement-centerAligned{text-align:center}.RecaptchaAcknowledgement-leftAligned{text-align:left}.RecaptchaAcknowledgement-rightAligned{text-align:right}.AuthForms-container{margin:0 auto;padding:0 10px;width:458px}@media (max-width:759px){.AuthForms-container{max-width:458px;padding:20px 0 0;width:100%}}.AuthForms-container .AuthForms-signupContainer{margin:0 auto;padding:0 41px;text-align:center;width:458px}@media (max-width:759px){.AuthForms-container .AuthForms-signupContainer{padding:20px 0 0;width:100%}}.AuthForms-container .AuthForms-header{color:#171717;margin-bottom:20px}.AuthForms-container .AuthForms-createAccountHeader{color:#171717;margin-bottom:20px;text-align:center}.AuthForms-container .AuthForms-headerTitle{color:#071d39;font-size:20px;font-weight:700;text-align:center}.AuthForms-container .AuthForms-signinContent{font-size:14px;font-weight:450;padding-top:20px}.AuthForms-container .AuthForms-toggleCta{color:#424242;font-size:12px;font-weight:500;text-align:right}.AuthForms-container .AuthForms-instructions{margin-bottom:20px;text-align:left}.AuthForms-container .AuthForms-instructions p{color:#171717;font-size:14px;line-height:16px}.AuthForms-container .AuthForms-instructions p a{color:#005594;text-decoration:none}.AuthForms-container .AuthForms-instructions p a:hover{color:#002f6c}.AuthForms-container .AuthForms-formInputContainer{margin:0 auto 10px;max-width:350px}.AuthForms-container .AuthForms-formInputContainer.AuthForms-withErrors{margin:0 auto 25px}.AuthForms-container .AuthForms-formInput{width:100%}.AuthForms-container input::-ms-clear,.AuthForms-container input::-ms-reveal{display:none}.AuthForms-container .AuthForms-loginWaitMsg{word-wrap:break-word;border-radius:3px;color:#071d39;font-size:14px;font-weight:500;margin:10px 0;padding:10px;text-align:center}.AuthForms-container .AuthForms-accountButton,.AuthForms-container .AuthForms-submitButton{align-items:center;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#005594;border:1px solid #002f6c;border-radius:3px;color:#fff;cursor:pointer;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;height:50px!important;justify-content:center;letter-spacing:1px;margin:0 auto;max-width:260px!important;padding:0 20px;padding:0!important;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%;width:100%!important}.AuthForms-container .AuthForms-accountButton>span,.AuthForms-container .AuthForms-submitButton>span{display:block;line-height:12px}.AuthForms-container .AuthForms-accountButton [class*=" icon-"],.AuthForms-container .AuthForms-accountButton [class^=icon-],.AuthForms-container .AuthForms-submitButton [class*=" icon-"],.AuthForms-container .AuthForms-submitButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AuthForms-container .AuthForms-accountButton [class*=" icon-"]:before,.AuthForms-container .AuthForms-accountButton [class^=icon-]:before,.AuthForms-container .AuthForms-submitButton [class*=" icon-"]:before,.AuthForms-container .AuthForms-submitButton [class^=icon-]:before{line-height:12px}.AuthForms-container .AuthForms-accountButton:focus,.AuthForms-container .AuthForms-accountButton:hover,.AuthForms-container .AuthForms-submitButton:focus,.AuthForms-container .AuthForms-submitButton:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}.AuthForms-container .AuthForms-accountButton[class*=touchButton]:hover,.AuthForms-container .AuthForms-submitButton[class*=touchButton]:hover{background-color:#005594;border-color:#002f6c;color:#fff}@media (hover:hover){.AuthForms-container .AuthForms-accountButton[class*=touchButton]:hover,.AuthForms-container .AuthForms-submitButton[class*=touchButton]:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}}@media (min-width:760px){.AuthForms-container .AuthForms-accountButton,.AuthForms-container .AuthForms-submitButton{padding:0 30px;width:auto}}.AuthForms-container .AuthForms-accountButton:last-child,.AuthForms-container .AuthForms-submitButton:last-child{clear:both;margin-bottom:7px}.AuthForms-container .AuthForms-accountButton.AuthForms-disableButton,.AuthForms-container .AuthForms-accountButton.AuthForms-disableButton:hover,.AuthForms-container .AuthForms-submitButton.AuthForms-disableButton,.AuthForms-container .AuthForms-submitButton.AuthForms-disableButton:hover{background-color:#d9d9d9;border:#d9d9d9}.AuthForms-container.AuthForms-disableButton{background-color:#d9d9d9;border:none}.AuthForms-container.AuthForms-disableButton:hover{background-color:#d9d9d9}.AuthForms-container .AuthForms-accountButton{border-radius:3px;cursor:pointer;height:40px!important;margin:0 auto;padding:0!important}@media (min-width:760px){.AuthForms-container .AuthForms-accountButton{width:200px!important}}.AuthForms-container .AuthForms-accountButton:last-child{clear:both;margin-bottom:7px}.AuthForms-container .AuthForms-accountButton{align-items:center;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;border:1px solid #002f6c;color:#005594;display:flex;flex-direction:row;font-size:14px;font-size:12px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.AuthForms-container .AuthForms-accountButton>span{display:block;line-height:12px}.AuthForms-container .AuthForms-accountButton [class*=" icon-"],.AuthForms-container .AuthForms-accountButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AuthForms-container .AuthForms-accountButton [class*=" icon-"]:before,.AuthForms-container .AuthForms-accountButton [class^=icon-]:before{line-height:12px}.AuthForms-container .AuthForms-accountButton:focus,.AuthForms-container .AuthForms-accountButton:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}.AuthForms-container .AuthForms-accountButton[class*=touchButton]:hover{background-color:#fff;border-color:#002f6c;color:#005594}@media (hover:hover){.AuthForms-container .AuthForms-accountButton[class*=touchButton]:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}}@media (min-width:760px){.AuthForms-container .AuthForms-accountButton{padding:0 30px;width:auto}}.AuthForms-container .AuthForms-ctaButton{color:#005594;font-size:12px;font-weight:500}.AuthForms-container .AuthForms-ctaButton:hover{color:#002f6c}.AuthForms-container.AuthForms-forgotPassword{padding:0 21px}@media (min-width:760px){.AuthForms-container.AuthForms-forgotPassword{padding:0 60px}}.AuthForms-container.AuthForms-forgotPassword .AuthForms-formInputContainer{margin:15px 0 26px}.AuthForms-container .AuthForms-forgotPwdButton{color:#005594;display:block;font-size:14px;font-weight:500;margin:15px auto 0}.AuthForms-container .AuthForms-forgotPwdButton:hover{color:#002f6c}.AuthForms-formContainer{padding-bottom:25px}.AuthForms-containerRight{margin:0;padding:0;width:500px}@media (max-width:1019px){.AuthForms-containerRight{margin-top:24px;padding:0 20px;width:100%}}@media (max-width:759px){.AuthForms-containerRight{margin-top:10px;padding:0 14px}}.AuthForms-unlockButton{align-items:center;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#00a857;border:1px solid #00a857;border-radius:3px;box-shadow:-2px 2px 2px hsla(0,0%,9%,.25);color:#fff;cursor:pointer;display:flex;flex-direction:row;font-size:14px;font-size:22px;font-weight:600;font-weight:700;height:40px;height:50px;justify-content:center;letter-spacing:1px;letter-spacing:.2px;margin-bottom:7px;outline:.5px solid #333;padding:0 30px;text-align:center;text-transform:uppercase;text-transform:none;transition:all .15s linear;width:100%}.AuthForms-unlockButton>span{display:block;line-height:12px}.AuthForms-unlockButton [class*=" icon-"],.AuthForms-unlockButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AuthForms-unlockButton [class*=" icon-"]:before,.AuthForms-unlockButton [class^=icon-]:before{line-height:12px}.AuthForms-unlockButton:focus,.AuthForms-unlockButton:hover{background-color:#008456;border-color:#008456;color:#fff}.AuthForms-unlockButton[class*=touchButton]:hover{background-color:#00a857;border-color:#00a857;color:#fff}@media (hover:hover){.AuthForms-unlockButton[class*=touchButton]:hover{background-color:#008456;border-color:#008456;color:#fff}}@media (min-width:760px){.AuthForms-unlockButton{padding:0 30px;width:auto;width:100%}}.AuthForms-unlockIcon{margin-right:8px}.AuthForms-proFlow .AuthForms-submitButton{align-items:center;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#00a857;border:1px solid #00a857;border-radius:3px;color:#fff;cursor:pointer;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;height:50px!important;justify-content:center;letter-spacing:1px;margin:0 auto;padding:0 20px;padding:0!important;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.AuthForms-proFlow .AuthForms-submitButton>span{display:block;line-height:12px}.AuthForms-proFlow .AuthForms-submitButton [class*=" icon-"],.AuthForms-proFlow .AuthForms-submitButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AuthForms-proFlow .AuthForms-submitButton [class*=" icon-"]:before,.AuthForms-proFlow .AuthForms-submitButton [class^=icon-]:before{line-height:12px}.AuthForms-proFlow .AuthForms-submitButton:focus,.AuthForms-proFlow .AuthForms-submitButton:hover{background-color:#008456;border-color:#008456;color:#fff}.AuthForms-proFlow .AuthForms-submitButton[class*=touchButton]:hover{background-color:#00a857;border-color:#00a857;color:#fff}@media (hover:hover){.AuthForms-proFlow .AuthForms-submitButton[class*=touchButton]:hover{background-color:#008456;border-color:#008456;color:#fff}}@media (min-width:760px){.AuthForms-proFlow .AuthForms-submitButton{padding:0 30px;width:auto}}.AuthForms-proFlow .AuthForms-submitButton:last-child{margin-bottom:7px}.AuthForms-proFlow .AuthForms-submitButton.AuthForms-disableButton,.AuthForms-proFlow .AuthForms-submitButton.AuthForms-disableButton:hover{background-color:#d9d9d9;border:#d9d9d9}.AuthForms-proFlow .AuthForms-ctaButton{color:#00a857}.AuthForms-proFlow .AuthForms-ctaButton:hover{color:#008456}.AuthForms-proFlow .AuthForms-forgotPwdButton{color:#00a857}.AuthForms-proFlow .AuthForms-forgotPwdButton:hover{color:#008456}.AuthForms-proFlow .AuthForms-instructions a{color:#00a857}.AuthForms-proFlow .AuthForms-instructions a:hover,.AuthForms-proFlow .AuthForms-loginWaitMsg{color:#008456}.AuthForms-investingClubFlow{display:flex;flex-direction:column}.AuthForms-investingClubFlow .AuthForms-header{margin-bottom:15px}.AuthForms-investingClubFlow .AuthForms-submitButton{align-items:center;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#071d39;border:1px solid #071d39;border-radius:3px;color:#fff;cursor:pointer;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;height:50px!important;justify-content:center;letter-spacing:1px;margin:0 auto;padding:0 20px;padding:0 56px!important;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.AuthForms-investingClubFlow .AuthForms-submitButton>span{display:block;line-height:12px}.AuthForms-investingClubFlow .AuthForms-submitButton [class*=" icon-"],.AuthForms-investingClubFlow .AuthForms-submitButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AuthForms-investingClubFlow .AuthForms-submitButton [class*=" icon-"]:before,.AuthForms-investingClubFlow .AuthForms-submitButton [class^=icon-]:before{line-height:12px}.AuthForms-investingClubFlow .AuthForms-submitButton:focus,.AuthForms-investingClubFlow .AuthForms-submitButton:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}.AuthForms-investingClubFlow .AuthForms-submitButton[class*=touchButton]:hover{background-color:#071d39;border-color:#071d39;color:#fff}@media (hover:hover){.AuthForms-investingClubFlow .AuthForms-submitButton[class*=touchButton]:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}}@media (min-width:760px){.AuthForms-investingClubFlow .AuthForms-submitButton{padding:0 30px;width:auto}}.AuthForms-investingClubFlow .AuthForms-submitButton:last-child{margin-bottom:7px}.AuthForms-investingClubFlow .AuthForms-submitButton.AuthForms-disableButton,.AuthForms-investingClubFlow .AuthForms-submitButton.AuthForms-disableButton:hover{background-color:#d9d9d9;border:#d9d9d9}.AuthForms-investingClubFlow .AuthForms-toggleCta{color:#171717;font-size:18px;font-weight:600;margin-bottom:25px;text-align:center}.AuthForms-investingClubFlow .AuthForms-ctaButton{color:#336aa0;font-size:18px;font-weight:600}.AuthForms-investingClubFlow .AuthForms-ctaButton:hover{color:#1896ff}.AuthForms-investingClubFlow .AuthForms-forgotPwdButton{color:#071d39;font-weight:600}.AuthForms-investingClubFlow .AuthForms-forgotPwdButton:hover{color:#002f6c}.AuthForms-investingClubFlow .AuthForms-instructions a{color:#336aa0}.AuthForms-investingClubFlow .AuthForms-instructions a:hover{color:#1896ff}.AuthForms-investingClubFlow.AuthForms-forgotPassword{align-items:center;margin:20px 0 78px;padding:0}.AuthForms-investingClubFlow.AuthForms-forgotPassword .AuthForms-header{max-width:100%;width:100%}@media (min-width:760px){.AuthForms-investingClubFlow.AuthForms-forgotPassword .AuthForms-header{max-width:335px}}.AuthForms-investingClubFlow.AuthForms-forgotPassword .AuthForms-headerTitle{color:#071d39;font-size:20px;font-weight:700;text-align:left;width:100%}.AuthForms-investingClubFlow.AuthForms-forgotPassword .AuthForms-toggleCta{font-size:16px;font-weight:700;margin-bottom:47px;order:-1;text-align:right;width:100%}.AuthForms-investingClubFlow.AuthForms-forgotPassword .AuthForms-ctaButton{font-size:16px;font-weight:700}.AuthForms-investingClubFlow.AuthForms-forgotPassword .AuthForms-instructions{font-size:14px;margin:0 0 28px;max-width:100%;text-align:left;width:100%}@media (min-width:760px){.AuthForms-investingClubFlow.AuthForms-forgotPassword .AuthForms-instructions{max-width:335px}}.AuthForms-investingClubFlow.AuthForms-forgotPassword .AuthForms-formInputContainer{max-width:100%;width:100%}@media (min-width:760px){.AuthForms-investingClubFlow.AuthForms-forgotPassword .AuthForms-formInputContainer{max-width:335px}}.AuthForms-investingClubFlow.AuthForms-forgotPasswordConfirmation{margin-bottom:48px}.AuthForms-investingClubFlow.AuthForms-forgotPasswordConfirmation .AuthForms-instructions{font-size:14px;font-weight:600;margin:36px 0;max-width:100%;text-align:center;width:100%}.AuthForms-investingClubFlow.AuthForms-forgotPasswordConfirmation .AuthForms-instructions p{display:inline}.AuthForms-investingClubFlow.AuthForms-forgotPasswordConfirmation .AuthForms-instructions p:after{content:" "}@media (min-width:760px){.AuthForms-investingClubFlow.AuthForms-forgotPasswordConfirmation .AuthForms-instructions{max-width:335px}}.AuthForms-investingClubFlow.AuthForms-forgotPasswordConfirmation .AuthForms-submitButton{padding:0 71px!important}.AuthForms-resetPasswordAccountInfo{color:#424242;font-size:14px;font-weight:700;margin-bottom:20px;margin-top:20px;text-align:left}.AuthForms-resetPasswordAccountInfo span{color:#747474}.AuthForms-miscellaneousError{word-wrap:break-word;border-radius:3px;color:#f44336;font-size:14px;margin:10px 0;padding:10px;text-align:center}.AuthForms-newtocnbc{color:#071d39;font-size:15px;font-weight:700;margin-top:25px;padding:0 0 15px;text-align:center}.Checkboxes-checkboxContainer.Checkboxes-checkboxes{padding:0}.Checkboxes-errorText{color:#ce2b2b;font-size:11px;height:12px;margin:0 auto 5px;overflow:visible;text-align:left}.Checkboxes-checkboxLabel{cursor:pointer;display:block;overflow:hidden;padding-left:16px;position:relative;-webkit-user-select:none;-moz-user-select:none;user-select:none}.Checkboxes-checkboxLabel input{cursor:pointer;height:0;opacity:0;position:absolute;right:0;width:0}.Checkboxes-checkmark{border:1px solid #424242;border-radius:3px;height:13px;left:0;position:absolute;top:3px;width:13px}.Checkboxes-checkmark.Checkboxes-checkmarkError{border:1px solid #ce2b2b}.Checkboxes-checkboxLabel input:checked~.Checkboxes-checkmark{background-color:#171717}.Checkboxes-checkmark:after{content:"";display:none;position:absolute}.Checkboxes-checkboxLabel input:checked~.Checkboxes-checkmark:after{display:block}.Checkboxes-checkboxLabel .Checkboxes-checkmark:after{border:solid #fff;border-width:0 2px 2px 0;height:6px;left:3px;top:0;transform:rotate(45deg);width:3px}.Checkboxes-checkboxDP{margin-bottom:0!important}.Checkboxes-checkboxLabelText,.Checkboxes-checkboxLabelTextBold{color:#424242;flex:1;font-size:11px;margin:0 0 26px 6px}.Checkboxes-checkboxLabelText.Checkboxes-staySignedIn,.Checkboxes-staySignedIn.Checkboxes-checkboxLabelTextBold{font-size:14px;margin-top:2px}.Checkboxes-checkboxLabelText a,.Checkboxes-checkboxLabelTextBold a{color:#171717;text-decoration:none}.Checkboxes-checkboxLabelText a:hover,.Checkboxes-checkboxLabelTextBold a:hover{color:#171717;text-decoration:underline}.Checkboxes-checkboxLabelText p,.Checkboxes-checkboxLabelTextBold p{color:#424242;margin-bottom:0}.Checkboxes-checkboxLabelTextBold{font-weight:600;line-height:18px;margin:-2px 0 26px 6px;text-align:start;text-transform:uppercase}.Checkboxes-checkboxLink{color:#005594!important}.SubscriptionsUpsell-upsell{color:#424242;font-size:14px;font-weight:600;line-height:normal;margin:0}.SubscriptionsUpsell-upsell a.SubscriptionsUpsell-upsellLink{color:#00a857;font-size:14px;font-weight:600}.SubscriptionsUpsell-upsell a.SubscriptionsUpsell-upsellLink:hover{color:#008456}.SubscriptionsUpsell-upsell.SubscriptionsUpsell-subscriptionFlow{font-size:18px;text-align:center}.SubscriptionsUpsell-upsell.SubscriptionsUpsell-subscriptionFlow a.SubscriptionsUpsell-upsellLink{color:#005594;font-size:18px}.SubscriptionsUpsell-upsell.SubscriptionsUpsell-subscriptionFlow a.SubscriptionsUpsell-upsellLink:hover{color:#002f6c}.SubscriptionsUpsell-upsell.SubscriptionsUpsell-subscriptionFlow .SubscriptionsUpsell-investingClubUpsellCopy,.SubscriptionsUpsell-upsell.SubscriptionsUpsell-subscriptionFlow .SubscriptionsUpsell-investingClubUpsellCopy a.SubscriptionsUpsell-upsellLink{font-size:20px}.SubscriptionsUpsell-upsell.SubscriptionsUpsell-subscriptionFlow .SubscriptionsUpsell-investingClubUpsellCopy .SubscriptionsUpsell-icUpsellHeader{font-size:24px}.SubscriptionsUpsell-upsell .SubscriptionsUpsell-cfaContainer{color:#171717;text-align:center}.SubscriptionsUpsell-upsell .SubscriptionsUpsell-cfaContainer .SubscriptionsUpsell-cfaHeader{color:#071d39;margin:0 0 15px}.SubscriptionsUpsell-upsell .SubscriptionsUpsell-cfaContainer .SubscriptionsUpsell-cfaButton{align-items:center;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;border:1px solid #005594;border-radius:3px;color:#005594;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;height:45px;justify-content:center;letter-spacing:1px;margin:auto;max-width:260px!important;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%;width:100%!important}.SubscriptionsUpsell-upsell .SubscriptionsUpsell-cfaContainer .SubscriptionsUpsell-cfaButton>span{display:block;line-height:12px}.SubscriptionsUpsell-upsell .SubscriptionsUpsell-cfaContainer .SubscriptionsUpsell-cfaButton [class*=" icon-"],.SubscriptionsUpsell-upsell .SubscriptionsUpsell-cfaContainer .SubscriptionsUpsell-cfaButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.SubscriptionsUpsell-upsell .SubscriptionsUpsell-cfaContainer .SubscriptionsUpsell-cfaButton [class*=" icon-"]:before,.SubscriptionsUpsell-upsell .SubscriptionsUpsell-cfaContainer .SubscriptionsUpsell-cfaButton [class^=icon-]:before{line-height:12px}.SubscriptionsUpsell-upsell .SubscriptionsUpsell-cfaContainer .SubscriptionsUpsell-cfaButton:focus,.SubscriptionsUpsell-upsell .SubscriptionsUpsell-cfaContainer .SubscriptionsUpsell-cfaButton:hover{background-color:#005594;border-color:#005594;color:#fff}.SubscriptionsUpsell-upsell .SubscriptionsUpsell-cfaContainer .SubscriptionsUpsell-cfaButton[class*=touchButton]:hover{background-color:#fff;border-color:#005594;color:#005594}@media (hover:hover){.SubscriptionsUpsell-upsell .SubscriptionsUpsell-cfaContainer .SubscriptionsUpsell-cfaButton[class*=touchButton]:hover{background-color:#005594;border-color:#005594;color:#fff}}@media (min-width:760px){.SubscriptionsUpsell-upsell .SubscriptionsUpsell-cfaContainer .SubscriptionsUpsell-cfaButton{padding:0 30px;width:auto}}.SubscriptionsUpsell-upsell .SubscriptionsUpsell-cfaContainer .SubscriptionsUpsell-cfaText{font-size:14px;line-height:16px;margin:14px auto 30px;max-width:350px}.SubscriptionsUpsell-upsell.SubscriptionsUpsell-bold{font-size:21px;text-align:center}.SubscriptionsUpsell-upsell.SubscriptionsUpsell-bold a.SubscriptionsUpsell-upsellLink{font-size:21px}.SubscriptionsUpsell-upsell.SubscriptionsUpsell-bold.SubscriptionsUpsell-subscriptionFlow{font-size:24px}.SubscriptionsUpsell-upsell.SubscriptionsUpsell-bold.SubscriptionsUpsell-subscriptionFlow a.SubscriptionsUpsell-upsellLink{color:#2077b6;font-size:24px}.SubscriptionsUpsell-upsell.SubscriptionsUpsell-bold.SubscriptionsUpsell-subscriptionFlow .SubscriptionsUpsell-investingClubUpsellCopy,.SubscriptionsUpsell-upsell.SubscriptionsUpsell-bold.SubscriptionsUpsell-subscriptionFlow .SubscriptionsUpsell-investingClubUpsellCopy a.SubscriptionsUpsell-upsellLink{font-size:20px}.SubscriptionsUpsell-upsell.SubscriptionsUpsell-bold.SubscriptionsUpsell-subscriptionFlow .SubscriptionsUpsell-investingClubUpsellCopy .SubscriptionsUpsell-icUpsellHeader{font-size:24px}.AreYouSure-container{color:#171717;font-size:18px;font-weight:700;padding-top:18px;text-align:center}@media (max-width:759px){.AreYouSure-container{width:100%}}.AreYouSure-header{font-size:18px;font-weight:700;height:20px;margin-bottom:12px}.AreYouSure-subText{font-size:14px;font-weight:600;height:16px;margin-bottom:48px}.AreYouSure-buttons{padding:0 32px 7px}@media (min-width:760px){.AreYouSure-buttons{align-items:stretch;display:flex}}@media (max-width:759px){.AreYouSure-buttons{padding:0}}.AreYouSure-primaryButton{align-items:center;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#00a857;border:1px solid #00a857;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;margin:0;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.AreYouSure-primaryButton>span{display:block;line-height:12px}.AreYouSure-primaryButton [class*=" icon-"],.AreYouSure-primaryButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AreYouSure-primaryButton [class*=" icon-"]:before,.AreYouSure-primaryButton [class^=icon-]:before{line-height:12px}.AreYouSure-primaryButton:focus,.AreYouSure-primaryButton:hover{background-color:#008456;border-color:#008456;color:#fff}.AreYouSure-primaryButton[class*=touchButton]:hover{background-color:#00a857;border-color:#00a857;color:#fff}@media (hover:hover){.AreYouSure-primaryButton[class*=touchButton]:hover{background-color:#008456;border-color:#008456;color:#fff}}@media (min-width:760px){.AreYouSure-primaryButton{padding:0 30px;width:auto}}.AreYouSure-secondaryButton{align-items:center;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;border:1px solid #00a857;color:#00a857;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;margin:0 24px 0 0;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.AreYouSure-secondaryButton>span{display:block;line-height:12px}.AreYouSure-secondaryButton [class*=" icon-"],.AreYouSure-secondaryButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AreYouSure-secondaryButton [class*=" icon-"]:before,.AreYouSure-secondaryButton [class^=icon-]:before{line-height:12px}.AreYouSure-secondaryButton:focus,.AreYouSure-secondaryButton:hover{background-color:#fff;border-color:#008456;color:#008456}.AreYouSure-secondaryButton[class*=touchButton]:hover{background-color:#fff;border-color:#00a857;color:#00a857}@media (hover:hover){.AreYouSure-secondaryButton[class*=touchButton]:hover{background-color:#fff;border-color:#008456;color:#008456}}@media (min-width:760px){.AreYouSure-secondaryButton{padding:0 30px;width:auto}}@media (max-width:759px){.AreYouSure-secondaryButton{margin:0 0 28px}}.AreYouSure-primaryButton,.AreYouSure-secondaryButton{border-radius:3px;flex:1;font-size:16px;height:50px;padding:0;width:185px}@media (max-width:759px){.AreYouSure-primaryButton,.AreYouSure-secondaryButton{width:100%}}.AreYouSure-investingClubFlow .AreYouSure-header{font-weight:600}.AreYouSure-investingClubFlow .AreYouSure-subText{font-weight:500}.AreYouSure-investingClubFlow .AreYouSure-primaryButton{align-items:center;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#071d39;border:1px solid #071d39;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.AreYouSure-investingClubFlow .AreYouSure-primaryButton>span{display:block;line-height:12px}.AreYouSure-investingClubFlow .AreYouSure-primaryButton [class*=" icon-"],.AreYouSure-investingClubFlow .AreYouSure-primaryButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AreYouSure-investingClubFlow .AreYouSure-primaryButton [class*=" icon-"]:before,.AreYouSure-investingClubFlow .AreYouSure-primaryButton [class^=icon-]:before{line-height:12px}.AreYouSure-investingClubFlow .AreYouSure-primaryButton:focus,.AreYouSure-investingClubFlow .AreYouSure-primaryButton:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}.AreYouSure-investingClubFlow .AreYouSure-primaryButton[class*=touchButton]:hover{background-color:#071d39;border-color:#071d39;color:#fff}@media (hover:hover){.AreYouSure-investingClubFlow .AreYouSure-primaryButton[class*=touchButton]:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}}@media (min-width:760px){.AreYouSure-investingClubFlow .AreYouSure-primaryButton{padding:0 30px;width:auto}}.AreYouSure-investingClubFlow .AreYouSure-secondaryButton{align-items:center;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;border:1px solid #071d39;color:#071d39;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.AreYouSure-investingClubFlow .AreYouSure-secondaryButton>span{display:block;line-height:12px}.AreYouSure-investingClubFlow .AreYouSure-secondaryButton [class*=" icon-"],.AreYouSure-investingClubFlow .AreYouSure-secondaryButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.AreYouSure-investingClubFlow .AreYouSure-secondaryButton [class*=" icon-"]:before,.AreYouSure-investingClubFlow .AreYouSure-secondaryButton [class^=icon-]:before{line-height:12px}.AreYouSure-investingClubFlow .AreYouSure-secondaryButton:focus,.AreYouSure-investingClubFlow .AreYouSure-secondaryButton:hover{background-color:#fff;border-color:#002f6c;color:#002f6c}.AreYouSure-investingClubFlow .AreYouSure-secondaryButton[class*=touchButton]:hover{background-color:#fff;border-color:#071d39;color:#071d39}@media (hover:hover){.AreYouSure-investingClubFlow .AreYouSure-secondaryButton[class*=touchButton]:hover{background-color:#fff;border-color:#002f6c;color:#002f6c}}@media (min-width:760px){.AreYouSure-investingClubFlow .AreYouSure-secondaryButton{padding:0 30px;width:auto}}.AreYouSure-investingClubFlow .AreYouSure-primaryButton,.AreYouSure-investingClubFlow .AreYouSure-secondaryButton{border-radius:3px;flex:1;font-size:16px;height:50px;line-height:12px;padding:0;width:185px}@media (max-width:759px){.AreYouSure-investingClubFlow .AreYouSure-primaryButton,.AreYouSure-investingClubFlow .AreYouSure-secondaryButton{width:100%}}.LogoHeader-header{margin-bottom:12px;text-align:center}.LogoHeader-logo{display:inline}.LogoHeader-proPill{display:inline;margin-left:8px}.LogoHeader-investingClubHeader{display:flex;justify-content:center;margin-bottom:28px;margin-top:11px}.LogoHeader-investingClubHeader .LogoHeader-logo{fill:#071d39;stroke:#071d39;max-width:255px}.SignedIn-container{color:#171717;font-size:18px;font-weight:700;text-align:center;width:400px}@media (max-width:759px){.SignedIn-container{width:100%}}.SignedIn-container .SignedIn-messageConfirmation{font-size:18px;font-weight:600;text-align:center}.SignedIn-container.SignedIn-blank{background-color:#f8f8f8}.SignedIn-container.SignedIn-investingClubFlow .SignedIn-messageConfirmation{font-weight:700}.SignedIn-okayButton{align-items:center;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#00a857;border:1px solid #00a857;border-radius:3px;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;height:50px;justify-content:center;letter-spacing:1px;margin:0 auto 15px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%;width:200px}.SignedIn-okayButton>span{display:block;line-height:12px}.SignedIn-okayButton [class*=" icon-"],.SignedIn-okayButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.SignedIn-okayButton [class*=" icon-"]:before,.SignedIn-okayButton [class^=icon-]:before{line-height:12px}.SignedIn-okayButton:focus,.SignedIn-okayButton:hover{background-color:#008456;border-color:#008456;color:#fff}.SignedIn-okayButton[class*=touchButton]:hover{background-color:#00a857;border-color:#00a857;color:#fff}@media (hover:hover){.SignedIn-okayButton[class*=touchButton]:hover{background-color:#008456;border-color:#008456;color:#fff}}@media (min-width:760px){.SignedIn-okayButton{padding:0 30px;width:auto}}.SignedIn-logosContainer{display:flex;justify-content:center;margin-bottom:16px}.SignedIn-logosContainer>*{align-self:baseline;height:40px;text-align:center;width:100px}.SignedIn-proPill{height:22px}.SignedIn-checkmarkContainer{align-items:center;height:40px;margin-bottom:15px}.SignedIn-checkmarkContainer .SignedIn-checkMark,.SignedIn-checkmarkContainer .SignedIn-checkmarkCNBC,.SignedIn-checkmarkContainer .SignedIn-checkmarkDefault,.SignedIn-checkmarkContainer .SignedIn-checkmarkPro{height:40px;margin:0 30px;width:40px}.SignedIn-checkmarkCNBC circle{fill:#005594;opacity:.25}.SignedIn-checkmarkCNBC path{fill:#005594}.SignedIn-checkmarkPro circle{fill:#00a857;opacity:.25}.SignedIn-checkmarkPro path{fill:#00a857}.SignedIn-checkmarkDefault circle{fill:#005594;opacity:1}.SignedIn-checkmarkDefault path{fill:#fff}.ProPill-proPillLink{display:inline-block;padding-right:4px}.ProPill-proPill{bottom:0;display:inline-block;position:relative;vertical-align:baseline;width:auto!important}.InvestingClubPill-investingClubPillLink{display:inline-block;padding-right:4px}.InvestingClubPill-investingClubPill,.InvestingClubPill-latestNews{bottom:0;display:inline-block;position:relative;vertical-align:baseline;width:auto}.InvestingClubPill-latestNews{bottom:-2px}.Modal-modalBackground{background:rgba(0,0,0,.7);height:100%;left:0;overflow-y:auto;position:fixed;top:0;transition:background-color .4s;width:100%;z-index:100001}.Modal-bottomModal.Modal-modal{background:#f8f8f8;border-radius:3px;bottom:0;box-shadow:5px 5px 20px hsla(0,0%,9%,.1);display:inline-block;height:528px;left:0;margin-top:0!important;max-width:100%;position:fixed;top:auto;transform:none;width:100%}@media (max-width:1019px){.Modal-bottomModal.Modal-modal{height:642px}}@media (max-width:759px){.Modal-bottomModal.Modal-modal{height:100%;position:relative;top:0}}.Modal-modal{background:#f8f8f8;border-radius:3px;box-shadow:5px 5px 20px hsla(0,0%,9%,.1);display:inline-block;left:50%;margin-top:10vh;max-width:100%;overflow:auto;position:relative;transform:translateX(-50%)}@media (max-width:759px){.Modal-modal{height:100%;left:auto;margin:0;transform:none;width:100%}}.Modal-modal.Modal-investingClubFlow{background:#8fd0ff}.Modal-modalContents{overflow:auto}.Modal-closeButton{color:#a9a9a9;cursor:pointer;position:absolute;right:12px;top:12px}.Confirmation-copy{color:#171717;margin-bottom:16px}.Confirmation-copy p.Confirmation-header{font-size:18px;font-weight:600;line-height:20px}.Confirmation-copy p{font-size:14px;font-weight:600;line-height:16px;margin:0 0 10px}.Confirmation-email{color:#747474;font-size:14px;font-weight:500}.Confirmation-checkMark,.Confirmation-checkmarkDefault,.Confirmation-checkmarkInvestingClub,.Confirmation-checkmarkPro{height:40px;margin-bottom:20px;width:40px}.Confirmation-checkmarkDefault circle{fill:#005594;opacity:.25}.Confirmation-checkmarkDefault path{fill:#005594}.Confirmation-checkmarkPro circle{fill:#00a857;opacity:.25}.Confirmation-checkmarkPro path{fill:#00a857}.Confirmation-confirmation{color:#424242;font-size:14px;font-weight:600;margin-bottom:24px;margin-top:0;text-align:center}.Confirmation-checkmarkInvestingClub circle{fill:#005594;opacity:1}.Confirmation-checkmarkInvestingClub path{fill:#fff}.Confirmation-confirmationCode{color:#747474;font-weight:500}.Confirmation-investingClubFlow{align-items:center;margin:20px 0 30px;padding:0}.Confirmation-investingClubFlow .Confirmation-copy{margin-bottom:10px}.Confirmation-investingClubFlow .Confirmation-copy p.Confirmation-header{margin-bottom:20px}.Confirmation-investingClubFlow .Confirmation-copy p.Confirmation-email{margin-bottom:0}.Confirmation-investingClubFlow .Confirmation-checkmarkInvestingClub{margin:10px 0}.Confirmation-investingClubFlow .Confirmation-confirmationText{margin:10px 0 38px}.Confirmation-investingClubFlow .Confirmation-confirmationText .Confirmation-confirmationCode{color:#171717;font-weight:600}.ErrorModal-copy{color:#171717;margin-bottom:16px}.ErrorModal-copy p.ErrorModal-header{font-size:18px;font-weight:600;line-height:20px}.ErrorModal-copy p{font-size:14px;font-weight:600;line-height:16px;margin:0 0 10px}.ErrorModal-email{color:#747474;font-size:14px;font-weight:500}.ErrorModal-checkMark{height:40px;margin-bottom:15px;width:40px}.ErrorModal-confirmation{color:#424242;font-weight:600;margin-bottom:24px}.ErrorModal-confirmationCode{color:#747474;font-weight:500}.ErrorModal-helpDesk{color:#171717;font-weight:600;margin-bottom:24px}.ErrorModal-helpDesk a{color:#00a857}.ErrorModal-helpDesk a:hover{color:#008456}.ErrorModal-investingClubFlow{align-items:center;margin:20px 0 30px;padding:0}.ErrorModal-investingClubFlow .ErrorModal-copy{margin-bottom:10px;padding:0 10%}.ErrorModal-investingClubFlow .ErrorModal-copy p.ErrorModal-header{margin-bottom:20px}.ErrorModal-investingClubFlow .ErrorModal-copy p.ErrorModal-email{margin-bottom:0}.ErrorModal-investingClubFlow .ErrorModal-confirmation{margin:0}.ErrorModal-investingClubFlow .ErrorModal-helpDesk{margin:20px 0 38px}.ErrorModal-investingClubFlow .ErrorModal-helpDesk a{color:#005594}.ErrorModal-investingClubFlow .ErrorModal-helpDesk a:hover{color:#1896ff}.SignupProgress-stepsLine{background-color:#d9d9d9}.SignupProgress-stepsLine.SignupProgress-stepsLineComplete{background-color:#00a857}@media (max-width:759px){.SignupProgress-stepsPianoTest{padding:20px 0}.SignupProgress-stepsPianoTest:before{background:#27313c;content:"";height:100%;left:50%;position:absolute;top:0;transform:translateX(-50%);width:100vw}.SignupProgress-stepsPianoTest .SignupProgress-stepsLine{background-color:#d9d9d9;z-index:0}.SignupProgress-stepsPianoTest .SignupProgress-stepsLine.SignupProgress-stepsLineComplete{background-color:#00a857}.SignupProgress-stepsPianoTest .SignupProgress-stepTitle{color:#9e9e9e}.SignupProgress-stepsPianoTest .SignupProgress-stepTitleActive{color:#fff}}.SignupProgress-stepTitle{color:#9e9e9e}.SignupProgress-stepTitleActive{color:#424242}.NotAvailableModal-contentWrapper{padding:40px;text-align:center}.NotAvailableModal-contentWrapper img{margin:auto}.PasswordAssistiveText-assistiveText{background-color:#f8f8f8;border:1px solid #d9d9d9;border-radius:0 0 6px 6px;border-top:0;padding:10px 5px 5px;position:absolute;width:100%;z-index:2}.PasswordAssistiveText-assistiveTextItem{color:#bababa;font-size:12px;font-weight:500;line-height:16px;margin-bottom:5px;text-align:left}.PasswordAssistiveText-assistiveTextItemComplete{color:#171717}.PasswordAssistiveText-checkMark{visibility:hidden}.PasswordAssistiveText-checkMarkDisplay{height:10px;margin-right:5px;visibility:visible}.AuthPasswordInput-assistiveTextContainer{position:relative;width:100%}.AccountHasEmailError-signIn{font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:inherit;margin-left:3px}.UserCreateAndSubmit-container{margin:0 auto;text-align:center;width:100%}@media (min-width:760px){.UserCreateAndSubmit-container{width:340px}}.UserCreateAndSubmit-loggedInAccount{color:#424242;font-size:14px;font-weight:700;margin-bottom:20px;margin-top:20px}.UserCreateAndSubmit-loggedInAccountEmail{color:#747474}.UserCreateAndSubmit-continueButton{align-items:center;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#00a857;border:1px solid #00a857;border-radius:3px;color:#fff;cursor:pointer;display:flex;flex-direction:row;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-size:16px;font-weight:600;font-weight:700;height:40px;height:50px;justify-content:center;letter-spacing:1px;margin:0 auto 24px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%;width:190px}.UserCreateAndSubmit-continueButton>span{display:block;line-height:12px}.UserCreateAndSubmit-continueButton [class*=" icon-"],.UserCreateAndSubmit-continueButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.UserCreateAndSubmit-continueButton [class*=" icon-"]:before,.UserCreateAndSubmit-continueButton [class^=icon-]:before{line-height:12px}.UserCreateAndSubmit-continueButton:focus,.UserCreateAndSubmit-continueButton:hover{background-color:#008456;border-color:#008456;color:#fff}.UserCreateAndSubmit-continueButton[class*=touchButton]:hover{background-color:#00a857;border-color:#00a857;color:#fff}@media (hover:hover){.UserCreateAndSubmit-continueButton[class*=touchButton]:hover{background-color:#008456;border-color:#008456;color:#fff}}@media (min-width:760px){.UserCreateAndSubmit-continueButton{padding:0 30px;width:auto;width:190px}}@media (max-width:759px){.UserCreateAndSubmit-continueButton{width:100%}}.UserCreateAndSubmit-cta{color:#424242;font-weight:500;margin-bottom:24px;text-align:center}.UserCreateAndSubmit-formInputContainer{margin:0 auto 30px}@media (min-width:760px){.UserCreateAndSubmit-formInputContainer{width:340px}}.UserCreateAndSubmit-formInput{width:100%}input::-ms-clear,input::-ms-reveal{display:none}.UserCreateAndSubmit-infoText{color:#424242;flex:1;font-size:11px;line-height:13px;margin:0 0 12px 12px;text-align:center}.UserCreateAndSubmit-infoText a{color:#171717;font-weight:500;text-decoration:none}.UserCreateAndSubmit-infoText p{margin-bottom:0}.UserCreateAndSubmit-questionAndCta{color:#424242;font-size:12px;font-weight:700;margin-bottom:20px}.UserCreateAndSubmit-questionAndCta button{color:#00a857;font-size:12px;font-weight:700}.UserCreateAndSubmit-questionAndCta button:hover{color:#008456}.UserCreateAndSubmit-miscellaneousError{word-wrap:break-word;border-radius:3px;color:#f44336;font-size:12px;margin:0 auto 15px;padding:10px;width:340px}@media (min-width:1020px){.UserCreateAndSubmit-investingClubError{position:relative;right:150px}.UserCreateAndSubmit-investingClubContainer{width:322px}}.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-investingClubDivider{border-bottom:1px solid #071d39;font-size:16px;font-weight:600;line-height:.1em;margin:10px auto 20px;text-align:center;width:186px}.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-investingClubDivider span{background:#fff;padding:0 10px}.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton{align-items:center;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#071d39;border:1px solid #071d39;border-radius:3px;color:#fff;cursor:pointer;display:flex;flex-direction:row;font-size:14px;font-size:16px;font-weight:600;font-weight:700;height:40px;height:50px;justify-content:center;letter-spacing:1px;margin:0 auto 24px;padding:16px 0;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%;width:190px}.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton>span{display:block;line-height:12px}.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton [class*=" icon-"],.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton [class*=" icon-"]:before,.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton [class^=icon-]:before{line-height:12px}.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton:focus,.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton[class*=touchButton]:hover{background-color:#071d39;border-color:#071d39;color:#fff}@media (hover:hover){.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton[class*=touchButton]:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}}@media (min-width:760px){.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton{padding:0 30px;width:auto}}@media (min-width:1020px){.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton{transform:translate(-77%);width:190px}}@media (max-width:759px){.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-continueButton{width:100%}}.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-cta{color:#071d39;font-size:20px;font-weight:600;margin-bottom:19px;text-align:center}@media (min-width:760px){.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-cta{margin-bottom:20px}}.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-questionAndCta{color:#071d39;font-size:18px;font-weight:400;margin-bottom:20px}.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-questionAndCta button{color:#005594;font-size:16px;font-weight:700}.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-questionAndCta button:hover{color:#0496ff}@media (min-width:1020px){.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-formInputContainer{width:322px}}.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-formInput{margin:0 auto}@media (min-width:760px) and (max-width:1019px){.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-formInput{width:100%}}@media (min-width:1020px){.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-checkBoxes,.UserCreateAndSubmit-investingClubContainer .UserCreateAndSubmit-recaptchaAcknowledgement{transform:translate(-45%)}.UserCreateAndSubmit-investingClubContainerLoggedIn .UserCreateAndSubmit-continueButton{transform:none}}.UserCreateAndSubmit-investingClubContainerLoggedIn .UserCreateAndSubmit-questionAndCta{color:#424242;font-size:12px;font-weight:700;margin-bottom:20px}.UserCreateAndSubmit-investingClubContainerLoggedIn .UserCreateAndSubmit-questionAndCta button{font-size:12px}.SelectPlan-container{width:670px}@media (min-width:760px) and (max-width:1019px){.SelectPlan-container{width:558px}}@media (max-width:759px){.SelectPlan-container{width:100%}}.SelectPlan-ctaPrimary{color:#171717;font-size:20px;font-weight:600;margin-bottom:5px;text-align:center}@media (max-width:759px){.SelectPlan-ctaPrimary{font-size:18px}}.SelectPlan-ctaSecondary{color:#424242;font-size:16px;font-weight:500;margin-bottom:10px;text-align:center}.SelectPlan-signedInMessage{background:#f1f1f1;border:1px solid #d9d9d9;border-radius:5px;color:#424242;font-size:14px;font-weight:600;line-height:20px;margin:10px auto;padding:5px;text-align:center;width:250px}.SelectPlan-plans{height:100%;text-align:center}@media (min-width:760px){.SelectPlan-plans{align-items:stretch;display:flex;margin:0 auto 29px;width:465px}}.SelectPlan-planDetails{background-color:#fff;border:2px solid #bababa;border-radius:3px;box-sizing:border-box;cursor:pointer;flex:1;font-size:12px;padding:17px}@media (max-width:759px){.SelectPlan-planDetails{margin-bottom:15px}}.SelectPlan-planDetails.SelectPlan-selected{border-color:#00a857;box-shadow:5px 5px 20px hsla(0,0%,9%,.1)}@media (min-width:760px){.SelectPlan-planDetails:first-child{margin-right:24px}}.SelectPlan-planHeader{background-color:#bababa;color:#fff;font-size:18px;font-weight:700;margin:-17px -17px 20px;padding:3px}.SelectPlan-planHeader.SelectPlan-selected{background-color:#00a857;margin-bottom:20px}.SelectPlan-price{color:#747474;font-size:20px;font-weight:700;line-height:14px}.SelectPlan-price.SelectPlan-selected{color:#008456}.SelectPlan-priceSubtext{color:#9e9e9e;font-size:14px;font-weight:700;margin-bottom:10px;text-transform:lowercase}.SelectPlan-perk{display:flex;margin-bottom:8px}.SelectPlan-perkBullet{margin-top:4px}.SelectPlan-perkText{flex:1;line-height:18px;padding-left:8px;text-align:left}.SelectPlan-perkText.SelectPlan-active{color:#424242;font-size:16px;font-weight:700}.SelectPlan-perkText.SelectPlan-active.SelectPlan-selected{color:#008456}.SelectPlan-planFootNote{color:#bababa;font-size:8px;line-height:9px}.SelectPlan-perksContainer{height:100%;margin:10px 0;text-align:center}@media (min-width:760px){.SelectPlan-perksContainer{align-items:stretch;margin:20px auto 29px;width:465px}}.SelectPlan-perksContainer .SelectPlan-perk{margin-bottom:15px}.SelectPlan-perksContainer .SelectPlan-perkText{color:#424242;font-size:15px;font-weight:500}@media (max-width:759px){.SelectPlan-containerPianoTest .SelectPlan-ctaPrimary{font-size:20px;margin-top:15px;padding:0 40px}.SelectPlan-containerPianoTest .SelectPlan-saveBubble{background-color:#00a857;border-radius:13px;color:#fff;font-size:12px;font-weight:700;height:24px;padding:2px 12px;position:absolute;right:-14px;top:-16px;width:80px}.SelectPlan-containerPianoTest .SelectPlan-discountPrice{color:#747474;font-size:12px;text-decoration:line-through}.SelectPlan-containerPianoTest .SelectPlan-planDetails{border:1px solid #9e9e9e;box-shadow:0 1px 4px rgba(0,0,0,.3);height:60px;margin:0 auto;max-width:203px;padding:0;position:relative}.SelectPlan-containerPianoTest .SelectPlan-selected{border:1px solid #008456;box-shadow:inset 1px 1px 6px rgba(0,0,0,.25)}.SelectPlan-containerPianoTest .SelectPlan-priceContainer{align-content:center;display:flex;flex-direction:column;font-weight:700;height:60px;justify-content:center;padding:7px 20px;text-align:right}.SelectPlan-containerPianoTest .SelectPlan-plans{padding:26px 40px 33px}.SelectPlan-containerPianoTest .SelectPlan-freeTrail{color:#424242;font-size:10px;font-weight:700;margin:9px auto 21px;max-width:203px;text-align:right}.SelectPlan-containerPianoTest .SelectPlan-frequency{font-size:10px;font-weight:700}.SelectPlan-containerPianoTest .SelectPlan-price{color:#00a857;font-size:16px;font-weight:700}.SelectPlan-containerPianoTest .SelectPlan-svgRadio{left:20px;position:absolute;top:20px}}.ProSignupModal-modalContents{padding:21px}.ProSignupModal-createAccContainer{width:670px}@media (min-width:760px) and (max-width:1019px){.ProSignupModal-createAccContainer{width:558px}}@media (max-width:759px){.ProSignupModal-createAccContainer{width:100%}}.ProSignupModal-createAccContainer .ProSignupModal-ctaPrimary{color:#171717;font-size:20px;font-weight:600;margin-bottom:5px;text-align:center}@media (max-width:759px){.ProSignupModal-createAccContainer .ProSignupModal-ctaPrimary{font-size:18px}}.SignupProgress-stepsLine{background-color:#171717;flex:1;height:1px;margin-top:9px;width:100%}.SignupProgress-steps{display:flex;margin:0 auto;padding-bottom:30px;position:relative;width:250px}.SignupProgress-step{flex:0;position:relative}.SignupProgress-stepIcon{box-shadow:5px 5px 20px hsla(0,0%,9%,.1)}.SignupProgress-stepTitle{color:#171717;font-size:11px;font-weight:600;left:-42px;position:absolute;text-align:center;width:100px}.tp-backdrop{background:rgba(0,0,0,.7)!important;transition:none!important}.tp-modal .tp-close{background:url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16 1.611 14.389 0 8 6.389 1.611 0 0 1.611 6.389 8 0 14.389 1.611 16 8 9.611 14.389 16 16 14.389 9.611 8 16 1.611Z' fill='%23747474'/%3E%3C/svg%3E") 50% no-repeat!important;border-radius:0!important;height:16px!important;right:12px!important;top:12px!important;transform:none!important;width:16px!important}.tp-modal .tp-close,.tp-modal .tp-close:focus,.tp-modal .tp-close:hover{box-shadow:none!important}.tp-iframe-wrapper{background-color:#f8f8f8!important;border-radius:4px;box-shadow:5px 5px 20px hsla(0,0%,9%,.1)!important;margin:0 auto!important;overflow:hidden;position:relative!important}@media (min-width:651px){.tp-iframe-wrapper{margin:100px auto!important}}.tp-modal{height:auto!important}.ValueProps-container{width:714px}@media (min-width:760px) and (max-width:1019px){.ValueProps-container{width:558px}}@media (max-width:759px){.ValueProps-container{width:100%}}.ValueProps-valuePropsContainer{display:flex;margin:0 auto;padding:10px 0 43px;width:620px}@media (max-width:1020px){.ValueProps-valuePropsContainer{display:block;padding-top:0;width:auto}}@media (min-width:360px) and (max-width:759px){.ValueProps-valuePropsContainer{width:90%}}.ValueProps-valuePropsContainerLoggedIn{display:block}.ValueProps-ctaSecondary{color:#424242;font-size:16px;font-weight:500;margin-bottom:10px;text-align:center}.ValueProps-signedInMessage{background:#f1f1f1;border:1px solid #d9d9d9;border-radius:5px;color:#424242;font-size:14px;font-weight:600;line-height:20px;margin:10px auto;padding:5px;text-align:center;width:250px}.ValueProps-perks{font-size:12px;line-height:14px;margin:0 10px 10px}.ValueProps-perk{display:flex;margin-bottom:8px}.ValueProps-perkBullet{margin-top:4px}.ValueProps-perkText{flex:1;line-height:18px;padding-left:8px;text-align:left}.ValueProps-investingClubPerks{height:100%;margin:10px 0 27px;text-align:center}@media (min-width:760px){.ValueProps-investingClubPerks{align-items:stretch;margin:40px 19px 20px auto;width:465px}}.ValueProps-investingClubPerks .ValueProps-perk{margin-bottom:25px}.ValueProps-investingClubPerks .ValueProps-perkText{color:#071d39;font-size:18px;font-weight:500}@media (min-width:360px) and (max-width:759px){.ValueProps-investingClubPerks .ValueProps-perkText{font-size:16px}}@media (min-width:760px){.ValueProps-investingClubPerksLoggedIn{margin:30px;width:auto}}.ValueProps-continueButton{align-items:center;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#00a857;border:1px solid #00a857;border-radius:3px;color:#fff;cursor:pointer;display:flex;flex-direction:row;font-size:14px;font-size:16px;font-weight:600;font-weight:700;height:40px;height:50px;justify-content:center;letter-spacing:1px;margin:0 auto 24px;padding:16px 0;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%;width:190px}.ValueProps-continueButton>span{display:block;line-height:12px}.ValueProps-continueButton [class*=" icon-"],.ValueProps-continueButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.ValueProps-continueButton [class*=" icon-"]:before,.ValueProps-continueButton [class^=icon-]:before{line-height:12px}.ValueProps-continueButton:focus,.ValueProps-continueButton:hover{background-color:#008456;border-color:#008456;color:#fff}.ValueProps-continueButton[class*=touchButton]:hover{background-color:#00a857;border-color:#00a857;color:#fff}@media (hover:hover){.ValueProps-continueButton[class*=touchButton]:hover{background-color:#008456;border-color:#008456;color:#fff}}@media (min-width:760px){.ValueProps-continueButton{padding:0 30px;width:auto;width:190px}}@media (max-width:759px){.ValueProps-continueButton{width:100%}}.ValueProps-valueProps{font-size:12px;letter-spacing:.5px;padding-left:8px;width:50%}@media (min-width:760px){.ValueProps-valueProps{font-size:14px}}.InvestingClubModal-modalContents{background:#fff linear-gradient(0deg,#8fd0ff,#fff 50%);padding:21px}.InvestingClubModal-modalContents.InvestingClubModal-nobackground{background:#f8f8f8}.InvestingClubModal-createAccContainer{width:670px}@media (min-width:760px) and (max-width:1019px){.InvestingClubModal-createAccContainer{width:558px}}@media (max-width:759px){.InvestingClubModal-createAccContainer{width:100%}}.InvestingClubModal-createAccContainer .InvestingClubModal-ctaPrimary{color:#171717;font-size:20px;font-weight:600;margin-bottom:5px;text-align:center}@media (max-width:759px){.InvestingClubModal-createAccContainer .InvestingClubModal-ctaPrimary{font-size:18px}}.SignInOrSignUpModal-modalContents{padding:21px}.UnlockConfirmation-modalContents{padding:40px 71px 71px}@media (max-width:759px){.UnlockConfirmation-modalContents{padding:40px 51px 51px}}.UnlockConfirmation-logoHeader{color:#333;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:28px;font-weight:700;line-height:1.05;padding-bottom:24px;text-align:center}@media (max-width:1019px){.UnlockConfirmation-logoHeader{font-size:28px;margin-bottom:12px}}@media (max-width:759px){.UnlockConfirmation-logoHeader{font-size:22px}}.UnlockConfirmation-logoProImg{display:inline-block;margin:0;padding:0;vertical-align:middle;width:204px}@media (max-width:1019px){.UnlockConfirmation-logoProImg{width:194px}}@media (max-width:759px){.UnlockConfirmation-logoProImg{width:164px}}.UnlockConfirmation-modalUnlockContainer{margin-left:auto;margin-right:auto;max-width:500px;padding:10px;text-align:center}@media (max-width:1019px){.UnlockConfirmation-modalUnlockContainer{width:100%}}.UnlockConfirmation-unlockText{color:#333;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:24px;font-weight:600;line-height:32px;padding-bottom:25px}@media (max-width:1019px){.UnlockConfirmation-unlockText{font-size:24px;line-height:26px;width:100%}}@media (max-width:759px){.UnlockConfirmation-unlockText{font-size:24px;line-height:22px}}.UnlockConfirmation-proText{color:#00a857}.UnlockConfirmation-unlockButton{align-items:center;background:rgba(0,168,87,.24);border-radius:50%;display:flex;height:40px;justify-content:center;margin-left:calc(50% - 20px);width:40px}.UnlockConfirmation-unlockIcon{height:25px;width:25px}.SignInOrSignUpConfirmationModal-modalContents{padding:21px}.LoggedInModal-modalContents{padding:40px 71px 71px}@media (max-width:759px){.LoggedInModal-modalContents{padding:40px 51px 51px}}.LoggedInModal-breaker{border:none;margin:0 -71px 24px;outline:.5px solid #cfd8e2}.LoggedInModal-logoHeader{color:#333;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:28px;font-weight:700;line-height:1.05;padding-bottom:24px;text-align:center}@media (max-width:1019px){.LoggedInModal-logoHeader{font-size:28px;margin-bottom:12px}}@media (max-width:759px){.LoggedInModal-logoHeader{font-size:22px}}.LoggedInModal-logoProImg{display:inline-block;margin:0;padding:0;vertical-align:middle;width:204px}@media (max-width:1019px){.LoggedInModal-logoProImg{width:194px}}@media (max-width:759px){.LoggedInModal-logoProImg{width:164px}}.LoggedInModal-modalUnlockContainer{margin-left:auto;margin-right:auto;max-width:500px;padding:10px;text-align:center}@media (max-width:1019px){.LoggedInModal-modalUnlockContainer{width:100%}}.LoggedInModal-unlockText{color:#333;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:24px;font-weight:600;line-height:32px;padding-bottom:25px}@media (max-width:1019px){.LoggedInModal-unlockText{font-size:24px;line-height:26px;width:100%}}@media (max-width:759px){.LoggedInModal-unlockText{font-size:24px;line-height:22px}}.LoggedInModal-headerTitle{color:#333;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:28px;font-weight:700;line-height:1.05;padding-bottom:20px}@media (max-width:1019px){.LoggedInModal-headerTitle{font-size:28px}}@media (max-width:759px){.LoggedInModal-headerTitle{font-size:24px;line-height:25px;padding-bottom:14px}}.LoggedInModal-proText{color:#00a857}.LoggedInModal-unlockButton{align-items:center;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#00a857;border:1px solid #00a857;border-radius:3px;box-shadow:-2px 2px 2px hsla(0,0%,9%,.25);color:#fff;cursor:pointer;display:flex;flex-direction:row;font-size:14px;font-size:22px;font-weight:600;height:40px;height:60px;justify-content:center;letter-spacing:1px;margin:0 auto;max-width:300px;outline:.5px solid #333;padding:0 20px;text-align:center;text-transform:uppercase;text-transform:none;transition:all .15s linear;width:100%;width:80%}.LoggedInModal-unlockButton>span{display:block;line-height:12px}.LoggedInModal-unlockButton [class*=" icon-"],.LoggedInModal-unlockButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.LoggedInModal-unlockButton [class*=" icon-"]:before,.LoggedInModal-unlockButton [class^=icon-]:before{line-height:12px}.LoggedInModal-unlockButton:focus,.LoggedInModal-unlockButton:hover{background-color:#008456;border-color:#008456;color:#fff}.LoggedInModal-unlockButton[class*=touchButton]:hover{background-color:#00a857;border-color:#00a857;color:#fff}@media (hover:hover){.LoggedInModal-unlockButton[class*=touchButton]:hover{background-color:#008456;border-color:#008456;color:#fff}}@media (min-width:760px){.LoggedInModal-unlockButton{padding:0 30px;width:auto;width:100%}}.LoggedInModal-unlockIcon{margin-right:8px}.DynamicPaywallSignUpModal-modalContents{padding-top:21px}.DynamicPaywallSignUpModal-logoHeader{border-bottom:1px solid #cfd8e2;color:#333;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:40px;font-weight:700;line-height:1.05;margin-bottom:24px;padding-bottom:24px;text-align:center}@media (max-width:1019px){.DynamicPaywallSignUpModal-logoHeader{font-size:36px;margin-bottom:12px}}@media (max-width:759px){.DynamicPaywallSignUpModal-logoHeader{font-size:24px}}.DynamicPaywallSignUpModal-logoProImg{display:inline-block;margin:0;padding:0;vertical-align:middle;width:204px}@media (max-width:1019px){.DynamicPaywallSignUpModal-logoProImg{width:194px}}@media (max-width:759px){.DynamicPaywallSignUpModal-logoProImg{width:164px}}.DynamicPaywallSignUpModal-modalSignUpContainer{margin-left:auto;margin-right:auto;max-width:824px;padding:10px}@media (max-width:1019px){.DynamicPaywallSignUpModal-modalSignUpContainer{width:100%}}.DynamicPaywallSignUpModal-signUpContainer{display:flex;flex-direction:row;justify-content:space-between}@media (max-width:1019px){.DynamicPaywallSignUpModal-signUpContainer{display:block}}.DynamicPaywallSignUpModal-previewContainer{padding-right:10px;padding-top:20px;position:relative}@media (max-width:1019px){.DynamicPaywallSignUpModal-previewContainer{padding:20px;width:100%}}@media (max-width:759px){.DynamicPaywallSignUpModal-previewContainer{padding:15px}}.DynamicPaywallSignUpModal-signupText{color:#333;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:24px;font-weight:600;line-height:32px;padding-bottom:25px;width:84%}@media (max-width:1019px){.DynamicPaywallSignUpModal-signupText{font-size:19px;line-height:26px;padding-bottom:15px;width:100%}}@media (max-width:759px){.DynamicPaywallSignUpModal-signupText{font-size:16px;line-height:22px}}.DynamicPaywallSignUpModal-headerTitle{color:#333;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:34px;font-weight:700;line-height:1.05;padding-bottom:20px}@media (max-width:1019px){.DynamicPaywallSignUpModal-headerTitle{font-size:36px;padding-bottom:10px}}@media (max-width:759px){.DynamicPaywallSignUpModal-headerTitle{font-size:24px;line-height:25px;padding-bottom:14px}}.DynamicPaywallSignUpModal-proText{color:#00a857}.DynamicPaywallSignUpModal-ctaText{color:#333;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:20px;font-weight:600}@media (max-width:1019px){.DynamicPaywallSignUpModal-ctaText{font-size:17px}}@media (max-width:759px){.DynamicPaywallSignUpModal-ctaText{font-size:14px}}.DynamicPaywallSignUpModal-ctaButton{color:#00a857;cursor:pointer;font-size:20px;font-weight:600}@media (max-width:1019px){.DynamicPaywallSignUpModal-ctaButton{font-size:17px}}@media (max-width:759px){.DynamicPaywallSignUpModal-ctaButton{font-size:14px}}.DynamicPaywallSignUpModal-createAccContainer{width:670px}@media (min-width:760px) and (max-width:1019px){.DynamicPaywallSignUpModal-createAccContainer{width:558px}}@media (max-width:759px){.DynamicPaywallSignUpModal-createAccContainer{width:100%}}.DynamicPaywallSignUpModal-createAccContainer .DynamicPaywallSignUpModal-ctaPrimary{color:#171717;font-size:20px;font-weight:600;margin-bottom:5px;text-align:center}@media (max-width:759px){.DynamicPaywallSignUpModal-createAccContainer .DynamicPaywallSignUpModal-ctaPrimary{font-size:18px}}.ResetPasswordModal-modalContents{padding:20px}@media (min-width:760px){.ResetPasswordModal-modalContents{width:500px}}.ResetPasswordModal-container{color:#171717;font-weight:700;padding:20px 50px;text-align:center;width:500px}.ResetPasswordModal-boundedContainer{max-width:350px}.ResetPasswordModal-confirmationHeader{font-size:18px;margin-top:10px}.ResetPasswordModal-email{color:#9e9e9e}.ResetPasswordModal-checkmark{height:50px;width:50px}.ResetPasswordModal-okayButton{align-items:center;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#002f6c;border:1px solid #002f6c;border-radius:3px;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;height:50px;justify-content:center;letter-spacing:1px;margin:20px auto 15px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%;width:200px}.ResetPasswordModal-okayButton>span{display:block;line-height:12px}.ResetPasswordModal-okayButton [class*=" icon-"],.ResetPasswordModal-okayButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.ResetPasswordModal-okayButton [class*=" icon-"]:before,.ResetPasswordModal-okayButton [class^=icon-]:before{line-height:12px}.ResetPasswordModal-okayButton:focus,.ResetPasswordModal-okayButton:hover,.ResetPasswordModal-okayButton[class*=touchButton]:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}@media (hover:hover){.ResetPasswordModal-okayButton[class*=touchButton]:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}}@media (min-width:760px){.ResetPasswordModal-okayButton{padding:0 30px;width:auto}}.ResetPasswordModal-okayButtonPro{align-items:center;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#00a857;border:1px solid #00a857;border-radius:3px;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;height:50px;justify-content:center;letter-spacing:1px;margin:20px auto 15px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%;width:200px}.ResetPasswordModal-okayButtonPro>span{display:block;line-height:12px}.ResetPasswordModal-okayButtonPro [class*=" icon-"],.ResetPasswordModal-okayButtonPro [class^=icon-]{height:12px;margin-left:5px;position:relative}.ResetPasswordModal-okayButtonPro [class*=" icon-"]:before,.ResetPasswordModal-okayButtonPro [class^=icon-]:before{line-height:12px}.ResetPasswordModal-okayButtonPro:focus,.ResetPasswordModal-okayButtonPro:hover{background-color:#008456;border-color:#008456;color:#fff}.ResetPasswordModal-okayButtonPro[class*=touchButton]:hover{background-color:#00a857;border-color:#00a857;color:#fff}@media (hover:hover){.ResetPasswordModal-okayButtonPro[class*=touchButton]:hover{background-color:#008456;border-color:#008456;color:#fff}}@media (min-width:760px){.ResetPasswordModal-okayButtonPro{padding:0 30px;width:auto}.ResetPasswordModal-okayButton{width:200px}}.UniversalVideoPlayer-videoContainer{opacity:1;position:absolute;z-index:10}.DynamicLoadingIndicator-spinnerParent{display:block;padding:10px}.DynamicLoadingIndicator-spinner{-webkit-animation:DynamicLoadingIndicator-spin 2s linear infinite;animation:DynamicLoadingIndicator-spin 2s linear infinite;border:3px solid #f3f3f3;border-radius:50%;border-top-color:#666;display:block;margin:0 auto}@-webkit-keyframes DynamicLoadingIndicator-spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}@keyframes DynamicLoadingIndicator-spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.ErrorHandler-container{background:#ff5053;height:100%;position:relative;width:100%;word-break:break-word}.hfsf{z-index:100}.NavSpacer-navSpacer{display:block;height:45px}.NavSpacer-navSpacer.NavSpacer-navSpacerCountDownClock,.NavSpacer-navSpacer.NavSpacer-navSpacerFiveThings{height:112px}@media (min-width:760px){.NavSpacer-navSpacer{height:70px}.NavSpacer-navSpacer.NavSpacer-navSpacerCountDownClock,.NavSpacer-navSpacer.NavSpacer-navSpacerFiveThings{height:112px}}.NavSpacer-navSpacer.NavSpacer-navSpacerNewsAlert{height:85px}.NavSpacer-navSpacer.NavSpacer-navSpacerNewsAlert.NavSpacer-navSpacerLiveAlert{height:125px}.NavSpacer-navSpacer.NavSpacer-navSpacerNewsAlert.NavSpacer-navSpacerCountDownClock,.NavSpacer-navSpacer.NavSpacer-navSpacerNewsAlert.NavSpacer-navSpacerFiveThings{height:192px}@media (min-width:760px){.NavSpacer-navSpacer.NavSpacer-navSpacerNewsAlert{height:110px}.NavSpacer-navSpacer.NavSpacer-navSpacerNewsAlert.NavSpacer-navSpacerLiveAlert{height:150px}.NavSpacer-navSpacer.NavSpacer-navSpacerNewsAlert.NavSpacer-navSpacerCountDownClock{height:152px}.NavSpacer-navSpacer.NavSpacer-navSpacerNewsAlert.NavSpacer-navSpacerFiveThings{height:185px}}.NavSpacer-navSpacer.NavSpacer-navSpacerLiveAlert{height:85px}@media (min-width:360px){.NavSpacer-navSpacer.NavSpacer-navSpacerLiveAlert.NavSpacer-navSpacerNewsAlert{height:125px}.NavSpacer-navSpacer.NavSpacer-navSpacerLiveAlert.NavSpacer-navSpacerNewsAlert.NavSpacer-NavSpacer-navSpacerFiveThings{height:162px}}@media (min-width:760px){.NavSpacer-navSpacer.NavSpacer-navSpacerLiveAlert.NavSpacer-navSpacerNewsAlert{height:150px}}@media (min-width:1020px){.NavSpacer-navSpacer.NavSpacer-navSpacerLiveAlert.NavSpacer-navSpacerNewsAlert{height:150px}}@media (min-width:1340px){.NavSpacer-navSpacer.NavSpacer-navSpacerLiveAlert.NavSpacer-navSpacerNewsAlert{height:150px}}.NavSpacer-navSpacer.NavSpacer-navSpacerLiveAlert.NavSpacer-navSpacerNewsAlert.NavSpacer-navSpacerFiveThings{height:185px}.NavSpacer-navSpacer.NavSpacer-navSpacerLiveAlert.NavSpacer-navSpacerNewsAlert.NavSpacer-navSpacerCountDownClock{height:192px}.NavSpacer-navSpacer.NavSpacer-navSpacerLiveAlert.NavSpacer-navSpacerCountDownClock,.NavSpacer-navSpacer.NavSpacer-navSpacerLiveAlert.NavSpacer-navSpacerFiveThings{height:152px}@media (min-width:760px){.NavSpacer-navSpacer.NavSpacer-navSpacerLiveAlert{height:110px}}.SelectHFSNav-container{margin-bottom:-20px;position:sticky;top:0;z-index:9999}@supports (-webkit-overflow-scrolling:touch){.hfsh .menu .inner:after{display:none!important}.menu-select__copyright:after{content:"";display:block;height:88px;width:100%}}nav.hfsh{pointer-events:auto!important}.MobileAdhesion-container{display:none;margin:10px auto;overflow:hidden;text-align:center}.JumpLink-container{margin:0 auto;position:relative;width:100%;z-index:1000}@media (min-width:1020px){.JumpLink-container{margin:0 auto;max-width:100%}}@media (min-width:1020px) and (min-width:760px){.JumpLink-container{max-width:678px}}@media (min-width:1020px) and (min-width:1020px){.JumpLink-container{max-width:960px}}@media (min-width:1020px) and (min-width:1340px){.JumpLink-container{max-width:1290px}}.JumpLink-link{align-items:center;background-color:#e8e8e8;color:#002f6c;display:flex;font-size:14px;font-weight:700;height:1px;left:-10000px;line-height:1;overflow:hidden;padding:0 14px;position:absolute;text-transform:uppercase;top:0;width:1px}.JumpLink-link:focus-visible{height:40px;left:0;width:auto}.SidebarArticle-sidebar{position:relative}@media (min-width:1020px){.SidebarArticle-sticky{margin-bottom:20px;position:sticky}}.SidebarArticle-noSticky{position:static!important}.SidebarArticle-noSticky .SidebarArticle-sticky{position:sticky}.LazyLoaderPlaceholder-articleBody{display:flex;flex-direction:row;flex-wrap:wrap;padding:0 20px}@media (min-width:760px){.LazyLoaderPlaceholder-articleBody{padding-left:0;padding-right:0}}.LazyLoaderPlaceholder-bodyText{color:#2e2e2e;font-family:Lyon,Helvetica,Arial,sans-serif;font-size:18px;line-height:1.66;margin-bottom:30px}@media (min-width:760px){.LazyLoaderPlaceholder-bodyText{flex-grow:0;flex-shrink:0;margin-left:calc(50% + 30px);max-width:75%;min-width:75%}}@media (min-width:760px) and (min-width:760px){.LazyLoaderPlaceholder-bodyText{margin-left:calc(16.66667% + 30px)}}@media (min-width:760px) and (min-width:1020px){.LazyLoaderPlaceholder-bodyText{margin-left:calc(22.22222% + 30px)}}@media (min-width:760px) and (min-width:1340px){.LazyLoaderPlaceholder-bodyText{margin-left:calc(16.66667% + 30px)}}@media (min-width:1020px){.LazyLoaderPlaceholder-bodyText{flex-grow:0;flex-shrink:0;margin-left:calc(25% + 30px);max-width:100%;min-width:100%}}@media (min-width:1020px) and (min-width:760px){.LazyLoaderPlaceholder-bodyText{margin-left:calc(8.33333% + 30px)}}@media (min-width:1020px) and (min-width:1020px){.LazyLoaderPlaceholder-bodyText{margin-left:calc(11.11111% + 30px)}}@media (min-width:1020px) and (min-width:1340px){.LazyLoaderPlaceholder-bodyText{margin-left:calc(8.33333% + 30px)}}@media (min-width:1340px){.LazyLoaderPlaceholder-bodyText{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:100%;min-width:100%}}@media (min-width:1340px) and (min-width:760px){.LazyLoaderPlaceholder-bodyText{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1020px){.LazyLoaderPlaceholder-bodyText{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1340px){.LazyLoaderPlaceholder-bodyText{margin-left:14.28571%}}@media (min-width:760px){.LazyLoaderPlaceholder-listWrapper{flex-grow:0;flex-shrink:0;margin-left:calc(50% + 30px);max-width:75%;min-width:75%}}@media (min-width:760px) and (min-width:760px){.LazyLoaderPlaceholder-listWrapper{margin-left:calc(16.66667% + 30px)}}@media (min-width:760px) and (min-width:1020px){.LazyLoaderPlaceholder-listWrapper{margin-left:calc(22.22222% + 30px)}}@media (min-width:760px) and (min-width:1340px){.LazyLoaderPlaceholder-listWrapper{margin-left:calc(16.66667% + 30px)}}@media (min-width:1020px){.LazyLoaderPlaceholder-listWrapper{flex-grow:0;flex-shrink:0;margin-left:calc(25% + 30px);max-width:100%;min-width:100%}}@media (min-width:1020px) and (min-width:760px){.LazyLoaderPlaceholder-listWrapper{margin-left:calc(8.33333% + 30px)}}@media (min-width:1020px) and (min-width:1020px){.LazyLoaderPlaceholder-listWrapper{margin-left:calc(11.11111% + 30px)}}@media (min-width:1020px) and (min-width:1340px){.LazyLoaderPlaceholder-listWrapper{margin-left:calc(8.33333% + 30px)}}@media (min-width:1340px){.LazyLoaderPlaceholder-listWrapper{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:100%;min-width:100%}}@media (min-width:1340px) and (min-width:760px){.LazyLoaderPlaceholder-listWrapper{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1020px){.LazyLoaderPlaceholder-listWrapper{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1340px){.LazyLoaderPlaceholder-listWrapper{margin-left:14.28571%}}.LazyLoaderPlaceholder-listTitle{font-size:24px;font-weight:700;margin-bottom:15px}.LazyLoaderPlaceholder-gridContainer{grid-gap:30px;display:grid;font-size:18px;font-weight:600;grid-template-columns:auto auto auto;line-height:22px;padding:10px}@media (min-width:360px) and (max-width:759px){.LazyLoaderPlaceholder-gridContainer{display:block;padding-left:0}}.LazyLoaderPlaceholder-gridItem{border-bottom:1px dashed hsla(0,0%,55%,.5)}.LazyLoaderPlaceholder-gridItem .LazyLoaderPlaceholder-author,.LazyLoaderPlaceholder-gridItem .LazyLoaderPlaceholder-headline,.LazyLoaderPlaceholder-gridItem .LazyLoaderPlaceholder-section{color:#000;display:block;margin-bottom:12px;margin-top:12px}.LazyLoaderPlaceholder-gridItem .LazyLoaderPlaceholder-headline:hover{text-decoration:underline}.LazyLoaderPlaceholder-gridItem .LazyLoaderPlaceholder-author,.LazyLoaderPlaceholder-gridItem .LazyLoaderPlaceholder-section{font-size:12px;line-height:12px;overflow-y:hidden}@media (min-width:360px) and (max-width:759px){.LazyLoaderPlaceholder-headline{word-break:break-word}}.LazyLoaderPlaceholder-moduleTitle{color:#000;display:block;font-size:32px;font-weight:800;line-height:37px;padding:10px}.LazyLoaderPlaceholder-moduleTitle:hover{color:#2077b6}@media (min-width:360px) and (max-width:759px){.LazyLoaderPlaceholder-moduleTitle{padding-left:0}}*{box-sizing:border-box}li,ol,ul{list-style:none;margin:0;padding:0}a{color:#fff;cursor:pointer;text-decoration:none}a:focus,a:hover{color:#fcb700}button{background:none;border:none;cursor:pointer;padding:0}table{border-collapse:collapse}td,th{padding:8px 15px 8px 0;text-align:left}img{display:block}html{-ms-overflow-style:-ms-autohiding-scrollbar}body{-webkit-font-smoothing:antialiased;-webkit-text-size-adjust:100%;border:0;font-family:Proxima Nova,Helvetica,Arial,sans-serif;margin:0;padding:0}body:after{content:"mobile";display:none}@media (min-width:760px){body:after{content:"tablet"}}@media (min-width:1020px){body:after{content:"small_desktop"}}@media (min-width:1180px){body:after{content:"medium_desktop"}}@media (min-width:1340px){body:after{content:"large_desktop"}}:focus{outline:none}button{border-radius:0;font-family:Proxima Nova,Helvetica,Arial,sans-serif}button::-moz-focus-inner{border:0}.openNav{position:fixed;width:100%}@media (min-width:1020px){.openNav{overflow-y:scroll}}.App-articleBody{display:flex;flex-direction:row;flex-wrap:wrap;padding:0 20px}@media (min-width:760px){.App-articleBody{padding-left:0;padding-right:0}}.group{font-family:Lyon,Helvetica,Arial,sans-serif;font-size:18px;line-height:1.66;margin-bottom:30px}@media (min-width:760px){.group{flex-grow:0;flex-shrink:0;margin-left:calc(50% + 30px);max-width:75%;min-width:75%}}@media (min-width:760px) and (min-width:760px){.group{margin-left:calc(16.66667% + 30px)}}@media (min-width:760px) and (min-width:1020px){.group{margin-left:calc(22.22222% + 30px)}}@media (min-width:760px) and (min-width:1340px){.group{margin-left:calc(16.66667% + 30px)}}@media (min-width:1020px){.group{flex-grow:0;flex-shrink:0;margin-left:calc(25% + 30px);max-width:100%;min-width:100%}}@media (min-width:1020px) and (min-width:760px){.group{margin-left:calc(8.33333% + 30px)}}@media (min-width:1020px) and (min-width:1020px){.group{margin-left:calc(11.11111% + 30px)}}@media (min-width:1020px) and (min-width:1340px){.group{margin-left:calc(8.33333% + 30px)}}@media (min-width:1340px){.group{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:100%;min-width:100%}}@media (min-width:1340px) and (min-width:760px){.group{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1020px){.group{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1340px){.group{margin-left:14.28571%}}@media (max-width:759px){.hideOnMobile{display:none}}.App-bodyText{color:#2e2e2e;font-family:Lyon,Helvetica,Arial,sans-serif;font-size:18px;line-height:1.66;margin-bottom:30px}@media (min-width:760px){.App-bodyText{flex-grow:0;flex-shrink:0;margin-left:calc(50% + 30px);max-width:75%;min-width:75%}}@media (min-width:760px) and (min-width:760px){.App-bodyText{margin-left:calc(16.66667% + 30px)}}@media (min-width:760px) and (min-width:1020px){.App-bodyText{margin-left:calc(22.22222% + 30px)}}@media (min-width:760px) and (min-width:1340px){.App-bodyText{margin-left:calc(16.66667% + 30px)}}@media (min-width:1020px){.App-bodyText{flex-grow:0;flex-shrink:0;margin-left:calc(25% + 30px);max-width:100%;min-width:100%}}@media (min-width:1020px) and (min-width:760px){.App-bodyText{margin-left:calc(8.33333% + 30px)}}@media (min-width:1020px) and (min-width:1020px){.App-bodyText{margin-left:calc(11.11111% + 30px)}}@media (min-width:1020px) and (min-width:1340px){.App-bodyText{margin-left:calc(8.33333% + 30px)}}@media (min-width:1340px){.App-bodyText{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:100%;min-width:100%}}@media (min-width:1340px) and (min-width:760px){.App-bodyText{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1020px){.App-bodyText{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1340px){.App-bodyText{margin-left:14.28571%}}@media (min-width:760px){.App-listWrapper{flex-grow:0;flex-shrink:0;margin-left:calc(50% + 30px);max-width:75%;min-width:75%}}@media (min-width:760px) and (min-width:760px){.App-listWrapper{margin-left:calc(16.66667% + 30px)}}@media (min-width:760px) and (min-width:1020px){.App-listWrapper{margin-left:calc(22.22222% + 30px)}}@media (min-width:760px) and (min-width:1340px){.App-listWrapper{margin-left:calc(16.66667% + 30px)}}@media (min-width:1020px){.App-listWrapper{flex-grow:0;flex-shrink:0;margin-left:calc(25% + 30px);max-width:100%;min-width:100%}}@media (min-width:1020px) and (min-width:760px){.App-listWrapper{margin-left:calc(8.33333% + 30px)}}@media (min-width:1020px) and (min-width:1020px){.App-listWrapper{margin-left:calc(11.11111% + 30px)}}@media (min-width:1020px) and (min-width:1340px){.App-listWrapper{margin-left:calc(8.33333% + 30px)}}@media (min-width:1340px){.App-listWrapper{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:100%;min-width:100%}}@media (min-width:1340px) and (min-width:760px){.App-listWrapper{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1020px){.App-listWrapper{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1340px){.App-listWrapper{margin-left:14.28571%}}@media (min-width:760px){#taboolaContainer{flex-grow:0;flex-shrink:0;margin-left:calc(50% + 30px);max-width:75%;min-width:75%}}@media (min-width:760px) and (min-width:760px){#taboolaContainer{margin-left:calc(16.66667% + 30px)}}@media (min-width:760px) and (min-width:1020px){#taboolaContainer{margin-left:calc(22.22222% + 30px)}}@media (min-width:760px) and (min-width:1340px){#taboolaContainer{margin-left:calc(16.66667% + 30px)}}@media (min-width:1020px){#taboolaContainer{flex-grow:0;flex-shrink:0;margin-left:calc(25% + 30px);max-width:100%;min-width:100%}}@media (min-width:1020px) and (min-width:760px){#taboolaContainer{margin-left:calc(8.33333% + 30px)}}@media (min-width:1020px) and (min-width:1020px){#taboolaContainer{margin-left:calc(11.11111% + 30px)}}@media (min-width:1020px) and (min-width:1340px){#taboolaContainer{margin-left:calc(8.33333% + 30px)}}@media (min-width:1340px){#taboolaContainer{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:100%;min-width:100%}}@media (min-width:1340px) and (min-width:760px){#taboolaContainer{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1020px){#taboolaContainer{margin-left:14.28571%}}@media (min-width:1340px) and (min-width:1340px){#taboolaContainer{margin-left:14.28571%}}@media (min-width:760px){#taboolaContainer{flex:none}}@media (min-width:1020px){#taboolaContainer{flex-grow:0;flex-shrink:0;flex:none;margin-left:calc(16.66667% + 5px);max-width:calc(83.33333% - 5px);min-width:calc(83.33333% - 5px)}}@media (min-width:1340px){#taboolaContainer{flex-grow:0;flex-shrink:0;flex:none;margin-left:calc(14.28571% + 4.28571px);max-width:calc(85.71429% - 4.28571px);min-width:calc(85.71429% - 4.28571px)}}.App-listTitle{font-size:24px;font-weight:700;margin-bottom:15px}.numeric{text-align:right}@media (prefers-color-scheme:dark){.webview,.webview #taboola-below-article-thumbnails-Bento-Feed,.webview #taboola-below-article-thumbnails-Bento-Feed .video-title,.webview .trc_rbox_header_span{background-color:#000;color:#dce0e4}.webview #taboola-below-article-thumbnails-Bento-Feed .video-title a,.webview #taboola-below-article-thumbnails-Bento-Feed a,.webview .trc_rbox_header_span a,.webview a{color:#dce0e4}}.grecaptcha-badge{display:none}@font-face{font-display:swap;font-family:icomoon;font-style:normal;font-weight:400;src:url(https://static-redesign.cnbcfm.com/dist/icomoon.eot);src:url(https://static-redesign.cnbcfm.com/dist/icomoon.eot#iefix) format("embedded-opentype"),url(https://static-redesign.cnbcfm.com/dist/icomoon.ttf) format("truetype"),url(https://static-redesign.cnbcfm.com/dist/icomoon.woff) format("woff"),url(https://static-redesign.cnbcfm.com/dist/d231ed26aaa9397191e9.svg?xzw80u#icomoon) format("svg")}[class*=" icon-"],[class^=icon-]{speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-family:icomoon!important;font-style:normal;font-variant:normal;font-weight:400;line-height:1;text-transform:none}.icon-social_apple_news:before{content:"\e900"}.icon-close-2:before{content:"\e901"}.icon-thumbs-up:before{content:"\e902"}.icon-chat-bubble:before{content:"\e903"}.icon-chat-bubble-hover:before{content:"\e904"}.icon-thumbs-down:before{content:"\e905"}.icon-buffett-pause:before{content:"\e906"}.icon-buffett-timeline:before{content:"\e907"}.icon-buffett-backtotop:before{content:"\e908"}.icon-buffett-sync:before{content:"\e909"}.icon-buffett-arrow-right-long:before{content:"\e90a"}.icon-buffett-arrow-left-long:before{content:"\e90b"}.icon-buffett-diamond:before{content:"\e90c"}.icon-check:before{content:"\e90d"}.icon-search:before{content:"\e90e"}.icon-hamburger:before{content:"\e90f"}.icon-close:before{content:"\e910"}.icon-social_facebook:before{content:"\e911"}.icon-social_instagram:before{content:"\e912"}.icon-social_linkedin:before{content:"\e913"}.icon-social_rss:before{content:"\e914"}.icon-social_twitter:before{content:"\e915"}.icon-social_youtube:before{content:"\e916"}.icon-tumblr:before{content:"\e917"}.icon-stumbleupon:before{content:"\e918"}.icon-reddit:before{content:"\e919"}.icon-quote-mark:before{content:"\e91a"}.icon-probug:before{content:"\e91b"}.icon-play-triangle:before{content:"\e91c"}.icon-pinterest:before{content:"\e91d"}.icon-more-dots:before{content:"\e91e"}.icon-play:before{content:"\e91f"}.icon-email:before{content:"\e920"}.icon-digg:before{content:"\e921"}.icon-arrow-left:before{content:"\e922"}.icon-arrow-right:before{content:"\e923"}.icon-arrow-down-readmore:before{content:"\e924"}.icon-arrow-transporter-down:before{content:"\e925"}.icon-calendar:before{content:"\e926"}.icon-livebug:before{content:"\e927"}.icon-lock:before{content:"\e928"}.icon-sort:before{content:"\e929"}.icon-cnbctv:before{content:"\e92a"}.icon-markets:before{content:"\e92b"}.icon-menu:before{content:"\e92c"}.icon-news:before{content:"\e92d"}.icon-offsite-arrow:before{content:"\e92e"}.icon-short-arrow-left:before{content:"\e92f"}.icon-short-arrow-right:before{content:"\e930"}.icon-live:before{content:"\e931"}.icon-newsletter:before{content:"\e932"}.icon-caret-left:before{content:"\e933"}.icon-triangle-down:before{content:"\e934"}.icon-triangle-up:before{content:"\e935"}.icon-caret-right:before{content:"\e936"}.icon-buffett-arrow-left:before{content:"\e937"}.icon-buffett-arrow-right:before{content:"\e938"}.icon-buffett-chevron-down:before{content:"\e939"}.icon-buffett-chevron-left:before{content:"\e93a"}.icon-buffett-chevron-right:before{content:"\e93b"}.icon-buffett-chevron-up:before{content:"\e93c"}.icon-buffett-playlist:before{content:"\e93d"}.icon-buffett-slideshow:before{content:"\e93e"}.icon-buffett-video-fullscreen:before{content:"\e93f"}.icon-buffett-video-mute:before{content:"\e940"}.icon-buffett-video-volume:before{content:"\e941"}.icon-buffett-video:before{content:"\e91C"}.PlayButton-buffett .icon-buffett-video:before{content:"\e942"}.icon-video_back_to_top:before{content:"\e943"}.icon-video_close:before{content:"\e944"}.icon-logo-cnbc:before{content:"\e945"}.icon-minus:before{content:"\e946"}.icon-plus:before{content:"\e947"}.icon-watchlist:before{content:"\e948"}.icon-replay:before{content:"\e965"}@font-face{font-display:swap;font-family:makeit-icons;font-style:normal;font-weight:400;src:url(https://static-redesign.cnbcfm.com/dist/makeit-icons.eot);src:url(https://static-redesign.cnbcfm.com/dist/makeit-icons.woff2) format("embedded-opentype"),url(https://static-redesign.cnbcfm.com/dist/makeit-icons.ttf) format("truetype"),url(https://static-redesign.cnbcfm.com/dist/makeit-icons.woff) format("woff"),url(https://static-redesign.cnbcfm.com/dist/62140da39836672b65c3.svg?h2gve7#makeit-icons) format("svg")}[class*=" icon-makeit-"]:before,[class^=icon-makeit-]:before{display:inline-block;font-family:makeit-icons!important}.icon-makeit-arrow-down:before{content:"\e900"}.icon-makeit-arrow-left:before{content:"\e901"}.icon-makeit-arrow-right:before{content:"\e902"}.icon-makeit-arrow-up:before{content:"\e903"}.icon-makeit-backtotop:before{content:"\e904"}.icon-makeit-check:before{content:"\e905"}.icon-makeit-close:before{content:"\e906"}.icon-makeit-externallink:before{content:"\e907"}.icon-makeit-filter-closed:before{content:"\e908"}.icon-makeit-filter-open:before{content:"\e909"}.icon-makeit-fullscreen:before{content:"\e90a"}.icon-makeit-hamburger:before{content:"\e90b"}.icon-makeit-logo-cnbc:before{content:"\e90c"}.icon-makeit-mail:before{content:"\e90d"}.icon-makeit-mute:before{content:"\e90e"}.icon-makeit-pause:before{content:"\e90f"}.icon-makeit-play:before{content:"\e910"}.icon-makeit-questionnaire:before{content:"\e911"}.icon-makeit-quote:before{content:"\e912"}.icon-makeit-search:before{border-top:1px solid transparent;content:"\e913"}.icon-makeit-trending-bug:before{content:"\e914"}.icon-makeit-unmute:before{content:"\e915"}.icon-makeit-plus:before{content:"\e916"}.icon-makeit-minus:before{content:"\e917"}.icon-makeit-newsletter:before{content:"\e918"}@font-face{font-display:swap;font-family:social-icons;font-style:normal;font-weight:400;src:url(https://static-redesign.cnbcfm.com/dist/social-icons.eot);src:url(https://static-redesign.cnbcfm.com/dist/social-icons.woff2) format("embedded-opentype"),url(https://static-redesign.cnbcfm.com/dist/social-icons.ttf) format("truetype"),url(https://static-redesign.cnbcfm.com/dist/social-icons.woff) format("woff"),url(https://static-redesign.cnbcfm.com/dist/b2460f56a3dd6c592c18.svg?7b5vsl#icomoon) format("svg")}[class*=" gig-button-container-"],[class^=gig-button-container-]{speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-family:social-icons!important;font-style:normal;font-variant:normal;font-weight:400;line-height:1;text-transform:none}.gig-button-container-facebook .icon-social:before{content:"\e911"}.gig-button-container-instagram .icon-social:before{content:"\e912"}.gig-button-container-linkedin .icon-social:before{content:"\e913"}.gig-button-container-rss .icon-social:before{content:"\e914"}.gig-button-container-twitter .icon-social:before{content:"\e915"}.gig-button-container-youtube .icon-social:before{content:"\e916"}.gig-button-container-tumblr .icon-social:before{content:"\e917"}.gig-button-container-stumbleupon .icon-social:before{content:"\e918"}.gig-button-container-reddit .icon-social:before{content:"\e919"}.gig-button-container-pinterest .icon-social:before{content:"\e91d"}.gig-button-container-share .icon-social:before{content:"\e91e"}.gig-button-container-email .icon-social:before{content:"\e920"}.gig-button-container-digg .icon-social:before{content:"\e921"}.transition-fade-enter{opacity:.01!important}.transition-fade-appear{opacity:.01}.transition-fade-appear.transition-fade-appear-active{opacity:1!important;transition:opacity .5s ease-in}.transition-fade-enter.transition-fade-enter-active{opacity:1!important;transition:opacity .3s ease-in}.transition-transform-y-appear{transform:translateY(20%);transition:transform .5s ease-in}.transition-transform-y-appear.transition-transform-y-appear-active{transform:translateY(0);transition:transform .5s ease-in}.transition-top-enter{transform:translateY(-100%)}.transition-search-fade-enter{opacity:.01!important}.transition-search-fade-enter.transition-search-fade-enter-active{opacity:1!important;transition:opacity .5s ease-in}.transition-top-enter.transition-top-enter-active{transform:translateY(0);transition:transform .5s}.transition-bottom-enter{transform:translateY(100%)}.transition-bottom-enter.transition-bottom-enter-active{transform:translateY(0);transition:transform .5s}.mega-menu-enter{opacity:.01!important}.mega-menu-enter .mega-menu-megaMenu{transform:translate3d(0,-100%,0)!important}.mega-menu-enter.mega-menu-enter-active{opacity:1!important;transition:opacity .3s ease-in}.mega-menu-enter.mega-menu-enter-active .mega-menu-megaMenu{transform:translateZ(0)!important;transition:transform .3s cubic-bezier(.645,.045,.355,1)}.mega-menu-exit{opacity:1!important}.mega-menu-exit .mega-menu-megaMenu{transform:translateZ(0)!important}.mega-menu-exit.mega-menu-exit-active{opacity:.01!important;transition:opacity .15s ease-in}.mega-menu-exit.mega-menu-exit-active .mega-menu-megaMenu{transform:translate3d(0,-100%,0)!important;transition:transform .15s cubic-bezier(.645,.045,.355,1)}.App-contentWrapper{margin-top:45px}@media (min-width:760px){.App-contentWrapper{margin-top:70px}}.App-contentWrapperClock{margin-top:112px}.App-containerClick a:focus,.App-containerClick button:focus,.App-containerClick input:focus,.App-containerClick textarea:focus{outline:none}.App-proContentRecommendation{bottom:0;position:fixed;width:100%;z-index:9999}@media (max-width:759px){.App-proContentRecommendation{bottom:55px}}.App-makeit.App-buttonContainer{margin-bottom:20px;position:relative;text-align:center;width:auto}@media (min-width:760px){.App-makeit.App-buttonContainer{margin-bottom:50px}}.App-makeit .App-buttonLink{background:#fff;border:3px solid #68ebca;color:#3e4855;display:inline-block;font-size:14px;font-weight:600;height:42px;letter-spacing:3px;line-height:12px;padding:12px 75px;text-transform:uppercase;width:auto}.App-makeit .App-buttonLink:hover{background-color:#68ebca}body .makeitBrand{font-family:Averta,Helvetica,Arial,sans-serif}body .makeitBrand #faceteddata div>a{color:#000}.HalfAndHalfBreaker-halfAndHalfBreaker{margin-left:-20px;margin-right:-20px;width:auto}@media (min-width:760px){.HalfAndHalfBreaker-halfAndHalfBreaker{margin:0}}@media (min-width:1020px){.HalfAndHalfBreaker-halfAndHalfBreaker{padding-left:0;padding-right:0}}.HalfAndHalfBreaker-container{margin:0 auto;max-width:100%;width:100%}@media (min-width:760px){.HalfAndHalfBreaker-container{max-width:678px}}@media (min-width:1020px){.HalfAndHalfBreaker-container{max-width:960px}}@media (min-width:1340px){.HalfAndHalfBreaker-container{max-width:1290px}}@media (min-width:1020px){.HalfAndHalfBreaker-container{display:flex;max-width:none}}.HalfAndHalfBreaker-wrapper{position:relative}.HalfAndHalfBreaker-section{background-position:50%;background-size:cover;padding:30px 20px;position:relative;width:100%}.HalfAndHalfBreaker-section:last-child{border-top:1px solid #fff}@media (min-width:760px){.HalfAndHalfBreaker-section{display:flex;padding-left:0;padding-right:0}}@media (min-width:1020px){.HalfAndHalfBreaker-section{flex-direction:column;height:auto;max-width:50%;min-width:50%;padding:30px}.HalfAndHalfBreaker-section:first-child{padding-left:0}.HalfAndHalfBreaker-section:last-child{border-left:1px solid #fff;border-top:none;padding-right:0}}.HalfAndHalfBreaker-newsletterIcon{display:flex;margin-right:15px}.HalfAndHalfBreaker-newsletterIcon .icon-newsletter:before{font-size:38px;line-height:.73;position:relative;top:4px}@media (min-width:760px){.HalfAndHalfBreaker-newsletterIcon .icon-newsletter:before{font-size:44px;top:-2px}}@media (min-width:1020px){.HalfAndHalfBreaker-newsletterIcon .icon-newsletter:before{top:4px}}@media (min-width:1340px){.HalfAndHalfBreaker-newsletterIcon .icon-newsletter:before{font-size:45px;top:3px}}.HalfAndHalfBreaker-logo{display:block;height:auto;margin-right:15px;width:160px}@media (min-width:760px){.HalfAndHalfBreaker-logo{width:265px}}@media (min-width:1020px){.HalfAndHalfBreaker-logo{width:265px}}.HalfAndHalfBreaker-title{align-items:center;color:#fff;display:flex;font-size:24px;font-weight:700;letter-spacing:-.16em;line-height:32px;margin-bottom:10px;max-width:100%;position:relative;z-index:2}@media (min-width:760px){.HalfAndHalfBreaker-title{align-items:flex-start;font-size:26px;line-height:30px;padding-right:30px;width:51%}}@media (min-width:1020px){.HalfAndHalfBreaker-title{align-items:center;font-size:32px;line-height:31px;min-height:40px;padding-right:20px;width:100%}}.HalfAndHalfBreaker-titleImage{display:block;margin-bottom:10px;max-width:100%;padding-right:20px;position:relative;z-index:2}@media (min-width:760px){.HalfAndHalfBreaker-titleImage{max-height:40px;padding-right:30px;width:51%}}@media (min-width:1020px){.HalfAndHalfBreaker-titleImage{padding-right:20px;width:100%}}.HalfAndHalfBreaker-content{max-width:100%;position:relative;z-index:2}@media (min-width:760px){.HalfAndHalfBreaker-content{float:left;width:60%}}@media (min-width:1020px){.HalfAndHalfBreaker-content{align-items:flex-start;display:flex;flex-direction:column;flex-grow:1;float:none;width:auto}}@media (min-width:1340px){.HalfAndHalfBreaker-content{display:flex;flex-direction:row;justify-content:space-between;width:100%}}.HalfAndHalfBreaker-description{color:#fff;font-family:Lyon,Helvetica,Arial,sans-serif;font-size:16px;font-weight:500;line-height:24px;margin:0 0 20px;max-width:100%;position:relative;z-index:2}@media (min-width:760px){.HalfAndHalfBreaker-description{margin-top:0}}@media (min-width:1020px){.HalfAndHalfBreaker-description{margin-top:15px;padding-right:20px}}@media (min-width:1340px){.HalfAndHalfBreaker-description{margin-bottom:0;max-width:none;padding-right:40px}}.HalfAndHalfBreaker-button{background:transparent;border:1px solid #fff;color:#fff;display:inline-block;font-size:12px;font-weight:600;height:40px;letter-spacing:1.09px;line-height:40px;position:relative;text-align:center;text-transform:uppercase;white-space:nowrap;width:100%;z-index:2}.HalfAndHalfBreaker-button:hover{background-color:#fcb700;border-color:#fcb700;color:#071d39}@media (min-width:760px){.HalfAndHalfBreaker-button{padding:0 20px;width:auto}}@media (min-width:1020px){.HalfAndHalfBreaker-button{margin-top:auto}}@media (min-width:1340px){.HalfAndHalfBreaker-button{margin:20px 0 0 auto}}.HalfAndHalfBreaker-background1{background-position:50%;background-size:cover;border:none;height:100%;left:0;position:absolute;top:0;width:100%}@media (min-width:760px){.HalfAndHalfBreaker-background1{width:100%}}@media (min-width:1020px){.HalfAndHalfBreaker-background1{left:0;margin-left:calc(-50vw - -480px);width:50vw}}@media (min-width:1180px){.HalfAndHalfBreaker-background1{margin-left:calc(-50vw - -538.5px)}}@media (min-width:1340px){.HalfAndHalfBreaker-background1{margin-left:calc(-50vw - -645px)}}.HalfAndHalfBreaker-background1:after{background:linear-gradient(90deg,rgba(7,29,57,.9),rgba(57,187,122,.9));content:"";height:100%;left:0;position:absolute;top:0;width:100%;z-index:1}@media (min-width:1020px){.HalfAndHalfBreaker-background2{margin-left:0}}.HalfAndHalfBreaker-background2:after{background:linear-gradient(90deg,rgba(7,29,57,.9),rgba(0,85,148,.9));content:"";height:100%;left:0;position:absolute;top:0;width:100%;z-index:1}.HalfAndHalfBreaker-proBackground:after{background:#2e2e2e linear-gradient(180deg,#2e2e2e 40%,rgba(57,187,122,.9))}@media (min-width:1020px){.HalfAndHalfBreaker-proBackground:after{background:#2e2e2e linear-gradient(90deg,#2e2e2e 40%,rgba(57,187,122,.9))}}.HalfAndHalfBreaker-watchlistBackground:after{background:linear-gradient(270deg,rgba(7,29,57,.9) 10%,#005594)}@media (min-width:760px){.HalfAndHalfBreaker-watchlistBackground:after{background:linear-gradient(90deg,rgba(46,46,46,.9) 40%,#005594)}}.HalfAndHalfBreaker-newsletterBackground:after{background:linear-gradient(180deg,rgba(46,46,46,.5),#071d39)}@media (min-width:1020px){.HalfAndHalfBreaker-newsletterBackground:after{background:linear-gradient(90deg,rgba(46,46,46,.8) 40%,rgba(7,29,57,.9))}}.WatchlistPage-container{margin:0 22px;max-width:100%;min-height:500px;padding-top:5px;position:relative}@media (min-width:360px){.WatchlistPage-container{margin-bottom:0}}@media (min-width:760px){.WatchlistPage-container{margin:0 auto;max-width:678px}}@media (min-width:1020px){.WatchlistPage-container{margin-bottom:15px;max-width:960px}}@media (min-width:1340px){.WatchlistPage-container{margin-bottom:25px;max-width:1290px}}.WatchlistPage-header{display:flex;justify-content:space-between;margin-top:30px}.WatchlistPage-header h2{margin:0}.WatchlistPage-header button{border:1px solid #002f6c;color:#002f6c;padding:10px}.SiteMapHeader-container{display:flex;flex-direction:row;flex-wrap:wrap;padding:0;width:100%}@media (min-width:760px){.SiteMapHeader-container{padding-left:0;padding-right:0}}.SiteMapHeader-heading{border-top:1px solid #747474;color:#002f6c;font-size:30px;font-weight:800;letter-spacing:.5px;line-height:37px;margin-bottom:20px;margin-top:0;padding-top:10px;position:relative;text-transform:uppercase;width:100%}@media (min-width:760px){.SiteMapHeader-heading{margin-bottom:30px}}@media (min-width:1020px){.SiteMapHeader-heading{font-size:32px;line-height:40px}}.SiteMapHeader-heading:before{background-color:#2077b6;content:"";height:6px;left:0;position:absolute;top:-6px;width:110px}.SiteMapSubMenuItems-sitemapSubMenuItem{color:#171717;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:600;letter-spacing:.03em;line-height:22px;text-align:left}.SiteMapSubMenuItems-sitemapSubMenuItem:hover{text-decoration:underline}.SiteMapMenuItem-menuItemColumn{margin-bottom:20px;width:100%}@media (min-width:760px){.SiteMapMenuItem-menuItemColumn{margin-bottom:30px;width:33.33333%}}.SiteMapMenuItem-sitemapMenuItemLabel{color:#002f6c;display:inline-block;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:600;letter-spacing:.06em;text-align:left;text-transform:uppercase}.SiteMapMenuItem-sitemapMenuItemLabel:hover{color:#fcb700}.SiteMapMenu-container{position:relative}.SiteMapMenu-sitemapMenuWrapper{display:flex;flex-wrap:wrap}.SiteMapBreadCrumb-container{border-bottom:1px dotted #747474;padding-bottom:4px}.SiteMapBreadCrumb-container li{color:#005594;display:inline;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:500;letter-spacing:.06em;line-height:1.375;list-style-type:none;padding-bottom:12px;padding-right:10px;position:relative;text-transform:uppercase}.SiteMapBreadCrumb-container li:after{color:#ffbc05;content:">";display:inline;font-size:16px;padding-left:10px}.SiteMapBreadCrumb-container li:last-child{font-weight:700}.SiteMapBreadCrumb-container li:last-child:after{content:""}.SiteMapBreadCrumb-container .SiteMapBreadCrumb-link{word-break:break-word}.SiteMapBreadCrumb-container a{color:#005594}.SiteMapBreadCrumb-container a:hover{color:#ffbc05}@media (max-width:759px){.SiteMapBreadCrumb-container li:nth-child(4):before{content:"\A";white-space:pre}}.SiteMapMonth-container{margin-bottom:30px;width:100%}.SiteMapMonth-container h3{color:#005594;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:700;letter-spacing:.06em;margin-bottom:6px;padding-bottom:8px;text-transform:uppercase}.SiteMapMonth-monthData ul{display:flex;flex-direction:column;flex-wrap:wrap;height:300px}@media (max-width:759px){.SiteMapMonth-monthData ul{display:table}}.SiteMapMonth-monthData li{color:#2e2e2e;cursor:pointer;display:block;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:600;letter-spacing:.03em;line-height:1.375;list-style-type:none;padding-bottom:12px;padding-right:10px;position:relative}.SiteMapMonth-monthData .SiteMapMonth-link{word-break:break-word}.SiteMapMonth-monthData a{color:#2e2e2e}.SiteMapMonth-monthData a:hover{color:#2e2e2e;text-decoration:underline}.SiteMapDay-container{margin:0 0 30px;width:100%}.SiteMapDay-container h3{color:#005594;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:700;letter-spacing:.06em;margin-bottom:6px;padding-bottom:8px;text-transform:uppercase}.SiteMapDay-fullDate ul{display:flex;flex-direction:column;flex-wrap:wrap;height:375px}@media (max-width:759px){.SiteMapDay-fullDate ul{display:table}}.SiteMapDay-fullDate li{color:#2e2e2e;display:block;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:600;letter-spacing:.03em;line-height:1.375;list-style-type:none;margin:0 10px 12px 0;position:relative}.SiteMapDay-fullDate .SiteMapDay-link{word-break:break-word}.SiteMapDay-fullDate a{color:#2e2e2e}.SiteMapDay-fullDate a:hover{color:#2e2e2e;text-decoration:underline}.SiteMapArticleList-container{display:flex;flex-direction:row;flex-wrap:wrap;padding:0;width:100%}@media (min-width:760px){.SiteMapArticleList-container{padding-left:0;padding-right:0}}.SiteMapArticleList-content{width:100%}.SiteMapArticleList-content h3{color:#005594;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:700;letter-spacing:.06em;margin-bottom:6px;padding-bottom:8px;text-transform:uppercase}.SiteMapArticleList-articleData li,.SiteMapArticleList-emptyPage{color:#2e2e2e;display:block;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:600;letter-spacing:.03em}.SiteMapArticleList-articleData li{line-height:1.3;list-style-type:none;padding-bottom:14px;padding-right:10px;position:relative}.SiteMapArticleList-articleData li .SiteMapArticleList-link{word-break:break-word}.SiteMapArticleList-articleData li a{color:#2e2e2e}.SiteMapArticleList-articleData li a:hover{color:#2e2e2e;text-decoration:underline}.SiteMapYear-container{margin-bottom:30px;width:100%}.SiteMapYear-container h3{border-bottom:1px dotted #005594;color:#005594;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:600;letter-spacing:.06em;margin-bottom:10px;text-transform:uppercase}.SiteMapYear-yearData{padding-top:15px}.SiteMapYear-yearData ul{-moz-column-count:3;column-count:3;-moz-column-gap:0;column-gap:0}@media (max-width:759px){.SiteMapYear-yearData ul{display:table}}.SiteMapYear-yearData li{color:#005594;display:block;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:600;letter-spacing:.03em;line-height:1.375;list-style-type:none;padding-bottom:12px;padding-right:10px;position:relative}.SiteMapYear-yearData .SiteMapYear-link{word-break:break-word}.SiteMapYear-yearData a{color:#005594}.SiteMapYear-yearData a:hover{color:#ffbc05}.SiteMap-container{margin:0 22px;max-width:100%;padding-top:5px}@media (min-width:360px){.SiteMap-container{margin-bottom:0}}@media (min-width:760px){.SiteMap-container{margin:0 auto;max-width:678px}}@media (min-width:1020px){.SiteMap-container{margin-bottom:15px;max-width:960px}}@media (min-width:1340px){.SiteMap-container{margin-bottom:25px;max-width:1290px}}.SiteMap-col{display:flex;flex-direction:column;flex-grow:0;flex-shrink:0;margin-right:30px;max-width:calc(100% - 30px);min-width:calc(100% - 30px)}@media (min-width:760px){.SiteMap-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.SiteMap-col{max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media screen and (min-width:1020px) and (-ms-high-contrast:none){.SiteMap-col{max-width:100%;min-width:100%}}@media (min-width:1340px){.SiteMap-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}.SiteMap-col:last-child{margin-right:0}@media (min-width:360px) and (max-width:759px){.SiteMap-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}}@media (min-width:760px) and (max-width:1019px){.SiteMap-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}}.SiteMap-col-9{padding-top:30px}.SiteMap-col-9 .BrandBanner-container{margin-bottom:30px;z-index:99}@media (min-width:1340px){.SiteMap-col-9 .BrandBanner-container{margin-left:calc(-50vw - -538.5px)}}@media (min-width:760px){.SiteMap-col-9 .BrandBanner-container{margin-bottom:-100px;margin-top:50px}.SiteMap-col-9{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.SiteMap-col-9{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.SiteMap-col-9{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.SiteMap-col-9{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.SiteMap-col-9{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.SiteMap-col-9{flex-grow:0;flex-shrink:0;margin-right:0;max-width:calc(66.66667% - 10px);min-width:calc(66.66667% - 10px)}.SiteMap-col-9:last-child{margin-right:0}}@media (min-width:1340px){.SiteMap-col-9{flex-grow:0;flex-shrink:0;max-width:calc(75% - 7.5px);min-width:calc(75% - 7.5px)}}.SplitStats-splitStats{margin:15px 0 0}@media (min-width:760px){.SplitStats-splitStats{display:none}}.SplitStats-splitStats .SplitStats-title{color:#002f6c;font-size:18px;font-weight:800;text-transform:uppercase}.SplitStats-splitStats .SplitStats-list,.SplitStats-splitStats .SplitStats-listSingle{grid-gap:0 15px;display:grid;grid-template-columns:1fr 1fr;list-style:none;margin:0;padding:0}.SplitStats-splitStats .SplitStats-flowColumn{grid-auto-flow:column;grid-template-rows:repeat(4,auto)}.SplitStats-splitStats .SplitStats-listSingle{grid-auto-flow:row;grid-template-columns:1fr;grid-template-rows:none}.SplitStats-splitStats .SplitStats-listSingle .SplitStats-item{border-bottom:0;font-size:16px;margin:0;padding:5px 2px}.SplitStats-splitStats .SplitStats-listSingle .SplitStats-item:nth-child(odd){background:#f8f8f8}.SplitStats-splitStats .SplitStats-listSingle .SplitStats-name{color:#171717;font-weight:400}.SplitStats-splitStats .SplitStats-item{align-items:center;border-bottom:1px solid #d9d9d9;box-sizing:border-box;display:flex;font-family:Proxima Nova,sans-serif;font-size:11px;font-weight:800;justify-content:space-between;margin:0 0 5px;padding:0 0 5px}.SplitStats-splitStats .SplitStats-name{color:#747474}.SplitStats-splitStats .SplitStats-price{color:#171717}.CharitableTrustHeader-headerWrap{display:flex;margin-bottom:20px;margin-top:20px}.CharitableTrustHeader-headerWrap .CharitableTrustHeader-tableHeader{color:#002f6c;font-size:24px;font-weight:900;letter-spacing:.25px;line-height:24px}@media (max-width:759px){.CharitableTrustHeader-headerWrap .CharitableTrustHeader-tableHeader{font-size:20px;line-height:20px}}.CharitableTrustHeader-smallSpan{background-color:#071d39;display:block;height:6px;width:110px}@media (max-width:360px){.CharitableTrustHeader-smallSpan{width:88px}}.CharitableTrustHeader-border{background-color:#747474;display:block;height:1px;width:100%}.TrustActivityTable-trustActivityTable{display:flex;flex-wrap:wrap;max-width:1000px}.TrustActivityTable-activityTable{max-height:170px;max-width:1000px;overflow-x:hidden;overflow-y:auto;transition:max-height .3s ease-out;width:100%}@media (max-width:320px){.TrustActivityTable-activityTable{overflow-x:auto}}.TrustActivityTable-activityTable.TrustActivityTable-noActivity{align-items:center;display:flex;overflow-y:hidden;padding-right:20px;width:50%}@media (max-width:550px){.TrustActivityTable-activityTable.TrustActivityTable-noActivity{width:100%}}.TrustActivityTable-activityTable::-webkit-scrollbar{height:3px;width:3px}.TrustActivityTable-activityTable::-webkit-scrollbar-track{background:#d9d9d9;border-radius:3px}.TrustActivityTable-activityTable::-webkit-scrollbar-thumb{background:#9e9e9e}.TrustActivityTable-activityRow{align-items:center;background-color:rgba(207,216,226,.25);border-left:3px solid #0496ff;border-radius:3px;display:flex;height:36px;margin-bottom:4px;margin-right:8px;min-width:310px;position:relative}.TrustActivityTable-activityRow:last-child{margin-bottom:0}.TrustActivityTable-activityLogo{align-items:center;display:flex;justify-content:center;min-width:48px;width:48px}@media (max-width:550px){.TrustActivityTable-activityLogo{min-width:40px;width:40px}}.TrustActivityTable-activityLogo span{background-color:#071d39;height:16px;width:16px}.TrustActivityTable-activityLogo .TrustActivityTable-tradeAlertIcon{mask-image:url(https://static-redesign.cnbcfm.com/dist/aad91182e297b128069c.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/aad91182e297b128069c.svg)}.TrustActivityTable-activityLogo .TrustActivityTable-earningsIcon{mask-image:url(https://static-redesign.cnbcfm.com/dist/3f94109d9f51677fee8d.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/3f94109d9f51677fee8d.svg)}.TrustActivityTable-activityLogo .TrustActivityTable-dividendIcon{mask-image:url(https://static-redesign.cnbcfm.com/dist/3635286e4568e237edcf.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/3635286e4568e237edcf.svg)}.TrustActivityTable-activityLogo .TrustActivityTable-highIcon{mask-image:url(https://static-redesign.cnbcfm.com/dist/4ecf1f23053f2b129fc4.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/4ecf1f23053f2b129fc4.svg)}.TrustActivityTable-activityLogo .TrustActivityTable-lowIcon{mask-image:url(https://static-redesign.cnbcfm.com/dist/68d05358c2f6a94bf78a.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/68d05358c2f6a94bf78a.svg)}.TrustActivityTable-activityType{color:#071d39;font-size:16px;font-weight:600;min-width:25%;padding:0 5px;white-space:nowrap}@media (max-width:760px){.TrustActivityTable-activityType{flex-grow:1;font-size:14px;margin-right:15px;min-width:25%}}@media (max-width:550px){.TrustActivityTable-activityType{margin-right:0;min-width:50%;padding:0}}.TrustActivityTable-quoteWrapper{max-width:20%}@media (max-width:760px){.TrustActivityTable-quoteWrapper{max-width:25%}}@media (max-width:759px){.TrustActivityTable-quoteWrapper{width:unset}}.TrustActivityTable-activityQuoteData{border:1px solid #9e9e9e;border-radius:8px;display:flex;font-size:12px;font-weight:800;justify-content:center;padding:8px;white-space:nowrap;width:130px}@media (max-width:550px){.TrustActivityTable-activityQuoteData{width:47px}}.TrustActivityTable-activityQuoteData:hover{background-color:#071d39}.TrustActivityTable-activityQuoteData:hover .TrustActivityTable-quoteGain{color:#34d07a}.TrustActivityTable-activityQuoteData:hover .TrustActivityTable-quoteDecline{color:#e64d55}.TrustActivityTable-activityQuoteData .TrustActivityTable-symbolDecline,.TrustActivityTable-activityQuoteData .TrustActivityTable-symbolGain{color:#071d39;margin-right:8px}.TrustActivityTable-activityQuoteData:hover .TrustActivityTable-symbolDecline,.TrustActivityTable-activityQuoteData:hover .TrustActivityTable-symbolGain{color:#fff}@media (max-width:550px){.TrustActivityTable-activityQuoteData:hover .TrustActivityTable-symbolDecline{color:#e64d55}.TrustActivityTable-activityQuoteData:hover .TrustActivityTable-symbolGain{color:#34d07a}.TrustActivityTable-activityQuoteData .TrustActivityTable-symbolGain{color:#008456;margin-right:0}.TrustActivityTable-activityQuoteData .TrustActivityTable-symbolDecline{color:#ce2b2b;margin-right:0}}.TrustActivityTable-activityQuoteData .TrustActivityTable-quoteGain{color:#008456}.TrustActivityTable-activityQuoteData .TrustActivityTable-quoteDecline{color:#ce2b2b}.TrustActivityTable-activityQuoteData .TrustActivityTable-quoteDecline span:nth-child(2),.TrustActivityTable-activityQuoteData .TrustActivityTable-quoteGain span:nth-child(2){margin-left:4px}@media (max-width:550px){.TrustActivityTable-activityQuoteData .TrustActivityTable-quoteDecline,.TrustActivityTable-activityQuoteData .TrustActivityTable-quoteGain{display:none}}.TrustActivityTable-descriptionWrap{max-width:calc(75% - 98px)}@media (min-width:550px){.TrustActivityTable-descriptionWrapWithQuote{width:calc(65% - 98px)}}@media (max-width:550px){.TrustActivityTable-descriptionWrapWithQuote{max-width:25%}}@media (min-width:1020px){.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityDescription{margin-left:64px!important}}@media (max-width:1020px){.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityDescription{margin-left:0;width:calc(65% - 98px)}}@media (max-width:760px){.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityDescription{display:none}}@media (min-width:760px) and (max-width:1019px){.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityDescription{text-align:center}}.TrustActivityTable-descriptionWrap{min-width:0}.TrustActivityTable-descriptionWrap,.TrustActivityTable-descriptionWrapWithQuote{display:flex;font-size:16px;justify-content:space-between;line-height:28px}.TrustActivityTable-descriptionWrap .TrustActivityTable-activityLink,.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityLink{font-family:Lyon Text;max-width:100%}.TrustActivityTable-descriptionWrap .TrustActivityTable-activityDescription,.TrustActivityTable-descriptionWrap .TrustActivityTable-activityLink a,.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityDescription,.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityLink a{display:block;flex:1 2 auto;max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.TrustActivityTable-descriptionWrap .TrustActivityTable-activityDescription,.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityDescription{color:#071d39;font-family:Proxima Nova}@media (max-width:760px){.TrustActivityTable-descriptionWrap .TrustActivityTable-activityDescription,.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityDescription{text-align:center}}.TrustActivityTable-descriptionWrap .TrustActivityTable-activityLink a,.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityLink a{color:#2077b6;position:relative}.TrustActivityTable-descriptionWrap .TrustActivityTable-activityDescription a,.TrustActivityTable-descriptionWrap .TrustActivityTable-activityLink a,.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityDescription a,.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityLink a{text-decoration:underline;-webkit-text-decoration-color:#2077b6;text-decoration-color:#2077b6}.TrustActivityTable-descriptionWrap .TrustActivityTable-activityDescription a:hover,.TrustActivityTable-descriptionWrap .TrustActivityTable-activityLink a:hover,.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityDescription a:hover,.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityLink a:hover{color:#fcb700;-webkit-text-decoration-color:#fcb700;text-decoration-color:#fcb700}.TrustActivityTable-descriptionWrap .TrustActivityTable-activityLink a:before,.TrustActivityTable-descriptionWrapWithQuote .TrustActivityTable-activityLink a:before{bottom:5px;content:"";display:inline-block;left:0;position:absolute;width:99.5%}.TrustActivityTable-closeButton{align-items:center;display:flex;justify-content:flex-end;padding-left:20px;padding-right:14px;width:100%}@media (max-width:550px){.TrustActivityTable-closeButton{padding-left:0}}.TrustActivityTable-closeButton .TrustActivityTable-closeIcon{background-color:#071d39;height:16px;mask-image:url(https://static-redesign.cnbcfm.com/dist/ca2bb28892b3278d0e95.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/ca2bb28892b3278d0e95.svg);width:16px}@media (max-width:550px){.TrustActivityTable-closeButton .TrustActivityTable-closeIcon{margin-left:10px}}.TrustActivityTable-activityFooter{align-items:center;display:flex;flex:1;font-size:16px;justify-content:flex-end;line-height:28px;margin-top:16px;max-width:1000px;overflow-y:hidden;padding-right:1%;text-align:right;transition:max-height .3s ease-out;width:100%}.TrustActivityTable-activityFooter .TrustActivityTable-recentAlertMessage{color:#2077b6;font-family:Lyon Text;text-decoration:underline}.TrustActivityTable-noActivity+.TrustActivityTable-activityFooter{flex:unset;line-height:36px;margin-top:0;width:-webkit-max-content;width:-moz-max-content;width:max-content}.TrustActivityTable-noActivityMessage{color:#071d39;font-size:16px;font-weight:600;line-height:24px}.TrustActivityTable-hiddenRowLink{height:36px;position:absolute;right:50px;top:0;width:calc(100% - 50px);z-index:0}@media (min-width:760px){.TrustActivityTable-hiddenRowLink{display:none}}.TrustActivityTable-closeButtonWrap{flex-grow:1}@media (max-width:759px){.TrustActivityTable-closeButtonWrap{display:flex;justify-content:flex-end}}@media (max-width:760px){.TrustActivityTable-activityDescription,.TrustActivityTable-viewQuote{display:none!important}}.HistoricalTrustActivity-historicalTrustActivity{margin-bottom:50px}.HistoricalTrustActivity-filterButtonWrap{overflow-x:auto;white-space:nowrap}.HistoricalTrustActivity-filterButtonWrap::-webkit-scrollbar{height:0;width:0}.HistoricalTrustActivity-filterButtonWrap::-webkit-scrollbar-track{background:transparent}.HistoricalTrustActivity-filterButtonWrap .HistoricalTrustActivity-filterButton,.HistoricalTrustActivity-filterButtonWrap .HistoricalTrustActivity-filterButtonActive{border:1px solid #002f6c;border-radius:20px;height:28px;margin-left:12px}.HistoricalTrustActivity-filterButtonWrap .HistoricalTrustActivity-filterButton:first-child,.HistoricalTrustActivity-filterButtonWrap .HistoricalTrustActivity-filterButtonActive:first-child{margin-left:0}.HistoricalTrustActivity-filterButtonWrap .HistoricalTrustActivity-filterButton span,.HistoricalTrustActivity-filterButtonWrap .HistoricalTrustActivity-filterButtonActive span{color:#002f6c;display:block;font-size:12px;font-weight:600;letter-spacing:.79px;line-height:12px;margin:5px 10px;position:none;text-transform:uppercase}.HistoricalTrustActivity-filterButtonWrap .HistoricalTrustActivity-filterButton{background-color:#fff}.HistoricalTrustActivity-filterButtonWrap .HistoricalTrustActivity-filterButton span{color:#002f6c}.HistoricalTrustActivity-filterButtonWrap .HistoricalTrustActivity-filterButtonActive{background-color:#002f6c}.HistoricalTrustActivity-filterButtonWrap .HistoricalTrustActivity-filterButtonActive span{color:#fff}.HistoricalTrustActivity-date{color:#071d39;font-family:Proxima Nova;font-size:16px;font-weight:600;line-height:20px;margin-bottom:20px;margin-top:28px}.HistoricalTrustActivity-loadMoreWrap{display:flex;justify-content:flex-end;margin-top:20px;max-width:1000px;width:100%}.HistoricalTrustActivity-loadMoreWrap>a{margin-right:8px}.TodaysTrustActivity-trustActivity{margin-bottom:50px;margin-top:20px;max-width:100%;overflow:hidden}.TodaysTrustActivity-dropdownButton{align-items:center;color:#fff;display:flex}.TodaysTrustActivity-dropdownButton:active{-webkit-tap-highlight-color:transparent}.TodaysTrustActivity-dropdownButton .TodaysTrustActivity-dropdownArrow,.TodaysTrustActivity-dropdownButton .TodaysTrustActivity-dropdownUpArrow{background:#071d39;height:11px;margin-left:20px;width:19px}.TodaysTrustActivity-dropdownButton .TodaysTrustActivity-dropdownArrow,.TodaysTrustActivity-dropdownButton .TodaysTrustActivity-dropdownUpArrow{mask-image:url(https://static-redesign.cnbcfm.com/dist/b6891ac795b61eeb366b.svg);-webkit-mask-image:url(https://static-redesign.cnbcfm.com/dist/b6891ac795b61eeb366b.svg)}.TodaysTrustActivity-dropdownButton .TodaysTrustActivity-dropdownUpArrow{transform:scaleY(-1)}.LivePill-watchLivePill{bottom:0;display:inline-block;padding-right:4px;position:relative;vertical-align:baseline;width:auto!important}.LatestNews-header{border-top:5px solid #002f6c}.LatestNews-header h2{color:#002f6c;font-size:24px;font-weight:900;letter-spacing:.5px;margin:12px 0 16px;text-transform:uppercase}@media (max-width:359px){.LatestNews-header h2{font-size:18px}}.LatestNews-item{border-bottom:1px solid #dedede;display:flex;font-family:Proxima Nova,Helvetica,Arial,sans-serif;margin:0 0 12px;padding:0 0 10px}.LatestNews-item:last-child{margin:0 0 30px}.LatestNews-item:before{background:#fcb700;border-radius:100%;content:"";display:block;flex-shrink:0;height:8px;margin:7px 12px 0 0;width:8px}.LatestNews-item.LatestNews-iconCleared:before{background:none}.LatestNews-container{display:flex;flex-direction:column;margin:0 12px 0 0}.LatestNews-headline{color:#171717;font-size:16px;font-weight:700;line-height:18px;margin:0 10px 0 0}.LatestNews-videoIcon{display:inline;margin:0 0 -3px 5px;width:16px}.LatestNews-wrapper{white-space:nowrap}@media (min-width:360px) and (max-width:759px){.LatestNews-wrapper{display:block}}.LatestNews-source,.LatestNews-timestamp{color:#747474;display:inline-flex;font-size:12px;font-weight:700;letter-spacing:.2px;text-transform:uppercase}.LatestNews-proPill{transform:translateY(2px)}.LatestNews-watchLivePill{margin-right:4px;padding:0!important;transform:translateY(2px)}.LatestNews-source:before{content:"-";display:block;margin:0 5px}@media (max-width:1019px){.LatestNews-isHomePage{background:#f7f7f7;padding:1px 16px 16px}}@media (min-width:1020px){.LatestNews-isHomePage{border-bottom:5px solid #002f6c}.LatestNews-isHomePage:after{background:linear-gradient(hsla(0,0%,100%,0),#fff);bottom:5px;content:"";display:block;height:100px;pointer-events:none;position:absolute;width:96%}}.LatestNews-isHomePage.LatestNews-hideGradient:after{display:none}.LatestNews-isHomePage .LatestNews-header{border-top:none}@media (min-width:1020px){.LatestNews-isHomePage .LatestNews-header{border-top:1px solid #747474}.LatestNews-isHomePage .LatestNews-header:before{border-top:6px solid #0089d0;content:"";display:block;margin:-6px 0 0;width:110px}.LatestNews-isHomePage .LatestNews-header h2{font-size:18px;margin:10px 0}}.LatestNews-isHomePage .LatestNews-headline{font-weight:600;order:2}.LatestNews-isHomePage .LatestNews-headline:hover{color:#171717;text-decoration:underline}@media (min-width:1020px){.LatestNews-isHomePage .LatestNews-list{max-height:238px;overflow-y:auto;position:relative}}@media (min-width:1340px){.LatestNews-isHomePage .LatestNews-list{max-height:352px}}.LatestNews-isHomePage .LatestNews-item:last-child{border-bottom:none;margin:0 0 5px;padding:0 0 5px}.LatestNews-isHomePage .LatestNews-headlineWrapper{order:2}.LatestNews-isHomePage .LatestNews-wrapper{display:block;order:1}.LatestNews-isHomePage .LatestNews-visitedIcon{margin:2px 0 0}.LatestNews-isHomePage .LatestNews-source,.LatestNews-isHomePage .LatestNews-timestamp{letter-spacing:1.2px}@media (min-width:1020px){.LatestNews-isHomePage .LatestNews-buttonContainer{display:none}div.LatestNews-isIntlHomepage .LatestNews-list{max-height:378px}}@media (min-width:1340px){div.LatestNews-isIntlHomepage .LatestNews-list{max-height:472px}}.LatestNews-button,.LatestNews-newsTabButton{align-items:center;background:#fff;border:1px solid #002f6c;color:#002f6c;display:flex;font-family:Proxima Nova,sans-serif;font-size:14px;font-weight:600;justify-content:center;letter-spacing:1.09px;margin:15px 0;padding:10px;text-transform:uppercase;transition:background .15s,color .15s;width:100%}.LatestNews-button:after,.LatestNews-newsTabButton:after{border-bottom:2px solid #002f6c;border-right:2px solid #002f6c;content:"";display:block;height:7px;margin:-5px 0 0 7px;transform:rotate(45deg);transition:border .15s;width:7px}.LatestNews-button:hover,.LatestNews-newsTabButton:hover{background:#002f6c;color:#fff}.LatestNews-button:hover:after,.LatestNews-newsTabButton:hover:after{border-bottom-color:#fff;border-right-color:#fff}@media (min-width:760px){.LatestNews-button,.LatestNews-newsTabButton{margin:15px auto;padding:10px 30px;width:auto}}@media (min-width:1020px){.LatestNews-button,.LatestNews-newsTabButton{display:none}}.LatestNews-newsTabButton{display:none;margin:0 auto 30px}@media (min-width:760px){.LatestNews-newsTabButton{display:flex}}.LatestNews-tradeAlertLabel{background-color:#fff;border:.5px solid #071d39;border-radius:4px;color:#071d39;display:inline-block;font-family:Proxima Nova,sans-serif;font-size:11px;font-style:normal;font-weight:600;line-height:10px;margin-right:4px;margin-top:2px;padding:2.5px 4px;vertical-align:top}.QuoteNewsWithFilters-filterButtonWrap{margin:16px 0;overflow-x:auto;white-space:nowrap}.QuoteNewsWithFilters-filterButtonWrap::-webkit-scrollbar{height:0;width:0}.QuoteNewsWithFilters-filterButtonWrap::-webkit-scrollbar-track{background:transparent}.QuoteNewsWithFilters-filterButtonWrap .QuoteNewsWithFilters-filterButton{background-color:#fff;border:1px solid #002f6c;border-radius:20px;height:28px;margin-left:12px}.QuoteNewsWithFilters-filterButtonWrap .QuoteNewsWithFilters-filterButton:first-child{margin-left:0}.QuoteNewsWithFilters-filterButtonWrap .QuoteNewsWithFilters-filterButton span{color:#002f6c;display:block;font-size:12px;font-weight:600;letter-spacing:.79px;line-height:12px;margin:5px 10px;pointer-events:none;position:none;text-transform:uppercase}.QuoteNewsWithFilters-filterButtonWrap .QuoteNewsWithFilters-filterButtonActive{background-color:#002f6c}.QuoteNewsWithFilters-filterButtonWrap .QuoteNewsWithFilters-filterButtonActive span{color:#fff}.QuotePageBuilder-container{margin:0 22px;max-width:100%;padding-top:15px}@media (min-width:360px){.QuotePageBuilder-container{margin-bottom:0}}@media (min-width:760px){.QuotePageBuilder-container{margin:0 auto;max-width:678px}}@media (min-width:1020px){.QuotePageBuilder-container{margin-bottom:15px;max-width:960px}}@media (min-width:1340px){.QuotePageBuilder-container{margin-bottom:25px;max-width:1290px}}@media (min-width:760px){.QuotePageBuilder-row{margin-bottom:20px;padding-top:30px}}@media (min-width:1020px){.QuotePageBuilder-row{display:flex}}.QuotePageBuilder-col{display:flex;flex-direction:column;flex-grow:0;flex-shrink:0;margin-right:30px;max-width:calc(100% - 30px);min-width:calc(100% - 30px)}@media (min-width:760px){.QuotePageBuilder-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.QuotePageBuilder-col{max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media screen and (min-width:1020px) and (-ms-high-contrast:none){.QuotePageBuilder-col{max-width:100%;min-width:100%}}@media (min-width:1340px){.QuotePageBuilder-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}.QuotePageBuilder-col:last-child{margin-right:0}@media (min-width:360px) and (max-width:759px){.QuotePageBuilder-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}}@media (min-width:760px) and (max-width:1019px){.QuotePageBuilder-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}}.QuotePageBuilder-mainContent{padding-top:15px}@media (min-width:1020px){.QuotePageBuilder-mainContent{padding-top:30px}}.QuotePageBuilder-mainContent .BrandBanner-container{margin-bottom:30px;z-index:99}@media (min-width:1340px){.QuotePageBuilder-mainContent .BrandBanner-container{margin-left:calc(-50vw - -538.5px)}}@media (min-width:760px){.QuotePageBuilder-mainContent .BrandBanner-container{margin-bottom:-100px;margin-top:50px}.QuotePageBuilder-mainContent{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px);padding-top:0}}@media (min-width:760px) and (min-width:760px){.QuotePageBuilder-mainContent{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.QuotePageBuilder-mainContent{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.QuotePageBuilder-mainContent{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.QuotePageBuilder-mainContent{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.QuotePageBuilder-mainContent{flex-grow:0;flex-shrink:0;margin-right:0;max-width:calc(66.66667% - 10px);min-width:calc(66.66667% - 10px)}.QuotePageBuilder-mainContent:last-child{margin-right:0}}@media (min-width:1340px){.QuotePageBuilder-mainContent{flex-grow:0;flex-shrink:0;max-width:calc(75% - 7.5px);min-width:calc(75% - 7.5px)}}@media (min-width:760px){.QuotePageBuilder-sidebar{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.QuotePageBuilder-sidebar{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.QuotePageBuilder-sidebar{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.QuotePageBuilder-sidebar{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.QuotePageBuilder-sidebar{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.QuotePageBuilder-sidebar{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(33.33333% - 20px);min-width:calc(33.33333% - 20px)}}@media (min-width:1340px){.QuotePageBuilder-sidebar{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(25% - 22.5px);min-width:calc(25% - 22.5px)}}.QuotePageBuilder-button,.QuotePageBuilder-buttonActive{align-items:center;background:#fff;border:1px solid #002f6c;color:#002f6c;display:flex;font-family:Proxima Nova,sans-serif;font-size:12px;font-weight:700;justify-content:center;letter-spacing:1.09px;margin:15px 0 30px;padding:15px 20px;text-transform:uppercase;width:100%}.QuotePageBuilder-button:after,.QuotePageBuilder-buttonActive:after{border-bottom:2px solid #002f6c;border-right:2px solid #002f6c;content:"";display:block;height:7px;margin:-4px 0 0 5px;transform:rotate(45deg);width:7px}.QuotePageBuilder-buttonActive:after{margin:5px 0 0 5px;transform:rotate(225deg)}.QuotePageBuilder-showOnDesktop{display:none}@media (min-width:760px){.QuotePageBuilder-showOnDesktop{display:initial}}.QuotePageBuilder-showOnMobile{display:initial;margin-bottom:10px}@media (min-width:760px){.QuotePageBuilder-showOnMobile{display:none}}.LiveTVScheduleHeader-header{color:#071d39;font-style:normal;position:relative;width:100%}.LiveTVScheduleHeader-header .LiveTVScheduleHeader-heading{font-size:40px;font-weight:800;line-height:42px;padding:36px 8px 0;text-align:center}@media (max-width:759px){.LiveTVScheduleHeader-header .LiveTVScheduleHeader-heading{font-size:36px}}@media (max-width:359px){.LiveTVScheduleHeader-header .LiveTVScheduleHeader-heading{font-size:24px}}.LiveTVScheduleHeader-header .LiveTVScheduleHeader-headerUnderline{background:#fcb700;height:7px;margin-bottom:40px;width:100%}.LiveTVDatePicker-container{margin:0 auto 38px;max-width:1145px;width:90%}.LiveTVDatePicker-modal{bottom:0;height:100%;left:0;position:absolute;right:0;top:0;width:100%;z-index:99}.LiveTVDatePicker-tveDropdown{background:#aeaeae;border-radius:3px;color:#171717;display:block;height:34px;padding:1px;position:relative;width:272px}.LiveTVDatePicker-head{background:linear-gradient(#e7e7e7,#fff);background-image:linear-gradient(#f6f6f6,#fafafa);border-radius:3px;cursor:pointer;text-shadow:0 1px 0 #fff;width:100%}.LiveTVDatePicker-arrowWrap,.LiveTVDatePicker-head{border-top:1px solid #fff;display:inline-block;height:32px}.LiveTVDatePicker-arrowWrap{background-image:-o-linear-gradient(top,#dbdbdb 0,#fcfcfc 100%);border-left:1px solid #fff;border-radius:0 3px 3px 0;box-shadow:-1px 0 0 0 #c9c9c9;float:right;position:absolute;right:1px;top:1px;width:31px}.LiveTVDatePicker-arrow{background-image:url(https://static-redesign.cnbcfm.com/dist/3f3502c997d472bd03be.png);background-repeat:no-repeat;border:none;box-shadow:none;height:25px;left:-10%;margin:-15px 0 0;position:absolute;top:50%;width:29px}.LiveTVDatePicker-openArrow{border-color:#171717 transparent transparent;border-style:solid;border-width:7px 7px 0;box-shadow:0 -1px 0 0 #171717;height:0;margin-left:10px;margin-top:-2px;width:0}.LiveTVDatePicker-close{background:none;background-image:none;border-color:transparent;border-radius:0;box-shadow:none}.LiveTVDatePicker-today{font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:24px;font-style:normal;font-weight:800;line-height:28px;text-transform:uppercase}.LiveTVDatePicker-datesContainer{float:left}.LiveTVDatePicker-dates{font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:24px;font-style:normal;font-weight:500;line-height:28px;margin-left:6px}.LiveTVDatePicker-selectDateContainer{text-align:left}.LiveTVDatePicker-selectDate{font-size:18px;font-style:normal;font-weight:500;line-height:28px;margin-left:6px}.LiveTVDatePicker-menu{background:#fff;border:1px solid #c3c3c3;border-radius:3px;height:200px;overflow:scroll;padding:6px 0 6px 7px;position:absolute;width:272px;z-index:100}.LiveTVDatePicker-menu button{border-radius:3px;display:block;font-family:Proxima Nova Semi Bold,Helvetica,Arial,sans-serif;font-size:16px;line-height:23px;margin-right:6px;padding:5px 12px 4px 8px;position:relative;text-align:initial;text-overflow:ellipsis;white-space:nowrap;width:100%}.LiveTVDatePicker-menu button:hover{color:#fff}.LiveTVDatePicker-menu li:hover{background-color:#2077b6;border-radius:3px;cursor:pointer;width:254px}.LiveTVDatePicker-filterDayWeek{display:inline-block;text-align:left;width:87px}.LiveTVDatePicker-filterMonth{display:inline-block;width:40px}.LiveTVDatePicker-hide{display:none}.LiveTVCurrentShow-container{border:4px solid #002f6c;color:#002f6c;margin:0 auto 41px;max-width:1145px;padding:8px 16px;position:relative;width:90%}.LiveTVCurrentShow-liveScheduleContainer{align-items:center;display:flex;justify-content:space-between;margin:0 22px}@media (max-width:1019px){.LiveTVCurrentShow-liveScheduleContainer{display:block}}.LiveTVCurrentShow-link,.LiveTVCurrentShow-link:hover{color:#002f6c}.LiveTVCurrentShow-onNow{align-items:center;background:#fff;display:flex;font-size:14px;font-style:normal;font-weight:700;justify-content:center;line-height:20px;position:absolute;text-align:center;top:-11px;width:114px}.LiveTVCurrentShow-onNow:before{-webkit-animation:LiveTVCurrentShow-pulse 2s infinite;animation:LiveTVCurrentShow-pulse 2s infinite;background-color:#ff5053;border-radius:100%;box-shadow:0 0 0 0 #ce2b2b;content:"";display:block;height:6px;margin:6px 8px;transform:scale(1);width:6px}@-webkit-keyframes LiveTVCurrentShow-pulse{0%{box-shadow:0 0 0 1px #ce2b2b;opacity:1;transform:scale(.95)}70%{box-shadow:0 0 0 2px #ce2b2b;opacity:.9;transform:scale(1)}to{box-shadow:0 0 0 1px #ce2b2b;opacity:1;transform:scale(.95)}}@keyframes LiveTVCurrentShow-pulse{0%{box-shadow:0 0 0 1px #ce2b2b;opacity:1;transform:scale(.95)}70%{box-shadow:0 0 0 2px #ce2b2b;opacity:.9;transform:scale(1)}to{box-shadow:0 0 0 1px #ce2b2b;opacity:1;transform:scale(.95)}}.LiveTVCurrentShow-currShow{font-size:28px;font-style:normal;font-weight:400;line-height:18px;padding:16px 0}@media (max-width:759px){.LiveTVCurrentShow-currShow{font-size:24px}}@media (max-width:479px){.LiveTVCurrentShow-currShow{font-size:18px}}.LiveTVCurrentShow-currShow .LiveTVCurrentShow-onNowTitle{font-weight:800}.LiveTVCurrentShow-currShow .LiveTVCurrentShow-separator{font-weight:700}.LiveTVCurrentShow-nextShow{font-size:20px;font-style:normal;font-weight:400;line-height:14px;padding:16px 0}@media (max-width:479px){.LiveTVCurrentShow-nextShow{display:none}}@media (max-width:759px){.LiveTVCurrentShow-nextShow{font-size:16px}}.LiveTVCurrentShow-nextShow .LiveTVCurrentShow-nextTitle{font-weight:800}.LiveTVSchedule-container{margin:auto;max-width:1145px;width:100%}.Loading-wrapper{background:none;height:100%}.Loading-nightModeWrapper{background:#000;height:100%}.Loading-loadingImage{height:295px;max-width:900px;width:100%}.ErrorChartBoundary-errorWrapper{background:grey;border:1px solid silver;color:#fff;height:352px}.ErrorChartBoundary-errorWrapper .ErrorChartBoundary-msg{position:relative;text-align:center;top:35%}.ErrorChartBoundary-errorWrapper .ErrorChartBoundary-msg span{background:#fff;border-radius:3px;color:#000;font-family:inherit;font-size:12px;line-height:inherit;margin:0;padding:2px}.PhoenixChartWrapper-rendererApp,.PhoenixChartWrapper-rendererWeb{min-height:380px;position:relative}.PhoenixChartWrapper-rendererWeb{margin-top:20px}.PhoenixChartWrapper-rendererApp{height:100%;margin:0}.PhoenixChartWrapper-loadingWrapper{background:#fff;bottom:0;left:0;position:absolute;right:0;top:0;z-index:10}.MobileAppChart-container{max-width:100%}@-webkit-keyframes WatchlistNotification-showAndFadeOut{0%{opacity:0;transform:translateY(5px)}5%{opacity:1;transform:translateY(0)}80%{opacity:1}to{opacity:0}}@keyframes WatchlistNotification-showAndFadeOut{0%{opacity:0;transform:translateY(5px)}5%{opacity:1;transform:translateY(0)}80%{opacity:1}to{opacity:0}}.WatchlistNotification-notificationContainer{display:flex;justify-content:center;position:absolute;width:100%}.WatchlistNotification-notificationContainer .WatchlistNotification-notification{-webkit-animation:WatchlistNotification-showAndFadeOut 3s linear;animation:WatchlistNotification-showAndFadeOut 3s linear;font-family:Proxima Nova,Helvetica,Arial,sans-serif;opacity:0;text-align:center;z-index:4000}.WatchlistSortableColumnHeader-defaultSort{fill:#bababa}.WatchlistSortableColumnHeader-sortActive{color:#005594!important}.WatchlistSortableColumnHeader-sortActive .WatchlistSortableColumnHeader-asc,.WatchlistSortableColumnHeader-sortActive .WatchlistSortableColumnHeader-desc{fill:#005594}button.WatchlistSortableColumnHeader-sortButton{align-items:center;border-right:1px solid #ccc;display:flex;float:right;margin-right:4px;padding-right:4px}button.WatchlistSortableColumnHeader-sortButton:last-child{border:0;margin:0;padding:0}.WatchlistSortableColumnHeader-sortingIcons{display:flex;flex-direction:column;margin-left:8px}.SymbolTable-symbolTable{border-bottom:1px solid #d9d9d9;font-family:Proxima Nova,Helvetica,Arial,sans-serif;position:relative;table-layout:fixed;width:100%}.SymbolTable-symbolTable.SymbolTable-zeroQuotes{border-bottom:none}.SymbolTable-symbolTable:before{bottom:0;content:"";display:block;height:40px;pointer-events:none;position:absolute;width:100%;z-index:1}.SymbolTable-symbolTable.SymbolTable-fade:before{background:linear-gradient(180deg,hsla(0,0%,100%,0),25%,#fff)}.SymbolTable-symbolTable thead{display:table;width:100%}.SymbolTable-symbolTable thead th{color:#747474;font-size:12px;font-style:normal;font-weight:700;line-height:15px;padding-bottom:5px}.SymbolTable-symbolTable td,.SymbolTable-symbolTable th{font-size:14px;padding:unset;padding-right:10px;text-align:end;width:25%}@media (max-width:1339px){.SymbolTable-symbolTable td,.SymbolTable-symbolTable th{font-size:12px}}.SymbolTable-symbolTable tr{box-sizing:border-box;display:table;width:100%}.SymbolTable-symbolTable tbody{display:block;max-height:240px;overflow-y:scroll;width:100%}.SymbolTable-symbolTable tbody tr{width:100%}.SymbolTable-symbolTable tbody tr:nth-child(odd){background:#f1f1f1}.SymbolTable-symbolTable tbody td{font-size:14px;font-style:normal;font-weight:600;height:30px;padding:4px 10px 4px 0}.SymbolTable-symbolTable tbody td.SymbolTable-symbol{overflow:hidden;padding-left:12px;text-align:start;text-overflow:ellipsis;white-space:nowrap}.SymbolTable-symbolTable tbody td a:hover{color:#005594;text-decoration:none}th{color:#9e9e9e}.SymbolTable-symbolLink{color:#000}.SymbolTable-positive{color:#00a857}.SymbolTable-negative{color:#ce2b2b}.SymbolTable-extendedHours{align-items:center;color:#e8802a;justify-content:flex-end;position:relative;text-align:end}.SymbolTable-extendedHours>svg{position:absolute;right:-3px;top:10px}.WatchlistSymbolAdder-container .WatchlistSymbolAdder-dropdownContent{left:0;right:auto}.WatchlistSymbolAdder-form{position:relative;white-space:nowrap;z-index:99}.WatchlistSymbolAdder-input{font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-weight:700;letter-spacing:.07em;padding:3px 3px 3px 6px;width:auto}@media (max-width:759px){.WatchlistSymbolAdder-input{width:100px}}input::-moz-placeholder{color:#ccc}input::placeholder{color:#ccc}.WatchlistSymbolAdder-addButton{background-color:#005594;border-radius:4px;color:#fff;font-size:12px;font-weight:700;letter-spacing:.07em;padding:3px 5px}.WatchlistSymbolAdder-addButton:hover{background-color:#002f6c;color:#fff;cursor:pointer;font-size:12px;font-weight:700;letter-spacing:.07em}.WatchlistSymbolAdder-dropdownContent{background-color:#fff;border-radius:4px;color:#333;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-weight:500;position:absolute;text-align:left;white-space:normal;width:392px;z-index:5000}@media (max-width:759px){.WatchlistSymbolAdder-dropdownContent{padding:10px;width:270px}}.WatchlistSymbolAdder-dropdownContent table{border-collapse:collapse;table-layout:fixed;white-space:nowrap;width:100%}.WatchlistSymbolAdder-dropdownContent table td{font-size:16px;padding:6px 6px 6px 0}.WatchlistSymbolAdder-dropdownItem{border-bottom:1px solid #ccd6d8;color:#333;display:table-row;line-height:20px;padding:2px 0;text-decoration:none}.WatchlistSymbolAdder-dropdownItem:last-of-type{border-bottom:0}.WatchlistSymbolAdder-dropdownItem.WatchlistSymbolAdder-active,.WatchlistSymbolAdder-dropdownItem:hover{background-color:#d5dee2;cursor:pointer}.WatchlistSymbolAdder-dropdownItem .WatchlistSymbolAdder-symbolName{overflow:hidden;text-overflow:ellipsis;width:90px}.WatchlistSymbolAdder-dropdownItem .WatchlistSymbolAdder-companyName{overflow:hidden;text-overflow:ellipsis;width:auto}.WatchlistSymbolAdder-dropdownItem .WatchlistSymbolAdder-countryCode{padding-right:0;width:25px}.WatchlistSymbolAdder-dropdownContent.WatchlistSymbolAdder-hasHighlightedSymbol .WatchlistSymbolAdder-dropdownItem:hover{background-color:none}.WatchlistSymbolAdder-ghostDropdownCloser{bottom:0;left:0;position:fixed;right:0;top:0;z-index:98}.WatchlistSymbolAdder-watchlistPage{background:#fff;border:1px solid #9e9e9e;border-bottom-left-radius:6px;border-bottom-right-radius:6px;border-top-right-radius:6px;display:flex;padding:10px;position:absolute;top:35px;z-index:98}.WatchlistSymbolAdder-watchlistPage .WatchlistSymbolAdder-searchOptions{border-bottom:1px solid #bababa;display:flex;justify-content:space-between;padding-bottom:8px}.WatchlistSymbolAdder-watchlistPage .WatchlistSymbolAdder-form{width:307px}.WatchlistSymbolAdder-watchlistPage .WatchlistSymbolAdder-form .WatchlistSymbolAdder-input{border:none;font-size:14px;font-weight:600;line-height:20px;padding:unset;text-transform:unset;width:85%}.WatchlistSymbolAdder-watchlistPage .WatchlistSymbolAdder-form .WatchlistSymbolAdder-dropdownContent{border:unset;box-shadow:unset;display:flex;padding:unset;padding-top:8px;position:inherit;width:auto;z-index:inherit}@media (max-width:759px){.WatchlistSymbolAdder-watchlistPage .WatchlistSymbolAdder-form{width:240px}}.WatchlistSymbolAdder-embedded .WatchlistSymbolAdder-form{width:100%}.WatchlistSymbolAdder-embedded .WatchlistSymbolAdder-form .WatchlistSymbolAdder-input{border:unset;border-bottom:1px solid #747474;border-radius:unset;color:#747474;font-size:12px;font-weight:600;letter-spacing:.15px;line-height:15px;margin-bottom:5px;text-transform:unset;width:100%}.WatchlistSymbolAdder-embedded .WatchlistSymbolAdder-form .WatchlistSymbolAdder-dropdownContent{border:1px solid #ccd6d8;box-shadow:0 1px 10px #d9d9d9;padding:8px;text-align:center;width:100%}.WatchlistSymbolAdder-embedded .WatchlistSymbolAdder-form .WatchlistSymbolAdder-dropdownContent table tr{line-height:16px}.WatchlistSymbolAdder-embedded .WatchlistSymbolAdder-form .WatchlistSymbolAdder-dropdownContent table tr td{font-size:14px}.EmbeddedWatchlist-container{display:flex;flex-direction:column;font-weight:800;height:100%;position:relative}.EmbeddedWatchlist-container,.EmbeddedWatchlist-container .EmbeddedWatchlist-notify{font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal}.EmbeddedWatchlist-container .EmbeddedWatchlist-notify{color:#747474;font-weight:500;line-height:15px;padding:16px 0;text-align:center}.EmbeddedWatchlist-dropdownAnchor{position:relative}.icon-offsite-arrow{color:#9e9e9e;font-size:10px;font-weight:600}.EmbeddedWatchlist-dropdownButton{align-items:center;display:flex;justify-content:left;margin-bottom:18px;text-align:left;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;z-index:2}.EmbeddedWatchlist-dropdownButton:hover{cursor:pointer}.EmbeddedWatchlist-dropdownButton:hover h2{color:#071d39}.EmbeddedWatchlist-dropdownButton div{align-items:center;border-bottom:1px solid #002f6c;display:flex;height:33px;max-width:200px;min-width:118px}.EmbeddedWatchlist-dropdownButton svg{margin-left:5px;margin-right:5px}.EmbeddedWatchlist-watchlistName{color:#002f6c;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:18px;font-style:normal;font-weight:600;letter-spacing:.33px;line-height:20px;margin:unset;margin-left:5px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:100%}.EmbeddedWatchlist-chevron{border-radius:1px;border-style:solid;border-width:2px 2px 0 0;color:#005594;height:10px;margin-left:10px;margin-right:7px;position:relative;transform:rotate(135deg);width:12px}.EmbeddedWatchlist-dropdown{background:#fff;box-shadow:1px 4px 16px rgba(0,0,0,.16);padding:0 10px;position:absolute;top:-18px;width:200px;z-index:2}.EmbeddedWatchlist-watchlistDropdownLink,.EmbeddedWatchlist-watchlistTools{border-bottom:1px solid #ccc;color:#424242;cursor:pointer;display:block;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-style:normal;font-weight:600;letter-spacing:.05em;line-height:15px;max-height:25px;overflow:hidden;padding-bottom:5px;padding-top:5px;text-align:left;text-overflow:ellipsis;white-space:nowrap;width:100%;word-break:break-word}.EmbeddedWatchlist-watchlistDropdownLink.EmbeddedWatchlist-activeWatchlist,.EmbeddedWatchlist-watchlistTools.EmbeddedWatchlist-activeWatchlist{color:#336aa0}.EmbeddedWatchlist-addIcon{fill:#005594}.EmbeddedWatchlist-watchlistDropdownLink:focus,.EmbeddedWatchlist-watchlistDropdownLink:hover{color:#002f6c}.EmbeddedWatchlist-selectedWatchlist{color:#005594}.EmbeddedWatchlist-watchlistTools a:last-of-type{border-bottom:0}.EmbeddedWatchlist-watchlistTools a:last-of-type:focus,.EmbeddedWatchlist-watchlistTools a:last-of-type:hover{color:#002f6c;text-decoration:none}.EmbeddedWatchlist-watchlistTools{align-items:center;border:none;display:flex;justify-content:space-between}.EmbeddedWatchlist-watchlistTools:focus .EmbeddedWatchlist-watchlistDropdownLink{color:#005594;text-decoration:none}.EmbeddedWatchlist-watchlistTools a{color:#005594}.EmbeddedWatchlist-watchlistTools .EmbeddedWatchlist-watchlistDropdownLink{padding:unset}.EmbeddedWatchlist-watchlistTools .EmbeddedWatchlist-watchlistDropdownLink:hover{color:#171717}.EmbeddedWatchlist-ghostDropdownCloser{bottom:0;left:0;position:fixed;right:0;top:0;z-index:1}.EmbeddedWatchlist-addWatchlistContainer,.EmbeddedWatchlist-errorContainer{align-items:center;background:#f1f1f1;display:flex;flex-direction:column;height:240px;justify-content:center}@media (max-width:1339px){.EmbeddedWatchlist-addWatchlistContainer,.EmbeddedWatchlist-errorContainer{height:269px}}.EmbeddedWatchlist-addWatchlistContainer>p,.EmbeddedWatchlist-errorContainer>p{color:#171717;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:600;letter-spacing:.05em;line-height:17px;margin-bottom:24px;margin-top:0;max-width:197px;text-align:center}.EmbeddedWatchlist-addWatchlistContainer>a,.EmbeddedWatchlist-errorContainer>a{align-items:center;background:#00a857;border-radius:3px;color:#fff;display:flex;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:700;justify-content:center;letter-spacing:1.09091px;line-height:16px;min-height:40px;min-width:191px;text-transform:uppercase}.EmbeddedWatchlist-addWatchlistContainer>a:hover,.EmbeddedWatchlist-errorContainer>a:hover{background-color:#008456;color:#fff;text-decoration:none}.EmbeddedWatchlist-errorContainer>p{margin-bottom:unset;margin-top:unset}.EmbeddedWatchlist-linkContainer{display:flex;font-size:12px;font-style:normal;font-weight:500;justify-content:flex-end;line-height:15px;margin-right:10px;margin-top:13px}.EmbeddedWatchlist-linkContainer a{align-items:center;color:#005594;display:flex}.EmbeddedWatchlist-linkContainer a>div{margin-right:3px;text-decoration:underline}.EmbeddedWatchlist-linkContainer a:hover,.EmbeddedWatchlist-linkContainer a:hover .icon-offsite-arrow{color:#002f6c}.EmbeddedWatchlist-linkContainer .icon-offsite-arrow{color:#336aa0;font-size:9px;font-weight:800}.EmbeddedWatchlist-tableOptions{align-items:baseline;display:flex;flex-direction:row;justify-content:flex-end;margin-bottom:12px}.EmbeddedWatchlist-tableOptions a,.EmbeddedWatchlist-tableOptions button{color:#005594;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-style:normal;font-weight:500;line-height:15px;-webkit-text-decoration-line:underline;text-decoration-line:underline}.EmbeddedWatchlist-tableOptions a:hover,.EmbeddedWatchlist-tableOptions button:hover{color:#002f6c}.EmbeddedWatchlist-tableOptions a:hover svg,.EmbeddedWatchlist-tableOptions button:hover svg{fill:#002f6c}.EmbeddedWatchlist-tableOptions a svg,.EmbeddedWatchlist-tableOptions button svg{margin-left:5px}.EmbeddedWatchlist-tableOptions a:first-child{margin-right:10px}.EmbeddedWatchlist-notificationContainer{right:0;top:86px}.EmbeddedWatchlist-notificationContainer .EmbeddedWatchlist-notification{background-color:#2077b6;border-radius:3px;box-shadow:0 1px 3px 1px rgba(0,0,0,.08);color:#fff;font-weight:700;line-height:16px;padding:10px;width:224px}.EmbeddedWatchlist-notificationContainer .EmbeddedWatchlist-notification.EmbeddedWatchlist-error{background-color:#ce2b2b;width:204px}.ExclusiveContentBucket-exclusiveContentBucket{font-family:Proxima Nova,Helvetica,Arial,sans-serif;margin-bottom:40px;margin-top:40px}@media (min-width:760px){.ExclusiveContentBucket-exclusiveContentBucket{margin-left:-29.16667%;max-width:677px}}@media (min-width:760px) and (min-width:760px){.ExclusiveContentBucket-exclusiveContentBucket{margin-left:-29.16667%}}@media (min-width:760px) and (min-width:1020px){.ExclusiveContentBucket-exclusiveContentBucket{margin-left:-29.16667%}}@media (min-width:760px) and (min-width:1340px){.ExclusiveContentBucket-exclusiveContentBucket{margin-left:-29.16667%}}@media (min-width:1020px){.ExclusiveContentBucket-exclusiveContentBucket{margin-left:-20.83333%;width:630px}}@media (min-width:1020px) and (min-width:760px){.ExclusiveContentBucket-exclusiveContentBucket{margin-left:-20.83333%}}@media (min-width:1020px) and (min-width:1020px){.ExclusiveContentBucket-exclusiveContentBucket{margin-left:-20.83333%}}@media (min-width:1020px) and (min-width:1340px){.ExclusiveContentBucket-exclusiveContentBucket{margin-left:-20.83333%}}@media (min-width:1340px){.ExclusiveContentBucket-exclusiveContentBucket{margin-left:-16.66667%}}@media (min-width:1340px) and (min-width:760px){.ExclusiveContentBucket-exclusiveContentBucket{margin-left:-16.66667%}}@media (min-width:1340px) and (min-width:1020px){.ExclusiveContentBucket-exclusiveContentBucket{margin-left:-16.66667%}}@media (min-width:1340px) and (min-width:1340px){.ExclusiveContentBucket-exclusiveContentBucket{margin-left:-16.66667%}}.ExclusiveContentBucket-exclusiveContentBucket .ExclusiveContentBucket-exclusiveContentHeading{color:#002f6c;font-size:20px;font-weight:900;letter-spacing:.25px;line-height:24px;text-transform:uppercase}.ExclusiveContentBucket-bucketImageContainer{display:flex}.ExclusiveContentBucket-proPill{height:30px}.ExclusiveContentBucket-proPillContainer{position:relative;right:40px}@media (max-width:759px){.ExclusiveContentBucket-proPillContainer{right:40px}}.ExclusiveContentBucket-investingClubPill{height:25px}.ExclusiveContentBucket-investingClubPillContainer{position:relative;right:45px}@media (max-width:759px){.ExclusiveContentBucket-investingClubPillContainer{right:40px}}.ExclusiveContentBucket-smallSpan{background-color:#002f6c;display:block;height:6px;width:88px}.ExclusiveContentBucket-border{background-color:#747474;display:block;height:1px;width:100%}.ExclusiveContentBucket-contentContainer{display:flex;flex-direction:column;justify-content:space-between;overflow-x:scroll}@media (min-width:760px){.ExclusiveContentBucket-contentContainer{overflow-x:unset}}.ExclusiveContentBucket-bucketItem{border-bottom:1px dashed #9e9e9e;display:flex;padding-bottom:10px;padding-top:20px}.ExclusiveContentBucket-bucketItem .ExclusiveContentBucket-title{font-size:18px;font-weight:600;line-height:22px;margin-bottom:16px}.ExclusiveContentBucket-bucketItem .ExclusiveContentBucket-title a{color:#171717;text-decoration:none!important}@media (max-width:759px){.ExclusiveContentBucket-bucketItem .ExclusiveContentBucket-title{font-size:16px;font-weight:500;line-height:20px;margin-bottom:0}}.ExclusiveContentBucket-bucketItem .ExclusiveContentBucket-publishTime{color:#747474;display:inline;font-size:12px;font-weight:600;letter-spacing:1.5px;line-height:16px;margin-top:9px;text-transform:uppercase}.ExclusiveContentBucket-bucketItem .ExclusiveContentBucket-textContainer{display:flex;flex-direction:column;justify-content:space-between;margin-left:-20px}@media (max-width:759px){.ExclusiveContentBucket-bucketItem .ExclusiveContentBucket-textContainer{margin-left:-25px}}.ExclusiveContentBucket-bucketItem .ExclusiveContentBucket-bylineContainer{display:flex;margin-top:10px}@media (max-width:759px){.ExclusiveContentBucket-bucketItem .ExclusiveContentBucket-bylineContainer{margin-top:0}}.ExclusiveContentBucket-bucketItem .ExclusiveContentBucket-icTextContainer{margin-left:-25px}.ExclusiveContentBucket-bucketItem .ExclusiveContentBucket-author{display:none;font-family:Lyon,Helvetica,Arial,sans-serif;font-weight:600;letter-spacing:.5px;line-height:16px;margin-right:10px}@media (min-width:760px){.ExclusiveContentBucket-bucketItem .ExclusiveContentBucket-author{display:inline}}.ExclusiveContentBucket-bucketItem .ExclusiveContentBucket-author a{color:#002f6c;font-size:12px;margin-right:8px;text-decoration:none}.ExclusiveContentBucket-bucketImage{height:95px;-o-object-fit:cover;object-fit:cover;width:190px}@media (max-width:759px){.ExclusiveContentBucket-bucketImage{height:75px;width:100px}}.ExclusiveContentBucket-firstElem,.ExclusiveContentBucket-thirdElem{border-bottom-right-radius:15px;border-top-left-radius:15px}.ExclusiveContentBucket-secondElem{border-bottom-left-radius:15px;border-bottom-right-radius:15px}@media (prefers-color-scheme:dark){.webview .ExclusiveContentBucket-exclusiveContentBucket .ExclusiveContentBucket-exclusiveContentHeading{color:#dce0e4}.webview .ExclusiveContentBucket-smallSpan{background-color:#dce0e4}.webview .ExclusiveContentBucket-border{background-color:#f8f8f8}.webview .ExclusiveContentBucket-bucketItem .ExclusiveContentBucket-textContainer .ExclusiveContentBucket-title a{color:#dce0e4}.webview .ExclusiveContentBucket-bucketItem .ExclusiveContentBucket-textContainer .ExclusiveContentBucket-author a{font-size:12px}}.PlayerLoadingIndicator-loadingContainer{margin-bottom:30px;padding-bottom:56.25%;position:relative;text-align:center}.PlayerLoadingIndicator-loadingOverlay{align-items:center;background-color:#000;display:flex;height:100%;justify-content:center;left:0;position:absolute;top:0;width:100%}.LiveStreamPlayer-container.LiveStreamPlayer-isNotLoaded{display:block;max-width:100%;padding-bottom:57%}.LiveStreamPlayer-languageContainer{align-items:center;display:flex;font-size:14px;margin:13px 0}.LiveStreamPlayer-bold,.LiveStreamPlayer-toggle{margin-right:12px}.LiveStreamPlayer-bold{font-weight:800}.LiveStreamPlayer-toggle{margin-right:12px}.LiveStreamPlayer-toggle:hover{cursor:pointer}.jw-settings-audioTracks{display:none!important}.Timer-progress{stroke:#fcb700;left:50%;position:absolute;top:50%;transform:translate(-50%,-50%) rotate(-90deg)}.Timer-progress circle{stroke-dasharray:302;stroke-dashoffset:302;-webkit-animation:Timer-dash 5s linear;animation:Timer-dash 5s linear}.Timer-sticky .Timer-progress circle{stroke-dasharray:151;stroke-dashoffset:151;-webkit-animation:Timer-sticky-dash 5s linear;animation:Timer-sticky-dash 5s linear}@-webkit-keyframes Timer-dash{0%{stroke-dashoffset:302}to{stroke-dashoffset:0}}@keyframes Timer-dash{0%{stroke-dashoffset:302}to{stroke-dashoffset:0}}@-webkit-keyframes Timer-sticky-dash{0%{stroke-dashoffset:151}to{stroke-dashoffset:0}}@keyframes Timer-sticky-dash{0%{stroke-dashoffset:151}to{stroke-dashoffset:0}}.Timer-buttonWrapper{align-items:center;border:1px solid rgba(207,216,226,.4);color:#fff;display:flex;height:40px;justify-content:center;left:50%;position:absolute;top:50%;transform:translate(-50%,-50%);width:40px}.Timer-buttonWrapper span{display:flex}.Timer-buttonWrapperEnded{border-radius:50%;box-shadow:inset 0 0 2px 0 #cfd8e2,0 0 2px 0 #cfd8e2;font-size:24px;height:66px;width:66px}@media (min-width:360px){.Timer-buttonWrapperEnded{font-size:36px;height:96px;width:96px}}.Timer-sticky .Timer-buttonWrapperEnded{font-size:18px;height:48px;width:48px}.Timer-buttonWrapperEnded:hover{color:#fcb700}.Timer-buttonWrapperEnded .icon-buffett-video{margin-left:5px}.Recommend-sticky .Recommend-buttonWrapperEnded .icon-buffett-video{margin-left:3px}.ScaledTimer-cancel{color:#fff;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:600;left:50%;letter-spacing:.06em;position:absolute;text-transform:uppercase;top:calc(50% + 60px);transform:translateX(-50%)}.ScaledTimer-cancel:hover{color:#fcb700}.Recommend-endCardWrapper{background-color:rgba(0,47,108,.8);background-image:url(https://static-redesign.cnbcfm.com/dist/8e3639eed7df32fad761.jpg);background-size:cover;cursor:pointer;height:0;padding-bottom:56.25%;position:relative;width:100%}.Recommend-endCardWrapper .Recommend-title{color:#fff;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:18px;font-weight:600;line-height:1.1em}.Recommend-replay .Recommend-endCardWrapper .Recommend-title{font-size:16px}@media (min-width:1020px){.Recommend-endCardWrapper .Recommend-title{font-size:18px;letter-spacing:.17px}}@media (min-width:1340px){.Recommend-endCardWrapper .Recommend-title{font-size:24px}}.Recommend-endCardWrapper:before{background:linear-gradient(transparent,#002f6c);bottom:0;content:"";height:100%;left:0;position:absolute;width:100%}@media (min-width:760px){.Buffett-wrapper{max-width:100%}}.Recommend-buttons{display:flex;justify-content:space-between;left:15px;position:absolute;text-align:right;top:15px;width:calc(100% - 30px)}.Recommend-buttons span{color:#fff;font-size:15px}.Recommend-buttons span:hover{color:#fcb700}.Recommend-content{bottom:15px;left:15px;padding-right:55px;position:absolute}.Recommend-eyebrow,.Recommend-eyebrow.Recommend-compact,.Recommend-mobile .Recommend-compact{color:#fcb700;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-weight:600;letter-spacing:2px;line-height:15px;margin-bottom:3px;text-transform:uppercase}.Recommend-replay
.Recommend-eyebrow.Recommend-compact,.Recommend-replay
.Recommend-mobile .Recommend-compact,.Recommend-replay .Recommend-eyebrow{font-size:10px}.Recommend-mobile .Recommend-replay .Recommend-eyebrow,.Recommend-mobile .Recommend-replay .Recommend-title,.Recommend-replay .Recommend-compact{display:none}.Recommend-mobile .Recommend-replay .Recommend-compact{color:#fff;display:initial}.Recommend-mobile .Recommend-replay .Recommend-eyebrow.Recommend-compact{padding-left:4px}.Recommend-endCardWrapper.Recommend-sticky .Recommend-eyebrow{font-size:10px;letter-spacing:.83px}.Recommend-endCardWrapper.Recommend-sticky .Recommend-title{font-size:12px;font-weight:700;letter-spacing:.5px;line-height:1.25}.Recommend-titleDark{color:#fff}.Recommend-slideshowItem .Recommend-titleDark{font-size:16px;letter-spacing:.15px;margin-top:5px}@media (min-width:760px){.Recommend-slideshowItem .Recommend-titleDark{font-size:24px;letter-spacing:.22px}}.PlaceHolder-buffettLongFormWrapper .Buffett-endCardWrapper{padding-bottom:calc(50% + 10px)}@media (min-width:760px){.PlaceHolder-buffettLongFormWrapper .Buffett-endCardWrapper{padding-bottom:calc(50% + 20px)}}@media (min-width:1020px){.PlaceHolder-buffettLongFormWrapper .Buffett-endCardWrapper{padding-bottom:680.625px}}.Recommend-content.Recommend-replay{bottom:auto;top:15px}.Recommend-sticky{padding-bottom:0;position:fixed;top:auto}.Recommend-endCardWrapper .icon-close{display:none}.Recommend-endCardWrapper.Recommend-sticky .icon-close{align-items:center;background:#fcb700;color:#fff;display:flex;font-size:15px;font-weight:900;height:28px;justify-content:center;left:0;position:relative;top:-28px;width:28px}.Recommend-endCardWrapper.Recommend-sticky .Recommend-cancel{display:none}.LiveEventDescription-container{margin-bottom:58px}.LiveEventDescription-container.LiveEventDescription-berkshireHathaway{margin-bottom:42px}.LiveEventDescription-container.LiveEventDescription-berkshireHathaway .group{max-width:unset}.LiveEventDescription-container.LiveEventDescription-berkshireHathaway .group p{font-family:Lyon Text,Helvetica,Arial,sans-serif;font-weight:400}@media (max-width:1019px){.LiveEventDescription-container.LiveEventDescription-berkshireHathaway{margin-bottom:30px}}@media (max-width:759px){.LiveEventDescription-container.LiveEventDescription-berkshireHathaway{margin-bottom:16px}}.LiveEventDescription-tagContainer{display:flex;flex-direction:row;margin:0 0 16px}.LiveEventDescription-title{color:#000;display:block;font-family:Proxima Nova,sans-serif;font-size:14px;font-weight:600;line-height:18px;margin:0;padding-right:18px;white-space:nowrap}@media (max-width:759px){.LiveEventDescription-title{display:none}}.LiveEventDescription-description{display:block}.LiveEventDescription-headline{color:#000;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:22px;font-weight:700;letter-spacing:.03px;line-height:26px;margin-bottom:16px;text-align:left}.LiveEventDescription-details{color:#000;font-family:Lyon Text,Helvetica,Arial,sans-serif;font-size:18px;font-weight:500;letter-spacing:.4444px;line-height:28px}.LiveEventDescription-timestamp{color:#747474;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-weight:600;letter-spacing:1.5px;line-height:16px;margin-top:16px;text-transform:uppercase}.LiveEventDescription-description .group{font-family:Proxima Nova,Helvetica,Arial,sans-serif;margin-left:0}.LiveEventDescription-description .group a{color:#2077b6;text-decoration:underline}.LiveEventDescription-description .group a:hover{color:#fcb700}.LiveEventDescription-description .group ol,.LiveEventDescription-description .group ol li,.LiveEventDescription-description .group ul,.LiveEventDescription-description .group ul li{list-style:revert;margin-left:10px}.MiniQuoteData-container{display:block;height:162px;line-height:22px;padding:0 30px;text-indent:0}@media (min-width:1020px){.MiniQuoteData-container{height:144px;padding:0 8px}}@media (max-width:759px){.MiniQuoteData-container{height:154px;min-width:320px;padding:0 15px}}@media (min-width:760px) and (max-width:1019px){.MiniQuoteData-container{height:274px;min-width:560px}}.MiniQuoteData-section{display:block;padding-bottom:0;padding-left:0;padding-top:0}@media (min-width:760px) and (max-width:1019px){.MiniQuoteData-section{margin-bottom:10px}}.MiniQuoteData-companyName{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.MiniQuoteData-companyName,.MiniQuoteData-last{font-weight:700}.MiniQuoteData-companyName,.MiniQuoteData-link{font-size:14px;margin-top:12px}@media (min-width:760px) and (max-width:1019px){.MiniQuoteData-companyName,.MiniQuoteData-link{font-size:24px;margin-bottom:14px;margin-top:14px}}.MiniQuoteData-last,.MiniQuoteData-quote,.MiniQuoteData-quoteDown,.MiniQuoteData-quoteUp{display:block;margin:4px 0}.MiniQuoteData-header{align-items:center;display:flex}.MiniQuoteData-last{font-size:24px;margin-right:12px}@media (min-width:760px) and (max-width:1019px){.MiniQuoteData-last{font-size:34px}}.MiniQuoteData-link{font-size:11px;font-weight:600}@media (min-width:760px) and (max-width:1019px){.MiniQuoteData-link{font-size:16px}}.MiniQuoteData-link a{color:#005594;text-decoration:underline}.MiniQuoteData-cnbcLink{color:#2077b6;text-decoration:underline}.MiniQuoteData-quote,.MiniQuoteData-quoteDown,.MiniQuoteData-quoteUp{color:#747474;font-family:Proxima Nova,sans-serif;font-size:12px;font-weight:700;line-height:12px}@media (min-width:760px) and (max-width:1019px){.MiniQuoteData-quote,.MiniQuoteData-quoteDown,.MiniQuoteData-quoteUp{font-size:20px}}.MiniQuoteData-quoteUp{color:#008456}.MiniQuoteData-quoteUp:before{content:"▾";display:inline-block;margin-right:4px;transform:rotate(-180deg)}.MiniQuoteData-quoteDown{color:#d0021b}.MiniQuoteData-quoteDown:before{content:"▾";margin-right:4px}.MiniQuoteData-details{grid-column-gap:4%;display:grid;grid-template-columns:1fr 1fr}.MiniQuoteData-container,.MiniQuoteData-withTopBorder{border-bottom:.5px solid #747474}.MiniQuoteData-halfDetail{color:#747474;display:flex;font-size:10px;font-weight:700;justify-content:space-between;margin:0}.MiniQuoteData-halfDetail :nth-child(2n){color:#171717}@media (min-width:760px) and (max-width:1019px){.MiniQuoteData-halfDetail{font-size:18px;line-height:40px;margin:0 0 20px}}.MiniQuoteData-halfDetail:nth-of-type(odd){grid-column:1/2}.MiniQuoteData-halfDetail:nth-of-type(2n){grid-column:2/3}.AddToWatchlistDropdown-container{align-content:center;align-items:center;background-color:#fff;display:flex;flex-direction:column;font-family:Proxima Nova,Helvetica,Arial,sans-serif;justify-content:center;padding:20px 0;position:fixed;z-index:1001}.AddToWatchlistDropdown-container.AddToWatchlistDropdown-withWatchlists{align-items:normal;justify-content:normal}@media (max-width:1019px){.AddToWatchlistDropdown-container{bottom:0;left:0;right:0;top:0;z-index:9999}}@media (min-width:1020px){.AddToWatchlistDropdown-container{border:.5px solid #9e9e9e;border-top:0;box-shadow:0 1px 6px rgba(0,0,0,.25),0 -3px 0 #002f6c;display:block;left:0;padding:0;position:absolute;width:auto}.AddToWatchlistDropdown-container.AddToWatchlistDropdown-mini{left:0;right:auto}}.AddToWatchlistDropdown-container .AddToWatchlistDropdown-signInMessage,.AddToWatchlistDropdown-container .AddToWatchlistDropdown-simpleText{display:block;font-size:12px;line-height:12px;text-align:center}.AddToWatchlistDropdown-container .AddToWatchlistDropdown-signInMessage{color:#000;font-weight:700;margin-bottom:-10px;margin-top:20px}.AddToWatchlistDropdown-container .AddToWatchlistDropdown-simpleText{font-weight:500}.AddToWatchlistDropdown-container .AddToWatchlistDropdown-simpleText:last-child{margin-bottom:20px}.AddToWatchlistDropdown-wrapper{max-height:calc(100vh - 158px);overflow:auto}@media (min-width:1020px){.AddToWatchlistDropdown-wrapper{max-height:118px}}.AddToWatchlistDropdown-watchlistContainer{border:.5px solid #cfd8e2;box-shadow:0 -3px 0 #002f6c;padding:unset;right:-1px;top:27px;width:calc(100% + 2px)}@media (max-width:1019px){.AddToWatchlistDropdown-watchlistContainer{top:0}}.AddToWatchlistDropdown-container.AddToWatchlistDropdown-isFetching{padding-top:0}.AddToWatchlistDropdown-closeButton{display:block;font-size:12px;position:absolute;right:15px;top:20px}@media (min-width:1020px){.AddToWatchlistDropdown-closeButton{display:none}}.AddToWatchlistDropdown-closeButton.AddToWatchlistDropdown-closeButtonForSymbolTag{font-size:15px;top:27px}.AddToWatchlistDropdown-header{color:#9e9e9e;font-size:12px;font-weight:600;letter-spacing:.01em;line-height:12px;margin:20px 30px;text-indent:0}.AddToWatchlistDropdown-header.AddToWatchlistDropdown-headerForWatchlistTag{align-items:center;display:flex;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:11px;height:32px;margin:0 0 0 8px}@media (max-width:1019px){.AddToWatchlistDropdown-header.AddToWatchlistDropdown-headerForWatchlistTag{font-size:18px;height:68px;line-height:normal;margin-left:30px;padding:8px 0}}.AddToWatchlistDropdown-footer{display:block;padding:15px 15px 20px;position:relative;width:100%;z-index:1}.AddToWatchlistDropdown-footer .AddToWatchlistDropdown-footerLink,.AddToWatchlistDropdown-footer .AddToWatchlistDropdown-watchlistTagFooterLink{color:#005594;display:block;font-size:11px;font-weight:600;line-height:13px;padding-left:10px;padding-top:10px;text-indent:0}.AddToWatchlistDropdown-footer .AddToWatchlistDropdown-footerLink.AddToWatchlistDropdown-signIn,.AddToWatchlistDropdown-footer .AddToWatchlistDropdown-watchlistTagFooterLink.AddToWatchlistDropdown-signIn{background-color:#005594;border:none;bottom:0;color:#fff;position:static}.AddToWatchlistDropdown-footer .AddToWatchlistDropdown-watchlistTagFooterLink{line-height:11px;margin-left:10px;padding:unset;text-decoration:underline}.AddToWatchlistDropdown-footer .AddToWatchlistDropdown-watchlistTagFooterLink:first-child{margin-bottom:12px;margin-top:12px}@media (max-width:1019px){.AddToWatchlistDropdown-footer .AddToWatchlistDropdown-watchlistTagFooterLink:first-child{margin-bottom:30px;margin-top:48px}.AddToWatchlistDropdown-footer .AddToWatchlistDropdown-watchlistTagFooterLink{font-size:18px;margin-left:30px}}.AddToWatchlistDropdown-footer .AddToWatchlistDropdown-watchlistTagFooterLink:hover{color:#005594}.AddToWatchlistDropdown-footer .AddToWatchlistDropdown-footerLink{border:1px solid #071d39;color:#071d39;line-height:12px;padding:15px;text-align:center;width:100%}@media (max-width:1019px){.AddToWatchlistDropdown-footer{bottom:20px;position:absolute}}.AddToWatchlistDropdown-watchlistTagFooter{padding:unset;position:relative}.AddToWatchlistDropdown-signInContainer{bottom:0;min-width:240px;position:relative;width:50%}.AddToWatchlistDropdown-createWatchlistContainer{bottom:0;padding-bottom:10px;position:relative}@media (max-width:1019px){.AddToWatchlistDropdown-createWatchlistContainer{text-align:center;top:20px;width:50%}}.AddToWatchlistDropdown-message{color:#e8802a;display:block;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-weight:600;line-height:100%;padding:15px 15px 0;text-align:center}@media (max-width:1019px){.AddToWatchlistDropdown-message{font-size:18px;font-weight:600;line-height:18px}}.AddToWatchlistDropdown-message.AddToWatchlistDropdown-watchListEmptyMsg{color:#171717}.AddToWatchlistDropdown-symbolIssueError{border-bottom:1px solid #bababa;color:#ce2b2b;display:block;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-weight:600;line-height:18px;padding:35px 20px;text-align:center;white-space:normal}.AddToWatchlistDropdown-ghostDropdownCloser{bottom:0;display:none;left:0;position:fixed;right:0;top:0;z-index:98}@media (min-width:1020px){.AddToWatchlistDropdown-ghostDropdownCloser{display:block}}.AddToWatchlistDropdown-watchlistContainerAddTag{left:-1px;min-width:300px;top:27px;width:calc(100% + 2px)}@media (max-width:1019px){.AddToWatchlistDropdown-watchlistContainerAddTag{top:0}}.AddToWatchlistDropdown-watchlistContainerAddTag .AddToWatchlistDropdown-message{font-size:11px;font-weight:700;letter-spacing:-.004em;line-height:13px;padding-left:8px;padding-right:8px;text-align:center}@media (max-width:1019px){.AddToWatchlistDropdown-watchlistContainerAddTag .AddToWatchlistDropdown-message{align-items:center;display:flex;font-size:18px;font-weight:700;letter-spacing:-.002em;line-height:18px;text-align:center}}.AddToWatchlistDropdown-loggedOutAddTag{padding:unset}.AddToWatchlistDropdown-loggedOutAddTag .AddToWatchlistDropdown-signInContainer .AddToWatchlistDropdown-watchlistTagFooterLink{position:relative;right:9px;top:8px}@media (max-width:1019px){.AddToWatchlistDropdown-loggedOutAddTag .AddToWatchlistDropdown-signInContainer .AddToWatchlistDropdown-watchlistTagFooterLink{font-size:14px;margin-left:unset;padding-top:50px;right:0;text-align:center;top:0}}.AddToWatchlistDropdown-loggedOutAddTag .AddToWatchlistDropdown-createWatchlistContainer .AddToWatchlistDropdown-watchlistTagFooterLink{padding-bottom:8px;position:relative}@media (max-width:1019px){.AddToWatchlistDropdown-loggedOutAddTag .AddToWatchlistDropdown-createWatchlistContainer .AddToWatchlistDropdown-watchlistTagFooterLink{font-size:14px;margin-left:unset;padding-top:50px}}.AddToWatchlistDropdown-signInContainerAddTag{display:block;margin:0 10%;padding:8px}@media (min-width:1020px){.AddToWatchlistDropdown-signInContainerAddTag{min-width:unset;width:unset}}.AddToWatchlistDropdown-buttonLink{border:1px solid #005594;color:#005594;display:block;font-size:10px;font-weight:600;line-height:12px;padding:8px;text-align:center;width:100%}.AddToWatchlistDropdown-buttonLink.AddToWatchlistDropdown-signIn{background-color:#005594;border:none;bottom:0;color:#fff;margin-top:20px;position:static}.AddToWatchlistDropdown-buttonLink.AddToWatchlistDropdown-createWatchlist{background-color:#005594;border:none;bottom:0;color:#fff;margin:auto;min-width:120px;padding:15px;position:static;text-decoration:none;width:90%}.AddToWatchlistDropdown-buttonLink.AddToWatchlistDropdown-createWatchlist:hover{color:#fff}@media (max-width:1019px){.AddToWatchlistDropdown-buttonLink.AddToWatchlistDropdown-createWatchlist{min-width:200px}.AddToWatchlistDropdown-buttonLink{font-size:14px;font-weight:700}}.AddToWatchlistDropdown-signInButtonAddTag{align-items:center;font-size:10px;font-weight:700;letter-spacing:.5px;line-height:12px;padding:8px;text-align:center}.AddToWatchlistDropdown-signInButtonAddTag.AddToWatchlistDropdown-signIn{background-color:#005594}.AddToWatchlistDropdown-signInButtonAddTag.AddToWatchlistDropdown-signIn:hover{background-color:#002f6c}.AddToWatchlistDropdown-signInButtonAddTag.AddToWatchlistDropdown-createWatchlist{background-color:#005594;color:#fff;font-family:Proxima Nova,Helvetica,Arial,sans-serif;padding:8px;text-decoration:none}.AddToWatchlistDropdown-signInButtonAddTag.AddToWatchlistDropdown-createWatchlist:hover{background-color:#002f6c;color:#fff}@media (max-width:1019px){.AddToWatchlistDropdown-signInButtonAddTag.AddToWatchlistDropdown-createWatchlist{padding:12px}.AddToWatchlistDropdown-buttonLink{font-size:14px;letter-spacing:1.1px;line-height:16px;margin:auto;max-width:260px;padding:12px}}.AddToWatchlistDropdown-watchlistScrollContainer{display:block;max-height:100px;overflow-y:scroll}.AddToWatchlistDropdown-watchlistScrollContainer:before{bottom:32px;content:"";display:block;height:40px;pointer-events:none;position:absolute;width:100%;z-index:1}@media (max-width:1019px){.AddToWatchlistDropdown-watchlistScrollContainer:before{bottom:100px}}.AddToWatchlistDropdown-watchlistScrollContainer.AddToWatchlistDropdown-fade:before{background:linear-gradient(180deg,hsla(0,0%,100%,0),25%,#fff)}@media (max-width:1019px){.AddToWatchlistDropdown-watchlistScrollContainer{max-height:70%}}.AddToWatchlistDropdownCheckbox-container{border-top:1px solid #bababa;display:block}.AddToWatchlistDropdownCheckbox-container:last-of-type{border-bottom:1px solid #bababa}.AddToWatchlistDropdownCheckbox-watchlist{align-items:center;color:#071d39;display:flex;font-size:14px;font-weight:700;padding:8px 29px;width:100%}.AddToWatchlistDropdownCheckbox-watchlist:first-child{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.AddToWatchlistDropdownCheckbox-watchlist.AddToWatchlistDropdownCheckbox-watchlistForSymbolTag{color:#002f6c;font-size:11px;font-weight:600;height:32px;padding-left:8px}@media (max-width:1019px){.AddToWatchlistDropdownCheckbox-watchlist.AddToWatchlistDropdownCheckbox-watchlistForSymbolTag{font-size:18px;height:50px;padding-left:30px}}.AddToWatchlistDropdownCheckbox-checkbox{border:1px solid #bababa;border-radius:2px;flex-shrink:0;height:14px;margin-right:12px;position:relative;width:14px}.AddToWatchlistDropdownCheckbox-watchlistNameForSymbolTag{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.AddToWatchlistDropdownCheckbox-hasSymbols .AddToWatchlistDropdownCheckbox-checkbox:after{border-color:#071d39;border-style:solid;border-width:0 2px 2px 0;content:"";display:block;height:12px;left:5px;position:absolute;top:-4px;transform:rotate(45deg);width:5px}.AddToWatchlistDropdownCheckbox-hasSymbols .AddToWatchlistDropdownCheckbox-checkboxForSymbolTag{background:#2077b6;border:none}.AddToWatchlistDropdownCheckbox-hasSymbols .AddToWatchlistDropdownCheckbox-checkboxForSymbolTag:after{border-color:#fff;height:7px;left:5px;top:1px;width:3px}.AddToWatchlistDropdownCheckbox-isLoading{cursor:wait}.AddToWatchlistDropdownCheckbox-isLoading>*{opacity:.5}.AddToWatchlistDropdownCheckbox-error{color:#ce2b2b;display:block;font-size:12px;font-weight:600;padding:0 10px 8px 56px}.AddToWatchlistDropdownCheckboxes-notificationContainer{font-size:11px;line-height:18px;padding:2px 6px 0;top:150px}.AddToWatchlistDropdownCheckboxes-notificationContainer .AddToWatchlistDropdownCheckboxes-notification{background-color:#2077b6;border-radius:3px;box-shadow:0 1px 3px 1px rgba(0,0,0,.08);color:#fff;font-weight:700;line-height:16px;padding:10px;white-space:nowrap;width:224px}.AddToWatchlistDropdownCheckboxes-notificationContainer .AddToWatchlistDropdownCheckboxes-notification.AddToWatchlistDropdownCheckboxes-error{background-color:#ce2b2b;width:204px}@media (max-width:1019px){.AddToWatchlistDropdownCheckboxes-notificationContainer{top:165px}}.AddToWatchlistButton-container{display:block;font-family:Proxima Nova,Helvetica,Arial,sans-serif;position:relative}.AddToWatchlistButton-watchlistContainer{display:inline-block}.AddToWatchlistButton-button{align-items:center;border:1px solid #002f6c;box-sizing:border-box;color:#002f6c;display:flex;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-weight:600;justify-content:center;line-height:12px;padding:8px}@media (min-width:1020px){.AddToWatchlistButton-button{padding:14px 15px}}.AddToWatchlistButton-button .AddToWatchlistButton-mobileText{font-size:26px;font-weight:600;line-height:12px}.AddToWatchlistButton-button .AddToWatchlistButton-desktopText{display:none}@media (min-width:1020px){.AddToWatchlistButton-button .AddToWatchlistButton-desktopText{display:initial;margin:0 10px 0 0}}.AddToWatchlistButton-watchlistFromTagItem{border:.5px solid #cfd8e2;border-radius:7px;display:flex;position:relative}.AddToWatchlistButton-watchlistFromTagItem:hover{border:.5px solid #747474}.AddToWatchlistButton-watchlistFromTagItem.AddToWatchlistButton-dropdownVisible{border:.5px solid #cfd8e2}.AddToWatchlistButton-addWatchListFromTag{background-image:url(https://static-redesign.cnbcfm.com/dist/3d3257ad9e8a242b5362.svg);background-repeat:no-repeat;height:12px;width:12px}.AddToWatchlistButton-watchlistButton{align-items:center;color:#002f6c;display:flex;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-weight:600;line-height:12px;padding:8px 8px 8px 4px}.AddToWatchlistButton-watchlistButton.AddToWatchlistButton-dropdownOpen .AddToWatchlistButton-addWatchListFromTag,.AddToWatchlistButton-watchlistButton:focus .AddToWatchlistButton-addWatchListFromTag,.AddToWatchlistButton-watchlistButton:hover .AddToWatchlistButton-addWatchListFromTag{background-image:url(https://static-redesign.cnbcfm.com/dist/8eafdf125d3d82d5a92f.svg)}.ChartPreview-chartPreviewContainer{filter:drop-shadow(20px 20px 10px #00000044);left:50%;padding:20px;position:absolute;top:25px;transform:translateX(-50%);z-index:100}.ChartPreview-chartPreview{background:#fff;border:.5px solid #747474;border-radius:7px;padding:10px;z-index:101}.ChartPreview-chartPreview:before{border:11px solid transparent;border-bottom-color:#747474;bottom:calc(100% - 20px)}.ChartPreview-chartPreview:after,.ChartPreview-chartPreview:before{content:" ";height:0;left:50%;margin-left:-11px;pointer-events:none;position:absolute;width:0}.ChartPreview-chartPreview:after{border:11px solid transparent;border-bottom-color:#fff;bottom:calc(100% - 21px)}.ChartPreview-chartPreviewHeader{display:flex;flex-direction:column;font-family:Proxima Nova,sans-serif;gap:4px;line-height:normal;padding-bottom:10px}.ChartPreview-chartPreviewHeaderRow{display:flex;font-size:12px;font-weight:500;justify-content:space-between}.ChartPreview-chartPreviewHeaderName{color:#000;font-size:13px;font-weight:800}.ChartPreview-chartFrame{border:.5px solid #747474}.ChartPreview-link{text-decoration:none!important;white-space:nowrap}.QuoteItem-item{border:.5px solid #cfd8e2;border-radius:7px;display:flex;margin:0 15px 10px 0;position:relative}.QuoteItem-item:before{content:"";display:none}.QuoteItem-item:hover{border:.5px solid #747474}.QuoteItem-item.QuoteItem-hideHoverBorder{border:.5px solid #cfd8e2}.QuoteItem-link{align-items:center;display:flex;padding:8px;text-decoration:none!important;white-space:nowrap}.QuoteItem-link.QuoteItem-extHours{padding:7px 8px}.QuoteItem-link.QuoteItem-updated{border-color:#002f6c;transition:border-color .25s}.QuoteItem-symbol{color:#171717;font-family:Proxima Nova,sans-serif;font-size:12px;font-weight:700;line-height:12px;margin:0}@media (prefers-color-scheme:dark){.webview .QuoteItem-symbol{color:#fff}}.QuoteItem-quote,.QuoteItem-quoteDown,.QuoteItem-quoteUp{color:#747474;font-family:Proxima Nova,sans-serif;font-size:12px;font-weight:700;line-height:12px;margin:0 0 0 5px}.QuoteItem-quoteUp{color:#008456}.QuoteItem-quoteDown{color:#d0021b}.QuoteItem-afterHoursIcon{display:inline;height:14px;margin-left:8px}.RelatedQuotes-relatedQuotes{display:flex;flex-direction:column;margin:0 0 28px}@media (max-width:1019px){.RelatedQuotes-relatedQuotes{overflow-x:hidden}}@media (min-width:760px){.RelatedQuotes-relatedQuotes{display:grid;grid-template-columns:auto 1fr}}.RelatedQuotes-relatedQuotes .RelatedQuotes-titleAndTime{align-items:center;display:flex;margin:0 15px 10px 0}.RelatedQuotes-relatedQuotes .RelatedQuotes-subtext,.RelatedQuotes-relatedQuotes .RelatedQuotes-text{color:#171717;font-family:Proxima Nova,sans-serif;font-size:12px;font-weight:700;line-height:16px;margin:0;padding:0;white-space:nowrap}.RelatedQuotes-relatedQuotes .RelatedQuotes-subtext{color:#747474;font-size:9px;font-weight:700;margin:0;text-transform:uppercase}.RelatedQuotes-relatedQuotes .RelatedQuotes-list{-webkit-overflow-scrolling:touch;display:flex;flex-wrap:wrap;line-height:0;margin:0;padding:0;text-indent:0;width:100%}@media (min-width:760px){.RelatedQuotes-relatedQuotes .RelatedQuotes-list{flex-wrap:wrap}}@media (max-width:759px){.RelatedQuotes-relatedQuotes .RelatedQuotes-list{overflow-x:scroll}}.RelatedQuotes-relatedQuotes .RelatedQuotes-list.RelatedQuotes-isMobileWebview{flex-wrap:wrap}.RelatedQuotes-relatedQuotes .RelatedQuotes-list:before{content:"";display:none}.RelatedQuotes-relatedQuotes .RelatedQuotes-list::-webkit-scrollbar{display:none}.RelatedQuotes-relatedQuotes .RelatedQuotes-signUpBtnEnabledlist{-webkit-overflow-scrolling:touch;display:flex;flex-wrap:wrap;line-height:0;margin:0;padding:0;text-indent:0;width:70%}@media (min-width:760px){.RelatedQuotes-relatedQuotes .RelatedQuotes-signUpBtnEnabledlist{flex-wrap:wrap}}@media (max-width:759px){.RelatedQuotes-relatedQuotes .RelatedQuotes-signUpBtnEnabledlist{overflow-x:scroll}}.RelatedQuotes-relatedQuotes .RelatedQuotes-signUpBtnEnabledlist.RelatedQuotes-isMobileWebview{flex-wrap:wrap}.RelatedQuotes-relatedQuotes .RelatedQuotes-signUpBtnEnabledlist:before{content:"";display:none}.RelatedQuotes-relatedQuotes .RelatedQuotes-signUpBtnEnabledlist::-webkit-scrollbar{display:none}@media (max-width:759px){.RelatedQuotes-listDropdownVisible{overflow-x:unset!important}}@media (prefers-color-scheme:dark){.RelatedQuotes-relatedQuotes .webview .RelatedQuotes-subtext,.webview .RelatedQuotes-relatedQuotes .RelatedQuotes-subtext,.webview .RelatedQuotes-text{color:#fff}.webview .RelatedQuotes-subtext{color:#9a9fa7!important}}.RelatedQuotes-buttonLink{background:radial-gradient(50% 50% at 50% 50%,#035ac8 0,#071d39 100%);border-radius:2px;color:#fff;height:48px;left:590px;padding:10px;position:absolute;top:15px;width:150px}@media (max-width:1339px){.RelatedQuotes-buttonLink{left:480px}}@media (max-width:1019px){.RelatedQuotes-buttonLink{left:84%;top:0}}@media (max-width:759px){.RelatedQuotes-buttonLink{left:70%}}.RelatedQuotes-twoOrlessTickerStyles{top:-12px}@media screen and (max-width:950px){.RelatedQuotes-buttonLink{left:83%}}@media screen and (max-width:900px){.RelatedQuotes-buttonLink{left:82%}}@media screen and (max-width:850px){.RelatedQuotes-buttonLink{left:81%}}@media screen and (max-width:830px){.RelatedQuotes-buttonLink{left:80%}}@media screen and (max-width:790px){.RelatedQuotes-buttonLink{left:79%}}@media screen and (max-width:700px){.RelatedQuotes-buttonLink{left:78%}}@media screen and (max-width:670px){.RelatedQuotes-buttonLink{left:77%}}@media screen and (max-width:645px){.RelatedQuotes-buttonLink{left:76%}}@media screen and (max-width:585px){.RelatedQuotes-buttonLink{left:73%}}@media screen and (max-width:550px){.RelatedQuotes-buttonLink{left:71%}}@media screen and (max-width:530px){.RelatedQuotes-buttonLink{left:70%}}@media screen and (max-width:500px){.RelatedQuotes-buttonLink{left:68%}}@media screen and (max-width:450px){.RelatedQuotes-buttonLink{left:64%}}@media screen and (max-width:420px){.RelatedQuotes-buttonLink{left:62%}}@media screen and (max-width:400px){.RelatedQuotes-buttonLink{left:60%}}@media screen and (max-width:380px){.RelatedQuotes-buttonLink{left:56%}}.RelatedQuotes-buttonLink .RelatedQuotes-btnSmallDes{display:block;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:11px;font-weight:400}.RelatedQuotes-buttonLink .RelatedQuotes-buttonText{display:block;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:11px;font-weight:700}.RelatedQuotes-buttonLink:hover{color:#ffe965}@media screen and (max-width:360px){.RelatedQuotes-isSignupBtnEna{margin-top:50px!important}.RelatedQuotes-buttonLink{align-items:center;display:inline-flex;gap:5px;justify-content:space-around;left:0;margin-bottom:20px;position:absolute;text-align:center;top:-15px!important;width:100%}.RelatedQuotes-buttonLink .RelatedQuotes-btnSmallDes{font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:11px;font-weight:400}.RelatedQuotes-buttonLink .RelatedQuotes-buttonText{font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:12px;font-weight:800}.RelatedQuotes-buttonLink:hover{color:#ffe965}}@media screen and (max-width:759px){.RelatedQuotes-buttonLink{top:40px}.RelatedQuotes-twoOrlessTickerStyles{top:-12px}}.LiveEventSlate-container .LiveEventSlate-liveEventSlate{background-repeat:no-repeat;background-size:contain;display:block;margin-bottom:30px;max-width:100%;padding-bottom:57%}.LiveEventSlate-container .LiveEventSlate-error{background-image:url(https://static-redesign.cnbcfm.com/dist/54f3d8c60727fdd092ad.png)}.LiveEventSlate-container .LiveEventSlate-pre.LiveEventSlate-investingClub{background-image:url(https://static-redesign.cnbcfm.com/dist/261db0afca7926c9c4d5.png)}@media (max-width:759px){.LiveEventSlate-container .LiveEventSlate-pre.LiveEventSlate-investingClub{background-image:url(https://static-redesign.cnbcfm.com/dist/635637529f397c6b0b99.png)}}.LiveEventSlate-container .LiveEventSlate-pre.LiveEventSlate-morningMeeting{background-image:url(https://static-redesign.cnbcfm.com/dist/c4b2ab67f20d4702a761.png)}@media (max-width:759px){.LiveEventSlate-container .LiveEventSlate-pre.LiveEventSlate-morningMeeting{height:300px}}@media (min-width:760px){.LiveEventSlate-container .LiveEventSlate-pre.LiveEventSlate-morningMeeting{background-image:url(https://static-redesign.cnbcfm.com/dist/05644c6301c29d5f98e1.png)}}@media (min-width:1020px){.LiveEventSlate-container .LiveEventSlate-pre.LiveEventSlate-morningMeeting{background-image:url(https://static-redesign.cnbcfm.com/dist/0907dbcaa9e6b98f1590.png)}}@media (min-width:1340px){.LiveEventSlate-container .LiveEventSlate-pre.LiveEventSlate-morningMeeting{background-image:url(https://static-redesign.cnbcfm.com/dist/4c02522e1899983c236e.png)}}.LiveEventSlate-container .LiveEventSlate-pre.LiveEventSlate-pro{background-image:url(https://static-redesign.cnbcfm.com/dist/603bc0c9eee2fffcf418.png)}.LiveEventSlate-container .LiveEventSlate-pre.LiveEventSlate-berkshireHathawayMeeting,.LiveEventSlate-container .LiveEventSlate-pre.LiveEventSlate-free{background-image:url(https://static-redesign.cnbcfm.com/dist/aa7e1174aeed08b7bd0f.png)}.LiveEventSlate-container .LiveEventSlate-post.LiveEventSlate-berkshireHathawayMeeting{background-image:url(https://static-redesign.cnbcfm.com/dist/5c142c155da6b42bf23b.png)}@media (max-width:759px){.LiveEventSlate-container .LiveEventSlate-post.LiveEventSlate-berkshireHathawayMeeting{background-image:url(https://static-redesign.cnbcfm.com/dist/acff13a99fc3cb2c8406.png)}}.LiveEventSlate-container .LiveEventSlate-post.LiveEventSlate-investingClub{background-image:url(https://static-redesign.cnbcfm.com/dist/9b60e1df4c50583b02fa.png)}@media (max-width:759px){.LiveEventSlate-container .LiveEventSlate-post.LiveEventSlate-investingClub{background-image:url(https://static-redesign.cnbcfm.com/dist/00e4560338770d5246e7.png)}}.LiveEventSlate-container .LiveEventSlate-post.LiveEventSlate-morningMeeting{background-image:url(https://static-redesign.cnbcfm.com/dist/189c780e2af6e2b69066.png)}@media (max-width:759px){.LiveEventSlate-container .LiveEventSlate-post.LiveEventSlate-morningMeeting{height:300px}}@media (min-width:760px){.LiveEventSlate-container .LiveEventSlate-post.LiveEventSlate-morningMeeting{background-image:url(https://static-redesign.cnbcfm.com/dist/b055b5b9f509671e0d77.png)}}@media (min-width:1020px){.LiveEventSlate-container .LiveEventSlate-post.LiveEventSlate-morningMeeting{background-image:url(https://static-redesign.cnbcfm.com/dist/00daf039d9d82c7296e8.png)}}@media (min-width:1340px){.LiveEventSlate-container .LiveEventSlate-post.LiveEventSlate-morningMeeting{background-image:url(https://static-redesign.cnbcfm.com/dist/b6108ecbb43ceecfdd4b.png)}}.LiveEventSlate-container .LiveEventSlate-post.LiveEventSlate-pro{background-image:url(https://static-redesign.cnbcfm.com/dist/351cbae0bbe7fd326046.png)}.LiveEventSlate-container .LiveEventSlate-post.LiveEventSlate-free{background-image:url(https://static-redesign.cnbcfm.com/dist/fe3c67caf861a2022cf7.png)}.LiveEventPlayerWrapper-liveStreamWrapper{margin-bottom:30px}.LiveEventPlayerWrapper-liveStreamWrapper .jw-slider-time{display:none}.StandaloneLiveEventPlayerWrapper-standaloneContainer{font-family:Proxima Nova,Helvetica,Arial,sans-serif;margin-top:20px}.StandaloneLiveEventPlayerWrapper-eventState{font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:20px;font-weight:600}.StandaloneLiveEventPlayerWrapper-webview{display:flex;justify-content:center;padding:15px 0}@media (max-width:359px){.StandaloneLiveEventPlayerWrapper-webview img{width:100%}}.QuoteInBody-quoteNameContainer{white-space:nowrap}.QuoteInBody-inlineButton{margin-right:-6px;position:relative}.QuoteInBody-dropdownInBody{border-radius:unset;color:#000;left:0;top:22px;width:200px}@media (max-width:1019px){.QuoteInBody-dropdownInBody{top:0;width:100%}}.CollapsibleContainer-collapsibleContainer,.CollapsibleContainer-collapsibleContent{position:relative}.CollapsibleContainer-collapsibleContent{height:auto;overflow:hidden;transition:max-height .2s ease}.CollapsibleContainer-collapsed .CollapsibleContainer-collapsibleContent{max-height:300px}@media (min-width:760px){.CollapsibleContainer-collapsed .CollapsibleContainer-collapsibleContent{max-height:140px}}.CollapsibleContainer-collapsed .CollapsibleContainer-fadingGradient{background-image:linear-gradient(180deg,hsla(0,0%,100%,0),#fff 49.23%);background-image:linear-gradient(180deg,hsla(0,0%,100%,0),hsla(0,0%,100%,.9));content:"";height:80px;height:300px;left:0;position:absolute;right:0;top:calc(100% - 80px);top:0}@media (min-width:760px){.CollapsibleContainer-collapsed .CollapsibleContainer-fadingGradient{max-height:140px}}.CollapsibleContainer-expanded .CollapsibleContainer-collapsibleContent{max-height:4000px}@media (min-width:1020px){.CollapsibleContainer-expanded .CollapsibleContainer-collapsibleContent{max-height:3000px}}.CollapsibleContainer-toggleContainer{align-items:center;border-top:1px solid #d9d9d9;display:flex;height:42px;justify-content:center;position:relative;text-align:center}.CollapsibleContainer-toggle{align-items:center;color:#0477c9;cursor:pointer;display:flex;font-family:Lato,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:900;line-height:20px;transition:all .2s ease}.CollapsibleContainer-webview-normal .CollapsibleContainer-toggle{font-size:14px}.CollapsibleContainer-webview-large .CollapsibleContainer-toggle{font-size:17.5px;line-height:normal}.CollapsibleContainer-webview-larger .CollapsibleContainer-toggle{font-size:21px;line-height:normal}.CollapsibleContainer-webview-xlarge .CollapsibleContainer-toggle{font-size:24.5px;line-height:normal}.CollapsibleContainer-webview-xxlarge .CollapsibleContainer-toggle{font-size:28px;line-height:normal}.CollapsibleContainer-webview-xxxlarge .CollapsibleContainer-toggle{font-size:31.5px;line-height:normal}.CollapsibleContainer-toggle span{display:inline-block;line-height:1}.CollapsibleContainer-toggle:active,.CollapsibleContainer-toggle:focus,.CollapsibleContainer-toggle:hover,.CollapsibleContainer-toggle:link{color:#0477c9}.CollapsibleContainer-toggle .icon-arrow-down-readmore:before{font-size:13px;font-weight:400;margin-left:8px}.CollapsibleContainer-expanded .icon-arrow-down-readmore:before{display:inline-block;transform:rotate(180deg)}.LiveBlogTimestamp-liveBlogTimeStamp>div,.LiveBlogTimestamp-time,.LiveBlogTimestamp-timeHidden{color:#747474;font-size:10px;font-weight:600;letter-spacing:1.2px;margin-bottom:10px;margin-right:4px;text-transform:uppercase;white-space:normal}.LiveBlogTimestamp-liveBlogTimeStamp>div time,.LiveBlogTimestamp-time time,.LiveBlogTimestamp-timeHidden time{white-space:nowrap}@media (min-width:760px){.LiveBlogTimestamp-liveBlogTimeStamp>div,.LiveBlogTimestamp-time,.LiveBlogTimestamp-timeHidden{font-size:12px;margin-bottom:16px}}.LiveBlogTimestamp-timeHidden{opacity:0}.LiveBlogTimestamp-liveBlogTimeStamp{align-items:center;display:flex;margin-top:0}.LiveBlogTimestamp-datetimeDivider:before{content:"•";display:inline-block;padding:0 3px}.OneTrustLoadingPlaceholder-container{align-items:center;background:#fff;display:flex;justify-content:center}.OneTrustBlockedPlaceholder-container{align-items:center;background-color:#d1d9dc;background-image:url(https://static-redesign.cnbcfm.com/dist/1eaf28c48f6e504fb498.svg);background-repeat:no-repeat;background-size:auto 100%;display:flex;justify-content:center}.OneTrustBlockedPlaceholder-innerCopy{font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:18px;font-weight:800;padding:20px;text-align:center}@media (prefers-color-scheme:dark){.OneTrustBlockedPlaceholder-innerCopy{color:#111}}.OneTrustBlockedPlaceholder-link{color:#1876b8;cursor:pointer}a.OneTrustBlockedPlaceholder-onetrustSettingsDeepLink{text-decoration:none!important}.withOneTrustPlaceholder-placeholderDimensions{width:100%}@media (max-width:759px){.withOneTrustPlaceholder-placeholderDimensions{height:196px}}@media (min-width:760px){.withOneTrustPlaceholder-placeholderDimensions{height:235px}}.ArticleGate-proGate{display:flex;justify-content:flex-end;margin-bottom:50px;margin-left:0;padding-bottom:50px;position:relative;width:100%}.ArticleGate-proGate:before{background:linear-gradient(180deg,hsla(0,0%,100%,0),#fff);bottom:calc(100% + 30px);content:"";height:160px;position:absolute;width:100%}.ArticleGate-proGate .ArticleGate-spacer{overflow:hidden;width:100%}@media (min-width:760px){.ArticleGate-proGate{margin-bottom:40px;padding-bottom:0}.ArticleGate-proGate:before{height:135px}.ArticleGate-proGate .ArticleGate-spacer{margin-left:16.66667%}}@media (min-width:1020px){.ArticleGate-proGate{margin-bottom:50px}.ArticleGate-proGate:before{height:105px}.ArticleGate-proGate .ArticleGate-spacer{margin-left:calc(14.28571% + 4.28571px)}}.ArticleGate-pianoGateWebview{position:relative}.ArticleGate-pianoGateWebview:before{background:linear-gradient(180deg,hsla(0,0%,100%,0),#fff);bottom:calc(100% + 30px);content:"";height:160px;position:absolute;width:100%}@media (prefers-color-scheme:dark){.ArticleGate-pianoGateWebview:before{background:linear-gradient(180deg,transparent,#000)}}.ArticleGate-dynamicPaywall{display:flex;margin-bottom:50px}.ArticleGate-dynamicPaywall:before{background:none}.ArticleGate-dynamicPaywall .ArticleGate-spacer{overflow:hidden;width:100%}@media (min-width:760px){.ArticleGate-dynamicPaywall{margin-bottom:40px;padding-bottom:0}.ArticleGate-dynamicPaywall .ArticleGate-spacer{margin-left:16.66667%}}@media (min-width:1020px){.ArticleGate-dynamicPaywall{margin-bottom:50px}.ArticleGate-dynamicPaywall .ArticleGate-spacer{margin-left:calc(14.28571% + 4.28571px)}}.UpdatePill-updatePill{align-items:center;background:#ce2b2b;border-radius:14px;color:#fff;cursor:pointer;display:flex;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:700;height:28px;justify-content:center;line-height:17px;margin-right:7.78px;pointer-events:auto;-webkit-user-select:none;-moz-user-select:none;user-select:none;width:120px}.UpdatePill-displayText{margin-left:7.78px}.BackToTopPill-pillContainer{align-items:center;background:#fff;border:2px solid #27313c;border-radius:60px;color:#27313c;cursor:pointer;display:flex;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:700;height:28px;justify-content:center;line-height:17px;pointer-events:auto;-webkit-user-select:none;-moz-user-select:none;user-select:none;width:120px}.BackToTopPill-pillContainer svg{fill:#27313c}.BackToTopPill-backPillStickyPosition{align-items:center;display:block;display:flex;justify-content:center;pointer-events:none;position:sticky;right:0;top:0;z-index:95}.BackToTopPill-backPillStickyPosition .BackToTopPill-backPillVerticalOffset{pointer-events:none;position:relative;top:10px}.BackToTopPill-displayText{margin-left:5.78px;margin-top:-1px;padding-right:2px}.LiveCommentaryFeed-scrollContainer{height:100%;overflow-x:hidden;overflow-y:auto;position:relative;width:100%}.LiveCommentaryFeed-scrollContainer .LiveCommentaryFeed-fade:before{box-shadow:0 0 93px 93px #fff;content:"";display:block;height:.1px;pointer-events:none;position:sticky;top:100%;width:100%;z-index:1}@media (min-width:760px){.LiveCommentaryFeed-scrollContainer .LiveCommentaryFeed-fade:before{box-shadow:0 0 76px 76px #fff}}@media (min-width:1020px){.LiveCommentaryFeed-scrollContainer .LiveCommentaryFeed-fade:before{box-shadow:0 0 93px 93px #fff}}.LiveCommentaryFeed-slate,.LiveCommentaryFeed-slate a{color:#171717;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:18px;font-style:normal;font-weight:600;line-height:24px}.LiveCommentaryFeed-slate{align-items:center;background-color:#f8f8f8;border:1px solid #d9d9d9;display:flex;flex-direction:column;height:100%;justify-content:center;padding:18px;text-align:center}.LiveCommentaryFeed-slate a{text-decoration:underline}.LiveCommentaryFeed-slate a:hover{color:#00a857}.LiveCommentaryFeed-slateContainer{border-top:3px solid #9e9e9e;height:120px}.LiveCommentaryFeed-slateContainer p{font-size:12px;line-height:20px;margin:0}.LiveCommentaryFeed-slateContainer p a{font-size:12px}.LiveCommentaryFeed-slateContainer p:first-child{font-size:14px}.LiveCommentaryFeed-slateContainer p:not(:first-child):not(:last-child){margin-top:8px}.LiveCommentaryFeed-slateContainer p:last-child{line-height:22px;margin-top:8px}@media (min-width:760px){.LiveCommentaryFeed-slateContainer p{font-size:16px;line-height:36px}.LiveCommentaryFeed-slateContainer p a{font-size:16px}.LiveCommentaryFeed-slateContainer p:first-child{font-size:18px;line-height:24px}.LiveCommentaryFeed-slateContainer p:not(:first-child):not(:last-child){margin-top:unset}.LiveCommentaryFeed-slateContainer p:last-child{line-height:28px}}@media (min-width:1020px){.LiveCommentaryFeed-slateContainer{margin-top:unset}.LiveCommentaryFeed-slateContainer p:not(:first-child):not(:last-child){line-height:58px}}@media (min-width:760px){.LiveCommentaryFeed-slateContainer.LiveCommentaryFeed-offline{height:180px}}@media (min-width:1020px){.LiveCommentaryFeed-slateContainer.LiveCommentaryFeed-offline{height:302px}}@media (min-width:1340px){.LiveCommentaryFeed-slateContainer.LiveCommentaryFeed-offline{height:425px}}.LiveCommentaryFeed-slateContainer.LiveCommentaryFeed-coverageEnded{height:0;overflow:visible;position:sticky;top:0;transform:translateY(-62px);z-index:90}.LiveCommentaryFeed-slateContainer.LiveCommentaryFeed-coverageEnded .LiveCommentaryFeed-slate{height:62px}@media (min-width:760px){.LiveCommentaryFeed-slateContainer.LiveCommentaryFeed-coverageEnded{transform:translateY(-120px)}.LiveCommentaryFeed-slateContainer.LiveCommentaryFeed-coverageEnded .LiveCommentaryFeed-slate{height:120px}}.LiveCommentaryFeed-slateContainer.LiveCommentaryFeed-shadow .LiveCommentaryFeed-slate{box-shadow:0 6px 4px -4px #c4c4c4}.LiveCommentaryFeed-coverageEndedFeedWrapper{padding-top:62px}@media (min-width:760px){.LiveCommentaryFeed-coverageEndedFeedWrapper{padding-top:120px}}.LiveCommentaryHeader-liveUpdatesPill{height:28px;margin-bottom:12px;text-align:center;width:142px}.LiveCommentaryHeader-liveUpdatesPill .LiveCommentaryHeader-liveUpdatesPillContent{background:#002f6c;color:#fff;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-weight:600;height:100%;line-height:28px;margin:0;width:100%}.LiveCommentaryHeader-timestampContainer{align-items:baseline;height:18px;width:288px}@media (max-width:759px){.LiveCommentaryHeader-timestampContainer{flex-direction:column;margin-bottom:16px}}.LiveCommentaryHeader-liveCommentaryHeader{position:relative}.LiveCommentaryHeader-wrapper{flex-grow:0;flex-shrink:0;max-width:calc(100% - 30px);max-width:100%;min-width:calc(100% - 30px);padding-left:2px;position:relative}@media (min-width:760px){.LiveCommentaryHeader-wrapper{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.LiveCommentaryHeader-wrapper{max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media screen and (min-width:1020px) and (-ms-high-contrast:none){.LiveCommentaryHeader-wrapper{max-width:100%;min-width:100%}}@media (min-width:1340px){.LiveCommentaryHeader-wrapper{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:760px){.LiveCommentaryHeader-wrapper{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.LiveCommentaryHeader-wrapper{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.LiveCommentaryHeader-wrapper{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.LiveCommentaryHeader-wrapper{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.LiveCommentaryHeader-wrapper{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.LiveCommentaryHeader-wrapper{flex-grow:0;flex-shrink:0;max-width:calc(88.88889% - 3.33333px);min-width:calc(88.88889% - 3.33333px)}}@media (min-width:1340px){.LiveCommentaryHeader-wrapper{flex-grow:0;flex-shrink:0;max-width:calc(72.72727% + 21.81818px);min-width:calc(72.72727% + 21.81818px);padding-right:70px}}.LiveCommentaryHeader-headerContentContainer{margin:0 auto;position:relative}@media (min-width:760px){.LiveCommentaryHeader-headerContentContainer{padding:0}}@media (min-width:1020px){.LiveCommentaryHeader-headerContentContainer{max-width:960px}}@media (min-width:1340px){.LiveCommentaryHeader-headerContentContainer{max-width:1290px}}.LiveCommentaryHeader-liveBlogTimeStamp>div,.LiveCommentaryHeader-time,.LiveCommentaryHeader-timeHidden{color:#747474;font-size:11px;font-weight:600;letter-spacing:1.2px;margin-bottom:4px;margin-right:4px;text-transform:uppercase}.LiveCommentaryHeader-liveBlogTimeStamp>div time,.LiveCommentaryHeader-time time,.LiveCommentaryHeader-timeHidden time{white-space:nowrap}@media (min-width:760px){.LiveCommentaryHeader-liveBlogTimeStamp>div,.LiveCommentaryHeader-time,.LiveCommentaryHeader-timeHidden{font-size:12px;margin-bottom:6px}}.LiveCommentaryHeader-timeHidden{opacity:0}.LiveCommentaryHeader-datetimeDivider:before{content:"•";display:inline-block;padding:0 3px}.LiveCommentaryHeader-title{color:#171717;font-family:Proxima Nova,sans-serif;font-size:16px;font-style:normal;font-weight:700;letter-spacing:0;line-height:20px;margin:0 0 1px}@media (min-width:760px){.LiveCommentaryHeader-title{font-size:28px;line-height:32px;margin:0 0 6px}}@media (max-width:759px){.LiveCommentaryHeader-about.LiveCommentaryHeader-proUserAboutSection{display:none}}.LiveCommentaryHeader-about>div{color:#747474;font-family:Lyon,serif;font-size:18px;font-style:italic;font-weight:400;line-height:26px;margin-left:0;max-width:unset}@media (max-width:759px){.LiveCommentaryHeader-about>div{font-size:14px;line-height:20px}}.LiveCommentaryHeader-about>div p{margin-bottom:10px;margin-top:10px}.LiveCommentaryHeader-about>div p a{color:#747474;text-decoration:underline}.LiveCommentaryHeader-about>div p a:hover{color:#00a857}.PlayerSlate-slateOverlay{display:block;height:auto;top:0;width:100%;z-index:2}.PlayerSlate-clickable{cursor:pointer}.ProLivePlayer-container{background-color:#171717;position:absolute;top:0;width:100%}.ProLivePlayer-nofs .jw-icon-fullscreen{display:none!important}#jw-cnbc-live-stream-player .jw-text-live:before{color:#ce2b2b}#jw-cnbc-live-stream-player .jw-text-live.jw-dvr-live:before{color:#fff}#jw-cnbc-live-stream-player .jw-text-live.jw-dvr-live{color:#747474}#jw-cnbc-live-stream-player .jw-slider-time .jw-progress{background:#f2f2f2}.LiveCommentaryPlayer-container{background-color:#171717;left:0;padding-top:56.25%;position:relative;top:0;width:100%}@media (max-width:1019px){.LiveCommentaryPlayer-container{margin-bottom:16px}}.LiveCommentaryPopularQuotes-tableContainer{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='100%25' height='100%25' fill='none' stroke='%239E9E9EFF' stroke-dasharray='1, 2' stroke-linecap='square'/%3E%3C/svg%3E");display:flex;flex-direction:column;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:800;height:100%;padding:30px 18px}.LiveCommentaryPopularQuotes-title{border-top:3px solid #cfd8e2;color:#002f6c;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-style:bold;font-weight:700;line-height:20px;max-width:365px;padding:4px 0 20px}.ProLiveCommentary-outerContainer{align-items:center;display:flex;flex-direction:column;margin:0 auto;max-width:1290px;min-height:900px;padding:20px;width:100%}@media (min-width:760px){.ProLiveCommentary-outerContainer{padding:40px 20px}}@media (min-width:1020px){.ProLiveCommentary-outerContainer{padding:40px 0}}.ProLiveCommentary-nonProMainContainer,.ProLiveCommentary-proMainContainer{display:flex;flex-direction:column;width:100%}@media (min-width:1020px){.ProLiveCommentary-nonProMainContainer,.ProLiveCommentary-proMainContainer{flex-direction:row;margin:0 auto;max-width:960px}}@media (min-width:1340px){.ProLiveCommentary-nonProMainContainer,.ProLiveCommentary-proMainContainer{max-width:1290px}}.ProLiveCommentary-nonProMainContainer{flex-direction:column}.ProLiveCommentary-leftColumn{padding:0;width:100%}@media (min-width:1020px){.ProLiveCommentary-leftColumn{width:555px}}@media (min-width:1340px){.ProLiveCommentary-leftColumn{width:770px}}.ProLiveCommentary-rightColumn{height:700px;margin:0 auto;padding:0;width:100%}@media (min-width:1020px){.ProLiveCommentary-rightColumn{height:651px;margin:0 0 20px 26px;width:410px}}@media (min-width:1340px){.ProLiveCommentary-rightColumn{height:794px;width:520px}}.ProLiveCommentary-title{color:#171717;font-family:Proxima Nova,sans-serif;font-size:16px;font-style:normal;font-weight:700;letter-spacing:0;line-height:20px;margin:16px 0 12px}@media (min-width:760px){.ProLiveCommentary-title{font-size:28px;line-height:32px;margin:24px 0 12px}}.ProLiveCommentary-about>div{color:#747474;font-family:Lyon,serif;font-size:18px;font-style:italic;font-weight:400;line-height:26px;margin-left:0;max-width:unset}@media (max-width:759px){.ProLiveCommentary-about>div{font-size:14px;line-height:20px}}.ProLiveCommentary-about>div p{margin-bottom:10px;margin-top:10px}.ProLiveCommentary-about>div p a{color:#747474;text-decoration:underline}.ProLiveCommentary-about>div p a:hover{color:#00a857}@media (max-width:759px){.ProLiveCommentary-proMainContainer .ProLiveCommentary-about{display:none}}.ProLiveCommentary-headerAndMainContainer{display:flex;flex-direction:column;width:100%}.ProLiveCommentary-nonProTextContainer{width:100%}@media (min-width:1020px){.ProLiveCommentary-nonProTextContainer{max-width:648px}}@media (min-width:1340px){.ProLiveCommentary-nonProTextContainer{max-width:739px}}.ProLiveCommentary-nonProTextContainer .ProLiveCommentary-title{margin-top:0}@media (min-width:760px){.ProLiveCommentary-nonProTextContainer .ProLiveCommentary-title{margin-top:2px}}.ProLiveCommentary-nonProTextContainer .ProLiveCommentary-about{margin-bottom:-6px}@media (min-width:760px){.ProLiveCommentary-nonProTextContainer .ProLiveCommentary-about{margin-bottom:-2px}}.ProLiveCommentary-tableTitle{border-top:3px solid #cfd8e2;color:#002f6c;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;font-style:bold;font-weight:700;line-height:20px;padding:4px 0 20px}.ProLiveCommentary-symbolTablesContainer{display:flex;justify-content:space-between;margin-top:33px}.ProLiveCommentary-symbolTablesContainer>div:first-child{margin-right:9px}.ProLiveCommentary-symbolTablesContainer>div{flex-basis:0;flex-grow:1}@media (max-width:1019px){.ProLiveCommentary-symbolTablesContainer{display:none}}.ProLiveCommentary-symbolTablesContainer .ProLiveCommentary-popularQuotesContainer{margin-bottom:11px}@media (max-width:1339px){.ProLiveCommentary-symbolTablesContainer .ProLiveCommentary-popularQuotesContainer{height:269px}}.ProLiveCommentary-symbolTablesContainer .ProLiveCommentary-watchlistContainer{margin-bottom:11px}.ProLiveCommentary-symbolTablesContainer .ProLiveCommentary-popularQuotesContainer>div,.ProLiveCommentary-symbolTablesContainer .ProLiveCommentary-watchlistContainer>div{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='100%25' height='100%25' fill='none' stroke='%239E9E9EFF' stroke-dasharray='1, 2' stroke-linecap='square'/%3E%3C/svg%3E");padding:14px 18px}@font-face{font-display:swap;font-family:Avenir;font-style:italic;font-weight:500;src:local("~assets/fonts/Avenir/AvenirNext-MediumItalic.eot"),url(https://static-redesign.cnbcfm.com/dist/AvenirNext-MediumItalic.eot) format("eot")}@font-face{font-display:swap;font-family:Avenir;font-style:italic;font-weight:500;src:local("~assets/fonts/Avenir/AvenirNext-MediumItalic.woff"),url(https://static-redesign.cnbcfm.com/dist/AvenirNext-MediumItalic.woff) format("woff")}@font-face{font-display:swap;font-family:Avenir;font-style:italic;font-weight:500;src:local("~assets/fonts/Avenir/AvenirNext-MediumItalic.woff2"),url(https://static-redesign.cnbcfm.com/dist/AvenirNext-MediumItalic.woff2) format("woff2")}@font-face{font-display:swap;font-family:Avenir;font-style:italic;font-weight:600;src:local("~assets/fonts/Avenir/AvenirNext-DemiBoldItalic.eot"),url(https://static-redesign.cnbcfm.com/dist/AvenirNext-DemiBoldItalic.eot) format("eot")}@font-face{font-display:swap;font-family:Avenir;font-style:italic;font-weight:600;src:local("~assets/fonts/Avenir/AvenirNext-DemiBoldItalic.woff"),url(https://static-redesign.cnbcfm.com/dist/AvenirNext-DemiBoldItalic.woff) format("woff")}@font-face{font-display:swap;font-family:Avenir;font-style:italic;font-weight:600;src:local("~assets/fonts/Avenir/AvenirNext-DemiBoldItalic.woff2"),url(https://static-redesign.cnbcfm.com/dist/AvenirNext-DemiBoldItalic.woff2) format("woff2")}@font-face{font-display:swap;font-family:Avenir;font-style:italic;font-weight:700;src:local("~assets/fonts/Avenir/AvenirNext-BoldItalic.eot"),url(https://static-redesign.cnbcfm.com/dist/AvenirNext-BoldItalic.eot) format("eot")}@font-face{font-display:swap;font-family:Avenir;font-style:italic;font-weight:700;src:local("~assets/fonts/Avenir/AvenirNext-BoldItalic.woff"),url(https://static-redesign.cnbcfm.com/dist/AvenirNext-BoldItalic.woff) format("woff")}@font-face{font-display:swap;font-family:Avenir;font-style:italic;font-weight:700;src:local("~assets/fonts/Avenir/AvenirNext-BoldItalic.woff2"),url(https://static-redesign.cnbcfm.com/dist/AvenirNext-BoldItalic.woff2) format("woff2")}@font-face{font-display:swap;font-family:Avenir;font-style:italic;font-weight:800;src:local("~assets/fonts/Avenir/AvenirNext-HeavyItalic.eot"),url(https://static-redesign.cnbcfm.com/dist/AvenirNext-HeavyItalic.eot) format("eot")}@font-face{font-display:swap;font-family:Avenir;font-style:italic;font-weight:800;src:local("~assets/fonts/Avenir/AvenirNext-HeavyItalic.woff"),url(https://static-redesign.cnbcfm.com/dist/AvenirNext-HeavyItalic.woff) format("woff")}@font-face{font-display:swap;font-family:Avenir;font-style:italic;font-weight:800;src:local("~assets/fonts/Avenir/AvenirNext-HeavyItalic.woff2"),url(https://static-redesign.cnbcfm.com/dist/AvenirNext-HeavyItalic.woff2) format("woff2")}@font-face{font-display:swap;font-family:Avenir;font-style:normal;font-weight:400;src:local("~assets/fonts/Avenir/AvenirNext-Regular.eot"),url(https://static-redesign.cnbcfm.com/dist/AvenirNext-Regular.eot) format("eot")}@font-face{font-display:swap;font-family:Avenir;font-style:normal;font-weight:400;src:local("~assets/fonts/Avenir/AvenirNext-Regular.woff"),url(https://static-redesign.cnbcfm.com/dist/AvenirNext-Regular.woff) format("woff")}@font-face{font-display:swap;font-family:Avenir;font-style:normal;font-weight:400;src:local("~assets/fonts/Avenir/AvenirNext-Regular.woff2"),url(https://static-redesign.cnbcfm.com/dist/AvenirNext-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Avenir;font-style:normal;font-weight:500;src:local("~assets/fonts/Avenir/AvenirNext-Medium.eot"),url(https://static-redesign.cnbcfm.com/dist/AvenirNext-Medium.eot) format("eot")}@font-face{font-display:swap;font-family:Avenir;font-style:normal;font-weight:500;src:local("~assets/fonts/Avenir/AvenirNext-Medium.woff"),url(https://static-redesign.cnbcfm.com/dist/AvenirNext-Medium.woff) format("woff")}@font-face{font-display:swap;font-family:Avenir;font-style:normal;font-weight:500;src:local("~assets/fonts/Avenir/AvenirNext-Medium.woff2"),url(https://static-redesign.cnbcfm.com/dist/AvenirNext-Medium.woff2) format("woff2")}@font-face{font-display:swap;font-family:Avenir;font-style:normal;font-weight:600;src:local("~assets/fonts/Avenir/AvenirNext-DemiBold.eot"),url(https://static-redesign.cnbcfm.com/dist/AvenirNext-DemiBold.eot) format("eot")}@font-face{font-display:swap;font-family:Avenir;font-style:normal;font-weight:600;src:local("~assets/fonts/Avenir/AvenirNext-DemiBold.woff"),url(https://static-redesign.cnbcfm.com/dist/AvenirNext-DemiBold.woff) format("woff")}@font-face{font-display:swap;font-family:Avenir;font-style:normal;font-weight:600;src:local("~assets/fonts/Avenir/AvenirNext-DemiBold.woff2"),url(https://static-redesign.cnbcfm.com/dist/AvenirNext-DemiBold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Avenir;font-style:normal;font-weight:700;src:local("~assets/fonts/Avenir/AvenirNext-Bold.eot"),url(https://static-redesign.cnbcfm.com/dist/AvenirNext-Bold.eot) format("eot")}@font-face{font-display:swap;font-family:Avenir;font-style:normal;font-weight:700;src:local("~assets/fonts/Avenir/AvenirNext-Bold.woff"),url(https://static-redesign.cnbcfm.com/dist/AvenirNext-Bold.woff) format("woff")}@font-face{font-display:swap;font-family:Avenir;font-style:normal;font-weight:700;src:local("~assets/fonts/Avenir/AvenirNext-Bold.woff2"),url(https://static-redesign.cnbcfm.com/dist/AvenirNext-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Avenir;font-style:normal;font-weight:800;src:local("~assets/fonts/Avenir/AvenirNext-Heavy.eot"),url(https://static-redesign.cnbcfm.com/dist/AvenirNext-Heavy.eot) format("eot")}@font-face{font-display:swap;font-family:Avenir;font-style:normal;font-weight:800;src:local("~assets/fonts/Avenir/AvenirNext-Heavy.woff"),url(https://static-redesign.cnbcfm.com/dist/AvenirNext-Heavy.woff) format("woff")}@font-face{font-display:swap;font-family:Avenir;font-style:normal;font-weight:800;src:local("~assets/fonts/Avenir/AvenirNext-Heavy.woff2"),url(https://static-redesign.cnbcfm.com/dist/AvenirNext-Heavy.woff2) format("woff2")}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular.eot"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular.eot) format("eot")}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular.woff"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular.woff) format("woff")}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular.woff2"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("Rozha One"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular.woff)}@font-face{font-display:swap;font-family:Lyon;font-style:normal;font-weight:800;src:local("~assets/fonts/Lyon/LyonText-Black-Web.eot"),url(https://static-redesign.cnbcfm.com/dist/LyonText-Black-Web.eot) format("eot")}@font-face{font-display:swap;font-family:Lyon;font-style:normal;font-weight:800;src:local("~assets/fonts/Lyon/LyonText-Black-Web.woff"),url(https://static-redesign.cnbcfm.com/dist/LyonText-Black-Web.woff) format("woff")}@font-face{font-display:swap;font-family:Lyon;font-style:normal;font-weight:800;src:local("~assets/fonts/Lyon/LyonText-Black-Web.woff2"),url(https://static-redesign.cnbcfm.com/dist/LyonText-Black-Web.woff2) format("woff2")}@font-face{font-display:swap;font-family:Lyon;font-style:normal;font-weight:600;src:local("~assets/fonts/Lyon/LyonText-Bold-Web.eot"),url(https://static-redesign.cnbcfm.com/dist/LyonText-Bold-Web.eot) format("eot")}@font-face{font-display:swap;font-family:Lyon;font-style:normal;font-weight:600;src:local("~assets/fonts/Lyon/LyonText-Bold-Web.woff"),url(https://static-redesign.cnbcfm.com/dist/LyonText-Bold-Web.woff) format("woff")}@font-face{font-display:swap;font-family:Lyon;font-style:normal;font-weight:600;src:local("~assets/fonts/Lyon/LyonText-Bold-Web.woff2"),url(https://static-redesign.cnbcfm.com/dist/LyonText-Bold-Web.woff2) format("woff2")}@font-face{font-display:swap;font-family:Lyon;font-style:normal;font-weight:400;src:local("~assets/fonts/Lyon/LyonText-Regular-Web.eot"),url(https://static-redesign.cnbcfm.com/dist/LyonText-Regular-Web.eot) format("eot")}@font-face{font-display:swap;font-family:Lyon;font-style:normal;font-weight:400;src:local("~assets/fonts/Lyon/LyonText-Regular-Web.woff"),url(https://static-redesign.cnbcfm.com/dist/LyonText-Regular-Web.woff) format("woff")}@font-face{font-display:swap;font-family:Lyon;font-style:normal;font-weight:400;src:local("~assets/fonts/Lyon/LyonText-Regular-Web.woff2"),url(https://static-redesign.cnbcfm.com/dist/LyonText-Regular-Web.woff2) format("woff2")}@font-face{font-display:swap;font-family:Lyon;font-style:italic;font-weight:400;src:local("~assets/fonts/Lyon/LyonText-RegularItalic-Web.eot"),url(https://static-redesign.cnbcfm.com/dist/LyonText-RegularItalic-Web.eot) format("eot")}@font-face{font-display:swap;font-family:Lyon;font-style:italic;font-weight:400;src:local("~assets/fonts/Lyon/LyonText-RegularItalic-Web.woff"),url(https://static-redesign.cnbcfm.com/dist/LyonText-RegularItalic-Web.woff) format("woff")}@font-face{font-display:swap;font-family:Lyon;font-style:italic;font-weight:400;src:local("~assets/fonts/Lyon/LyonText-RegularItalic-Web.woff2"),url(https://static-redesign.cnbcfm.com/dist/LyonText-RegularItalic-Web.woff2) format("woff2")}@font-face{font-display:swap;font-family:Lyon;font-style:normal;font-weight:500;src:local("~assets/fonts/Lyon/LyonText-Semibold-Web.eot"),url(https://static-redesign.cnbcfm.com/dist/LyonText-Semibold-Web.eot) format("eot")}@font-face{font-display:swap;font-family:Lyon;font-style:normal;font-weight:500;src:local("~assets/fonts/Lyon/LyonText-Semibold-Web.woff"),url(https://static-redesign.cnbcfm.com/dist/LyonText-Semibold-Web.woff) format("woff")}@font-face{font-display:swap;font-family:Lyon;font-style:normal;font-weight:500;src:local("~assets/fonts/Lyon/LyonText-Semibold-Web.woff2"),url(https://static-redesign.cnbcfm.com/dist/LyonText-Semibold-Web.woff2) format("woff2")}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:800;src:local("~assets/fonts/Averta/361747_2_0.eot"),url(https://static-redesign.cnbcfm.com/dist/361747_2_0.eot) format("eot")}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:800;src:local("~assets/fonts/Averta/361747_2_0.eot?#iefix"),url(https://static-redesign.cnbcfm.com/dist/361747_2_0.eot?#iefix) format("embedded-opentype")}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:800;src:local("~assets/fonts/Averta/361747_2_0.ttf"),url(https://static-redesign.cnbcfm.com/dist/361747_2_0.ttf) format("ttf")}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:800;src:local("~assets/fonts/Averta/361747_2_0.woff"),url(https://static-redesign.cnbcfm.com/dist/361747_2_0.woff) format("woff")}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:800;src:local("~assets/fonts/Averta/361747_2_0.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_2_0.woff2) format("woff2")}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:600;src:local("~assets/fonts/Averta/361747_0_0.eot"),url(https://static-redesign.cnbcfm.com/dist/361747_0_0.eot) format("eot")}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:600;src:local("~assets/fonts/Averta/361747_0_0.eot?#iefix"),url(https://static-redesign.cnbcfm.com/dist/361747_0_0.eot?#iefix) format("embedded-opentype")}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:600;src:local("~assets/fonts/Averta/361747_0_0.ttf"),url(https://static-redesign.cnbcfm.com/dist/361747_0_0.ttf) format("ttf")}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:600;src:local("~assets/fonts/Averta/361747_0_0.woff"),url(https://static-redesign.cnbcfm.com/dist/361747_0_0.woff) format("woff")}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:600;src:local("~assets/fonts/Averta/361747_0_0.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_0_0.woff2) format("woff2")}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:700;src:local("~assets/fonts/Averta/361747_1_0.eot"),url(https://static-redesign.cnbcfm.com/dist/361747_1_0.eot) format("eot")}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:700;src:local("~assets/fonts/Averta/361747_1_0.eot?#iefix"),url(https://static-redesign.cnbcfm.com/dist/361747_1_0.eot?#iefix) format("embedded-opentype")}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:700;src:local("~assets/fonts/Averta/361747_1_0.ttf"),url(https://static-redesign.cnbcfm.com/dist/361747_1_0.ttf) format("ttf")}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:700;src:local("~assets/fonts/Averta/361747_1_0.woff"),url(https://static-redesign.cnbcfm.com/dist/361747_1_0.woff) format("woff")}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:700;src:local("~assets/fonts/Averta/361747_1_0.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_1_0.woff2) format("woff2")}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:400;src:local("~assets/fonts/Averta/361747_3_0.eot"),url(https://static-redesign.cnbcfm.com/dist/361747_3_0.eot) format("eot")}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:400;src:local("~assets/fonts/Averta/361747_3_0.eot?#iefix"),url(https://static-redesign.cnbcfm.com/dist/361747_3_0.eot?#iefix) format("embedded-opentype")}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:400;src:local("~assets/fonts/Averta/361747_3_0.ttf"),url(https://static-redesign.cnbcfm.com/dist/361747_3_0.ttf) format("ttf")}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:400;src:local("~assets/fonts/Averta/361747_3_0.woff"),url(https://static-redesign.cnbcfm.com/dist/361747_3_0.woff) format("woff")}@font-face{font-display:swap;font-family:Averta;font-style:normal;font-weight:400;src:local("~assets/fonts/Averta/361747_3_0.woff2"),url(https://static-redesign.cnbcfm.com/dist/361747_3_0.woff2) format("woff2")}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:800;src:local("~assets/fonts/ProximaNova/351C86_0_0.eot"),url(https://static-redesign.cnbcfm.com/dist/351C86_0_0.eot) format("eot")}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:800;src:local("~assets/fonts/ProximaNova/351C86_0_0.eot?#iefix"),url(https://static-redesign.cnbcfm.com/dist/351C86_0_0.eot?#iefix) format("embedded-opentype")}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:800;src:local("~assets/fonts/ProximaNova/351C86_0_0.ttf"),url(https://static-redesign.cnbcfm.com/dist/351C86_0_0.ttf) format("truetype")}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:800;src:local("~assets/fonts/ProximaNova/351C86_0_0.woff"),url(https://static-redesign.cnbcfm.com/dist/351C86_0_0.woff) format("woff")}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:800;src:local("~assets/fonts/ProximaNova/351C86_0_0.woff2"),url(https://static-redesign.cnbcfm.com/dist/351C86_0_0.woff2) format("woff2")}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:600;src:local("~assets/fonts/ProximaNova/351C86_1_0.eot"),url(https://static-redesign.cnbcfm.com/dist/351C86_1_0.eot) format("eot")}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:600;src:local("~assets/fonts/ProximaNova/351C86_1_0.eot?#iefix"),url(https://static-redesign.cnbcfm.com/dist/351C86_1_0.eot?#iefix) format("embedded-opentype")}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:600;src:local("~assets/fonts/ProximaNova/351C86_1_0.ttf"),url(https://static-redesign.cnbcfm.com/dist/351C86_1_0.ttf) format("truetype")}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:600;src:local("~assets/fonts/ProximaNova/351C86_1_0.woff"),url(https://static-redesign.cnbcfm.com/dist/351C86_1_0.woff) format("woff")}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:600;src:local("~assets/fonts/ProximaNova/351C86_1_0.woff2"),url(https://static-redesign.cnbcfm.com/dist/351C86_1_0.woff2) format("woff2")}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:700;src:local("~assets/fonts/ProximaNova/351C86_2_0.eot"),url(https://static-redesign.cnbcfm.com/dist/351C86_2_0.eot) format("eot")}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:700;src:local("~assets/fonts/ProximaNova/351C86_2_0.eot?#iefix"),url(https://static-redesign.cnbcfm.com/dist/351C86_2_0.eot?#iefix) format("embedded-opentype")}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:700;src:local("~assets/fonts/ProximaNova/351C86_2_0.ttf"),url(https://static-redesign.cnbcfm.com/dist/351C86_2_0.ttf) format("truetype")}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:700;src:local("~assets/fonts/ProximaNova/351C86_2_0.woff"),url(https://static-redesign.cnbcfm.com/dist/351C86_2_0.woff) format("woff")}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:700;src:local("~assets/fonts/ProximaNova/351C86_2_0.woff2"),url(https://static-redesign.cnbcfm.com/dist/351C86_2_0.woff2) format("woff2")}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:400;src:local("~assets/fonts/ProximaNova/351C86_3_0.eot"),url(https://static-redesign.cnbcfm.com/dist/351C86_3_0.eot) format("eot")}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:400;src:local("~assets/fonts/ProximaNova/351C86_3_0.eot?#iefix"),url(https://static-redesign.cnbcfm.com/dist/351C86_3_0.eot?#iefix) format("embedded-opentype")}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:400;src:local("~assets/fonts/ProximaNova/351C86_3_0.ttf"),url(https://static-redesign.cnbcfm.com/dist/351C86_3_0.ttf) format("truetype")}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:400;src:local("~assets/fonts/ProximaNova/351C86_3_0.woff"),url(https://static-redesign.cnbcfm.com/dist/351C86_3_0.woff) format("woff")}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:400;src:local("~assets/fonts/ProximaNova/351C86_3_0.woff2"),url(https://static-redesign.cnbcfm.com/dist/351C86_3_0.woff2) format("woff2")}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:500;src:local("~assets/fonts/ProximaNova/351C86_4_0.eot"),url(https://static-redesign.cnbcfm.com/dist/351C86_4_0.eot) format("eot")}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:500;src:local("~assets/fonts/ProximaNova/351C86_4_0.eot?#iefix"),url(https://static-redesign.cnbcfm.com/dist/351C86_4_0.eot?#iefix) format("embedded-opentype")}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:500;src:local("~assets/fonts/ProximaNova/351C86_4_0.ttf"),url(https://static-redesign.cnbcfm.com/dist/351C86_4_0.ttf) format("truetype")}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:500;src:local("~assets/fonts/ProximaNova/351C86_4_0.woff"),url(https://static-redesign.cnbcfm.com/dist/351C86_4_0.woff) format("woff")}@font-face{font-display:swap;font-family:Proxima Nova;font-style:normal;font-weight:500;src:local("~assets/fonts/ProximaNova/351C86_4_0.woff2"),url(https://static-redesign.cnbcfm.com/dist/351C86_4_0.woff2) format("woff2")}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("~assets/fonts/RozhaOne/RozhaOne-Regular.ttf"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular.ttf) format("ttf")}@font-face{font-display:swap;font-family:Rozha One;font-style:normal;font-weight:400;src:local("Rozha One"),url(https://static-redesign.cnbcfm.com/dist/RozhaOne-Regular.ttf)}@font-face{font-display:swap;font-family:Lato;font-style:normal;font-weight:400;src:local("~assets/fonts/Lato/Lato-Regular.woff2"),url(https://static-redesign.cnbcfm.com/dist/Lato-Regular.woff2) format("woff2")}@font-face{font-display:swap;font-family:Lato;font-style:normal;font-weight:700;src:local("~assets/fonts/Lato/Lato-Bold.woff2"),url(https://static-redesign.cnbcfm.com/dist/Lato-Bold.woff2) format("woff2")}@font-face{font-display:swap;font-family:Lato;font-style:normal;font-weight:900;src:local("~assets/fonts/Lato/Lato-Black.woff2"),url(https://static-redesign.cnbcfm.com/dist/Lato-Black.woff2) format("woff2")}@font-face{font-display:swap;font-family:Lato;font-style:italic;font-weight:400;src:local("~assets/fonts/Lato/Lato-RegularItalic.woff2"),url(https://static-redesign.cnbcfm.com/dist/Lato-RegularItalic.woff2) format("woff2")}@font-face{font-display:swap;font-family:Lato;font-style:italic;font-weight:700;src:local("~assets/fonts/Lato/Lato-BoldItalic.woff2"),url(https://static-redesign.cnbcfm.com/dist/Lato-BoldItalic.woff2) format("woff2")}@font-face{font-display:swap;font-family:Lato;font-style:italic;font-weight:900;src:local("~assets/fonts/Lato/Lato-BlackItalic.woff2"),url(https://static-redesign.cnbcfm.com/dist/Lato-BlackItalic.woff2) format("woff2")}.SearchGroup-container{border-top:6px solid #002f6c;display:block;width:100%}.SearchGroup-container.SearchGroup-railVariant{margin-bottom:0}@media (min-width:760px){.SearchGroup-container.SearchGroup-railVariant{margin-bottom:20px}}@media (min-width:1020px){.SearchGroup-container.SearchGroup-railVariant{margin-bottom:20px}}.SearchGroup-header{align-items:flex-start;background:#fff;display:flex;flex-direction:row;justify-content:space-between;padding:10px 0}@media (min-width:760px){.SearchGroup-header{align-items:center}}.SearchGroup-sectionTitle{color:#002f6c;font-size:22px;font-weight:800;line-height:1.2;margin:0;text-transform:uppercase}@media (min-width:1020px){.SearchGroup-sectionTitle{font-size:14px}}.SearchGroup-railVariant .SearchGroup-sectionTitle{font-size:18px;font-weight:800}@media (min-width:760px){.SearchGroup-railVariant .SearchGroup-sectionTitle{font-size:20px}}@media (min-width:1340px){.SearchGroup-railVariant .SearchGroup-sectionTitle{font-size:30px}}.SearchGroup-contentButton{color:#002f6c;display:inline-block;font-size:12px;font-weight:700;letter-spacing:1px;margin-top:10px;text-transform:uppercase;vertical-align:middle;white-space:nowrap}.SearchGroup-contentButton i{font-style:normal;margin-right:3px}.SearchGroup-railVariant .SearchGroup-contentButton{margin:10px 0 0}@media (min-width:760px){.SearchGroup-contentButton{margin:0 0 0 25px}.SearchGroup-railVariant .SearchGroup-contentButton{margin:0 0 0 auto}}@media (min-width:1020px){.SearchGroup-contentButton{line-height:1}.SearchGroup-railVariant .SearchGroup-contentButton{margin:5px 0 0}}@media (min-width:1340px){.SearchGroup-railVariant .SearchGroup-contentButton{flex-grow:0;margin:0 0 0 24px}}.SearchGroup-headerButton{margin:0 0 0 50px}.SearchGroup-headerButton .icon-short-arrow-right{display:inline-block;margin-left:3px;margin-right:0;vertical-align:middle}@media (min-width:760px){.SearchGroup-headerButton{margin-left:auto}}.SearchGroup-content{position:relative}.SearchGroup-item{border-top:1px dashed #9b9b9b;display:flex;flex-direction:row;flex-wrap:wrap;padding:8px 5px}.SearchGroup-item:nth-of-type(1n+6){display:none}.SearchGroup-item:nth-child(2n){background-color:#f2f2f2}@media (min-width:360px){.SearchGroup-item:nth-of-type(1n+6){display:none}}@media (min-width:760px){.SearchGroup-item{flex-wrap:nowrap;padding:20px 5px}.SearchGroup-item:nth-of-type(1n+4){display:block}.SearchGroup-item:nth-of-type(1n+6){display:none}.SearchGroup-railVariant .SearchGroup-item{flex-wrap:wrap}}@media (min-width:1020px){.SearchGroup-item{min-height:53px;padding:10px}}@media (min-width:1340px){.SearchGroup-railVariant .SearchGroup-item{flex-wrap:nowrap}}.SearchGroup-itemIdentifier{display:block;flex-grow:1;float:left;min-width:50%;width:60%}@media (min-width:760px){.SearchGroup-itemIdentifier{min-width:0;width:auto}.SearchGroup-railVariant .SearchGroup-itemIdentifier{max-width:42%;min-width:42%}}@media (min-width:1020px){.SearchGroup-railVariant .SearchGroup-itemIdentifier{max-width:50%;min-width:50%}}@media (min-width:1340px){.SearchGroup-railVariant .SearchGroup-itemIdentifier{max-width:100%;min-width:0}}.SearchGroup-itemTitle{color:#171717;display:block;font-size:16px;font-weight:800;line-height:1.25;text-transform:uppercase}.SearchGroup-itemTitle:focus,.SearchGroup-itemTitle:hover{color:#005594}.SearchGroup-itemSubTitle{color:#747474;display:block;font-size:14px;line-height:1.4;margin-top:5px}@media (min-width:1020px){.SearchGroup-itemSubTitle{font-size:12px;line-height:1}}.SearchGroup-railVariant .SearchGroup-itemSubTitle{font-weight:500}.SearchGroup-marketChange{color:#747474;display:block;font-size:14px;font-weight:600;line-height:1.42;margin-left:auto;min-width:40%;text-align:right;text-transform:uppercase}@media (min-width:760px){.SearchGroup-marketChange{min-width:0}}@media (min-width:1020px){.SearchGroup-marketChange{font-size:12px;line-height:1}.SearchGroup-railVariant .SearchGroup-marketChange{max-width:50%;min-width:50%}}@media (min-width:1340px){.SearchGroup-railVariant .SearchGroup-marketChange{max-width:100%;min-width:0}}.SearchGroup-marketChangeUp{color:#008456}.SearchGroup-marketChangeDown{color:#ce2b2b}.SearchGroup-change,.SearchGroup-change_pct{display:block}.SearchGroup-change_pct{margin-top:5px}.SearchGroup-label{color:#747474;display:block;font-size:14px;font-weight:600;line-height:1.42;margin-left:auto;text-align:right;text-transform:uppercase}@media (min-width:1020px){.SearchGroup-label{font-size:12px;line-height:1}}.SearchGroup-noSavedData{border-top:1px dashed #9b9b9b;display:block;padding:20px 0}@media (min-width:1020px){.SearchGroup-noSavedData{padding:10px 0 0}}@media (min-width:1340px){.SearchGroup-noSavedData{padding-top:18px}}.SearchGroup-callToActionTitle{color:#171717;display:block;font-size:20px;font-weight:700;line-height:1.2;margin:0}.SearchGroup-callToActionDescription{color:#5d5d5d;display:block;font-size:14px;font-weight:500;line-height:1.28;margin:10px 0 20px}.SearchGroup-callToActionDescription .SearchGroup-emphasized{font-weight:600;text-transform:uppercase}@media (min-width:760px){.SearchGroup-callToActionDescription{font-size:12px;line-height:1.33;margin:10px 0 30px;max-width:382px;width:70%}}@media (min-width:1020px){.SearchGroup-callToActionDescription{font-size:12px;line-height:1.33;margin:10px 0 20px;max-width:100%;width:100%}}.SearchGroup-callToActionButton{align-items:center;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#002f6c;border:1px solid #002f6c;color:#fff;display:flex;flex-direction:row;font-size:14px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;padding:0 20px;text-align:center;text-transform:uppercase;transition:all .15s linear;width:100%}.SearchGroup-callToActionButton>span{display:block;line-height:12px}.SearchGroup-callToActionButton [class*=" icon-"],.SearchGroup-callToActionButton [class^=icon-]{height:12px;margin-left:5px;position:relative}.SearchGroup-callToActionButton [class*=" icon-"]:before,.SearchGroup-callToActionButton [class^=icon-]:before{line-height:12px}.SearchGroup-callToActionButton:focus,.SearchGroup-callToActionButton:hover{background-color:#2077b6;border-color:#2077b6;color:#fff}.SearchGroup-callToActionButton[class*=touchButton]:hover{background-color:#002f6c;border-color:#002f6c;color:#fff}@media (hover:hover){.SearchGroup-callToActionButton[class*=touchButton]:hover{background-color:#2077b6;border-color:#2077b6;color:#fff}}@media (min-width:760px){.SearchGroup-callToActionButton{max-width:236px;padding:0 30px;width:auto}}.SearchGroup-noResults{border-top:1px dotted #9b9b9b;color:#5d5d5d;font-size:14px;font-weight:500;padding-top:10px}.SearchGroup-noResults span{font-weight:700}.SearchResult-searchResult{border-bottom:1px dashed #9b9b9b;margin-bottom:20px;padding-bottom:20px}@media (min-width:760px){.SearchResult-searchResult{display:flex;flex-direction:row;margin-bottom:30px;padding-bottom:30px}}@media (min-width:1020px){.SearchResult-searchResult{margin-bottom:40px;padding-bottom:40px}}@media (min-width:1340px){.SearchResult-searchResult{margin-left:-30px}}.SearchResult-searchResult:last-child{border-bottom:0;padding-bottom:0}.SearchResult-searchResult.SearchResult-standardVariant{justify-content:space-between}@media (min-width:1340px){.SearchResult-searchResult.SearchResult-standardVariant{margin-left:0}}.SearchResult-searchResultCard{margin-bottom:10px}.SearchResult-standardVariant .SearchResult-searchResultCard{height:150px;padding-bottom:50%}@media (min-width:760px){.SearchResult-searchResultCard{margin-bottom:-20px;order:2;width:calc(33.33333% - 15px)}.SearchResult-standardVariant .SearchResult-searchResultCard{flex:1 1 300px;padding-bottom:inherit}}@media (min-width:1020px){.SearchResult-standardVariant .SearchResult-searchResultCard{margin-bottom:20px}}@media (min-width:1340px){.SearchResult-searchResultCard{width:calc(30% - 15px)}.SearchResult-standardVariant .SearchResult-searchResultCard{flex:1 1 300px}}.PlayButton-container{border-top:6px solid #fcb700;height:100%;left:0;position:absolute;top:0;width:100%;z-index:1}.PlayButton-base{align-items:center;background-color:#fcb700;color:#fff;display:flex;font-size:12px;height:40px;justify-content:center;position:absolute;right:0;top:-5px;transition:all .15s linear;width:40px;z-index:1}.PlayButton-base:focus .PlayButton-flyout,.PlayButton-base:hover .PlayButton-flyout,.PlayButton-basebutton:focus .PlayButton-flyout,.PlayButton-basebutton:hover .PlayButton-flyout{color:#071d39;transform:scaleX(1);transition:color .15s linear .15s,transform .15s linear}.PlayButton-flyout{background-color:#fcb700;color:#071d39;font-size:9px;font-weight:800;height:100%;letter-spacing:1px;line-height:1;position:absolute;right:35px;text-align:left;text-transform:uppercase;top:0;transform:scaleX(0);transform-origin:center right;transition:color .15s linear,transform .15s linear .15s;width:90px;z-index:1}.PlayButton-flyout,.PlayButton-icon{align-items:center;display:flex;justify-content:center}.PlayButton-icon{border:2px solid #fcb700;height:30px;transition:border .15s linear;width:30px;z-index:2}.PlayButton-icon:focus,.PlayButton-icon:hover,.PlayButton-iconbutton:focus,.PlayButton-iconbutton:hover{border:2px solid #fff}@media (min-width:760px){.SearchResult-searchResultContent{margin-right:30px;width:calc(66.66667% - 15px)}.SearchResult-standardVariant .SearchResult-searchResultContent{flex:1 1 340px}}@media (min-width:1340px){.SearchResult-searchResultContent{width:calc(70% - 15px)}.SearchResult-standardVariant .SearchResult-searchResultContent{flex:1 0 410px}}.SearchResult-searchHighlight{background-color:#e7ecf1}.SearchResult-searchResultEyebrow{color:#732634;font-size:12px;font-weight:500;letter-spacing:2px;line-height:1.116;margin-bottom:10px;text-transform:uppercase}.SearchResult-standardVariant .SearchResult-searchResultEyebrow{color:#005594;font-weight:700;letter-spacing:1px}.SearchResult-searchResultTitle{color:#171717;font-family:Lyon,Helvetica,Arial,sans-serif;font-size:20px;font-weight:500;line-height:1.3;margin-bottom:10px}.SearchResult-standardVariant .SearchResult-searchResultTitle{font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:24px;font-weight:600}@media (min-width:1020px){.SearchResult-standardVariant .SearchResult-searchResultTitle{margin-bottom:10px}.SearchResult-searchResultTitle{font-size:26px;line-height:1.23;margin-bottom:20px}}.SearchResult-searchResultPreview{color:#5d5d5d;font-family:Lyon,Helvetica,Arial,sans-serif;font-size:18px;font-weight:400;line-height:1.611;margin-bottom:0;margin-top:0}.SearchResult-standardVariant .SearchResult-searchResultPreview{margin-bottom:10px}.SearchResult-byline{font-size:12px}.SearchResult-author{color:#005594;font-family:Lyon,Helvetica,Arial,sans-serif;font-weight:600;letter-spacing:1px}.SearchResult-publishedDate{color:#747474;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-weight:600;text-transform:uppercase}.SearchResult-searchResultFrom{color:#b2b2b2;font-size:12px;font-weight:500;letter-spacing:2px;line-height:1.33;margin-top:15px;text-transform:uppercase}@media (min-width:1020px){.SearchResult-searchResultFrom{margin-top:25px}}.SearchResult-searchResultFrom a{color:#000}.SearchResult-searchResultFrom a:hover{color:#d1bb7e}.SearchResult-searchResultImage{background-position:50% 50%;background-size:cover;margin-bottom:10px;padding-bottom:50%;width:100%}@media (min-width:760px){.SearchResult-searchResultImage{margin-bottom:20px}}.SearchDropDown-dropDownContainer .Card-mediaContainer{background-position:50% 50%;background-size:cover;padding-bottom:50%}.SearchDropDown-dropDownContainer .Card-mediaContainer .Card-placeholder{position:absolute}
/*# sourceMappingURL=source-maps/main-10328a92c7b164509e08.css.map*/
.BoxInline-container{margin:30px auto auto;max-width:300px}@media (max-width:359px){.BoxInline-container{margin-bottom:20px}}@media (min-width:1020px){.BoxInline-container{margin:0}}.BoxInline-container [id*=div-gpt-boxinline]>div{margin-bottom:40px}
/*# sourceMappingURL=source-maps/1435-116e95276f511a658321.css.map*/
.BoxRail-container,.BoxRail-container-left,.BoxRail-container-right{flex:1 1 auto;position:relative;width:100%}@media only screen and (min-width:760px) and (max-width:1019px){.BoxRail-container,.BoxRail-container-left,.BoxRail-container-right{left:calc(6.66667% + 26px)}.BoxRail-container-right{left:0}}.BoxRail-container-left{right:30px}.BoxRail-container-left>div>div>div,.BoxRail-container-right>div>div>div,.BoxRail-container>div>div>div{margin-bottom:30px}@media (min-width:360px){.BoxRail-container-left>div>div>div,.BoxRail-container-right>div>div>div,.BoxRail-container>div>div>div{margin-bottom:40px}}.BoxRail-adWrapperSticky,.BoxRail-adWrapperStickyNewsAlert{position:fixed;top:130px}.BoxRail-ad{align-items:center;align-self:center;display:flex;justify-content:center;margin:0 auto;max-width:300px;width:250px}@media (min-width:760px){.BoxRail-ad{max-width:768px;min-height:150px;width:100%}}
/*# sourceMappingURL=source-maps/7005-f70ed1430f2cc6393cf2.css.map*/
.TableHeader-container{border-top:6px solid #002f6c;margin-bottom:5px;min-height:6px;width:100%}@media (min-width:760px){.TableHeader-container{margin-bottom:10px}}.TableHeader-title{color:#002f6c;display:inline-block;font-size:20px;font-weight:800;line-height:24px;margin-bottom:0;margin-top:10px;text-transform:uppercase}@media (min-width:1020px){.TableHeader-title{font-size:24px;line-height:29px}}.TableHeader-themeTitle{color:#000}.TableHeader-link{text-decoration:none}.TableHeader-link:hover .TableHeader-title{color:#2077b6}@media (prefers-color-scheme:dark){.webview .TableHeader-themeTitle{background-color:#000;color:#dce0e4}}
/*# sourceMappingURL=source-maps/5454-58928507f4cba1549cc6.css.map*/
.BasicTable-basicTable{position:relative}.BasicTable-tableWrapper{overflow-x:auto;overflow-y:visible;position:relative}.BasicTable-portfolioTableWrapper{position:relative}.BasicTable-table{width:100%}.BasicTable-tableHeadingSortable{cursor:pointer}.BasicTable-portfolioTd{text-align:center!important}.BasicTable-portfolioHeader{display:flex}.BasicTable-portfolioHeaderJustify{justify-content:center}.BasicTable-watchlistTableHeaderJustify{justify-content:end}.BasicTable-portfolioHeaderName{text-align:center}.BasicTable-portfolioHeaderSortIcon{margin-bottom:auto;margin-top:auto}.BasicTable-articleContainer .BasicTable-tableHeading{border-bottom:1px dotted #e8e8e8}.BasicTable-articleContainer .BasicTable-tableHeading th{color:#747474;cursor:pointer;font-size:12px;font-weight:600;letter-spacing:.9px;padding:8px 15px 8px 5px;text-transform:uppercase}@media (min-width:1020px){.BasicTable-articleContainer .BasicTable-tableHeading th{font-size:12px;padding-right:50px}}.BasicTable-articleContainer .BasicTable-tableBody{margin-top:10px}.BasicTable-articleContainer .BasicTable-tableBody td{color:#747474;font-size:12px;font-weight:600;padding:12px 15px 12px 5px}.BasicTable-articleContainer .BasicTable-tableBody td:first-child{color:#000;text-transform:uppercase}@media (min-width:1020px){.BasicTable-articleContainer .BasicTable-tableBody td{font-size:12px;padding-right:50px}}.BasicTable-articleContainer .BasicTable-tableBody tr:first-child td{padding-top:15px}.BasicTable-articleContainer .BasicTable-tableBody tr:nth-child(2n){background:#f8f8f8}.BasicTable-container{overflow-x:auto;overflow-y:hidden}.BasicTable-container .BasicTable-portfolioTableHeading:after{top:unset!important}.BasicTable-container .BasicTable-tableHeading{border-bottom:none}.BasicTable-container .BasicTable-tableHeading:after{border-bottom:1px dashed #9b9b9b;content:"";display:block;height:1px;left:0;position:absolute;width:100%}.BasicTable-container .BasicTable-tableHeading th{color:#747474;font-size:12px;font-weight:600;letter-spacing:1.2px;line-height:15px;padding:8px 5px;text-transform:uppercase;white-space:nowrap}.BasicTable-container .BasicTable-tableHeading .BasicTable-portfolioHeaderTh{white-space:unset!important}.BasicTable-container .BasicTable-tableHeading th:first-child{padding-left:10px}.BasicTable-container .BasicTable-tableHeading th:last-child{padding-right:10px}.BasicTable-container .BasicTable-tableBody tr:nth-child(2n){background-color:#f8f8f8}.BasicTable-container .BasicTable-tableBody td{height:30px;padding:5px;white-space:nowrap}.BasicTable-container .BasicTable-tableBody tr:first-child td{padding-top:20px}.BasicTable-container .BasicTable-tableBody tr td:first-child{padding-left:10px}.BasicTable-container .BasicTable-tableBody tr td:last-child{padding-right:10px}@media (min-width:760px){.BasicTable-container .BasicTable-tableBody tr td:first-child{padding-left:8px}.BasicTable-container .BasicTable-tableBody tr td:last-child{padding-right:8px}}@media (min-width:1340px){.BasicTable-container .BasicTable-tableBody tr td:first-child{padding-left:10px}.BasicTable-container .BasicTable-tableBody tr td:last-child{padding-right:10px}}.BasicTable-container .BasicTable-textData{color:#171717;font-size:12px;font-weight:600;line-height:15px;text-align:right;text-align:left}.BasicTable-container .BasicTable-numData{color:#171717;font-size:12px;font-weight:600;line-height:15px;text-align:right}.BasicTable-container::-webkit-scrollbar{height:6px}.BasicTable-container::-webkit-scrollbar-track{background:none;border-top:1px dashed #9b9b9b}.BasicTable-container::-webkit-scrollbar-thumb{background:#cfd8e2}.BasicTable-floatingTable{background:linear-gradient(90deg,#fff,#fff 80%,hsla(0,0%,100%,0));left:0;position:absolute;top:0;z-index:2}.BasicTable-floatingTable .BasicTable-tableHeading:after{width:99%}.BasicTable-floatingTable th{text-align:left}.BasicTable-floatingTable .BasicTable-tableBody tr:nth-child(2n){background:none}.BasicTable-portfolioScroll{width:15px!important}.BasicTable-scrollGradient{background:linear-gradient(270deg,#fff 10%,hsla(0,0%,100%,.5) 60%,hsla(0,0%,100%,0));height:calc(100% - 6px);pointer-events:none;position:absolute;right:0;top:0;width:60px}@supports (-ms-high-contrast:none){.BasicTable-scrollGradient{background:transparent}}@supports (-ms-accelerator:true){.BasicTable-scrollGradient{background:transparent}}@media (min-width:760px){.BasicTable-scrollGradient{width:80px}}.BasicTable-quoteGain{color:#008456}.BasicTable-quoteDecline,.BasicTable-quoteGain{font-size:12px;font-weight:600;line-height:15px;text-align:right}.BasicTable-quoteDecline{color:#ce2b2b}.BasicTable-watchlistTableQuote{text-align:center!important}.BasicTable-changePositive{border-bottom:11px solid #008456;border-left:6px solid transparent;border-right:6px solid transparent;bottom:14px;height:0;margin-left:5px;overflow:hidden;position:relative;width:0}.BasicTable-changeNegative{border-bottom:0;border-top:11px solid #ce2b2b;bottom:0;top:12px}.BasicTable-symbol{text-align:left}.BasicTable-symbol a{word-wrap:break-word;color:#4a4a4a;font-size:12px;font-weight:700;letter-spacing:0;line-height:15px;max-width:75px;text-transform:uppercase;width:10%}.BasicTable-symbol a:focus,.BasicTable-symbol a:hover{color:#2077b6}.BasicTable-name{font-size:12px;font-weight:700;letter-spacing:0;line-height:15px}.BasicTable-unchanged{color:#747474;text-transform:uppercase}.BasicTable-portfolioSummary,.BasicTable-portfolioSummaryNegative,.BasicTable-portfolioSummaryPositive{color:#000;font-size:14px!important;font-style:normal;font-weight:700;letter-spacing:0;line-height:20px!important;padding-top:6px!important;text-align:center;text-transform:none!important}@media (max-width:759px){.BasicTable-portfolioSummary,.BasicTable-portfolioSummaryNegative,.BasicTable-portfolioSummaryPositive{font-size:12px!important;letter-spacing:0!important;line-height:16px!important}}.BasicTable-portfolioSummaryPositive{color:#008456}.BasicTable-portfolioSummaryNegative{color:#ce2b2b}@media (prefers-color-scheme:dark){.webview .BasicTable-articleContainer .BasicTable-tableBody td:first-child{color:#fff}.webview .BasicTable-articleContainer .BasicTable-tableBody tr:nth-child(2n){background-color:#272727}.webview .BasicTable-scrollGradient{background:linear-gradient(270deg,#000 10%,rgba(0,0,0,.5) 60%,transparent)}}@media (min-width:1020px){.BasicTable-watchlistTable{margin-bottom:130px}}.BasicTable-symbolName{display:-webkit-box}.BasicTable-addWatchlist{left:2px;position:relative;top:-3px}@media (min-width:1020px){.BasicTable-dropdownStyles{width:150px!important}}@media (max-width:1019px){.BasicTable-dropdownStyles a{align-self:center;font-size:14px;max-width:-webkit-fit-content;max-width:-moz-fit-content;max-width:fit-content;text-transform:none;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content}}.BasicTable-dataRow{display:flex;justify-content:space-between}.BasicTable-fairValueQuote .BasicTable-tableBody tr:first-child td{padding:4px}.BasicTable-fairValueQuote .BasicTable-numData{text-align:left}.BasicTable-fairValueQuote .BasicTable-numData span{font-size:10px}
/*# sourceMappingURL=source-maps/8128-c48b40d230143c2a9061.css.map*/
.Card-card{border-top:1px dashed hsla(0,0%,55%,.5);box-sizing:border-box;display:block;font-weight:600;padding:15px 0}.Card-card .Card-title{font-family:Proxima Nova,Helvetica,Arial,sans-serif}@media (min-width:760px){.Card-card{padding:0}}@media (min-width:1020px){.Card-card{padding:30px 0}}.Card-buffett:hover .title{text-decoration:underline}.Card-package{border-color:hsla(0,0%,100%,.5)}.Card-package .Card-title{color:#fff}.Card-title{color:#2e2e2e}.Card-title:focus,.Card-title:hover{color:#2e2e2e;text-decoration:underline}.Card-titleAndFooter{display:flex;flex-direction:column;justify-content:space-between}.Card-leftSquareMedia .Card-titleAndFooter,.Card-rectangleToLeftSquareMedia .Card-titleAndFooter{height:auto}.Card-mediaContainer{display:block;line-height:0;margin-bottom:10px;position:relative;width:100%}.Card-mediaContainer:hover+.Card-textContent .Card-title{text-decoration:underline}.Card-mediaContainer:hover .Card-aboveImageTitle a{color:#fff;text-decoration:underline}@media (min-width:760px){.Card-mediaContainer{margin-bottom:20px}}.Card-buffett .mediaContainer:hover+.textContent .title{text-decoration:underline}.Card-mediaContainerPackage{display:block;margin:0 -20px 20px;position:relative}.Card-mediaContainerPackage:hover+.Card-textContent .Card-title{text-decoration:underline}.Card-rectangleMediaContainer,.Card-squareMediaContainer{background-position:50%;height:100%;width:100%}@media (max-width:759px){.Card-rectangleMediaContainer{margin-bottom:8px}}.Card-imageGradient{background:linear-gradient(180deg,rgba(7,29,57,0) 0,rgba(7,29,57,.5) 46%,#071d39 97%,#071d39);bottom:0;filter:progid:dximagetransform.microsoft.gradient(startColorstr="#00071d39",endColorstr="#071d39",GradientType=0);height:50%;position:absolute;width:100%}.Card-videoFooter{background:linear-gradient(180deg,rgba(30,87,153,0) 0,#000);bottom:0;filter:progid:dximagetransform.microsoft.gradient(startColorstr="#001e5799",endColorstr="#000000",GradientType=0);height:40px;padding-left:10px;padding-top:10px;position:absolute;width:100%}@media (min-width:1340px){.Card-videoFooter{height:50px;padding-top:25px}}.Card-videoFooterContent{bottom:10px;left:10px;position:absolute}@media (min-width:1020px){.Card-videoFooterContent{bottom:20px;left:20px}.Column-squareLeadRight .Card-videoFooterContent,.Column-threeUp .Card-videoFooterContent{bottom:10px;left:10px}}.Card-videoLabel{color:#fcb700;font-size:10px;font-weight:800;letter-spacing:1.67px;line-height:12px}@media (min-width:760px){.Card-videoLabel{font-size:12px;letter-spacing:2px;line-height:15px}}.Card-videoTime{color:hsla(0,0%,100%,.8);font-weight:600;letter-spacing:1.2px;padding-left:10px}@media (min-width:760px){.Card-videoTime{letter-spacing:1.44px}}.Card-totalTime{padding-left:5px}.Card-totalTime:before{content:"|";display:inline-block;margin-right:5px}.Card-byline,.Card-threeUpCardFooterStyle .Card-threeUpBylineStyle{color:#005594;font-family:Lyon,Helvetica,Arial,sans-serif;font-size:12px;font-weight:600;line-height:1.15;margin-right:10px}.Card-byline a,.Card-threeUpCardFooterStyle .Card-threeUpBylineStyle a{color:inherit}.Card-byline a:hover,.Card-threeUpCardFooterStyle .Card-threeUpBylineStyle a:hover{text-decoration:underline}@media (min-width:1020px){.Card-byline,.Card-threeUpCardFooterStyle .Card-threeUpBylineStyle{font-size:12px}}@media (min-width:1340px){.Card-byline,.Card-threeUpCardFooterStyle .Card-threeUpBylineStyle{margin-top:1px}}.Card-bylinePackage{color:#fcb700}.Card-time{color:#747474;font-size:10px;font-weight:600;letter-spacing:1px;line-height:15px;text-transform:uppercase}@media (min-width:1020px){.Card-time{font-size:11px}}.Card-timePackage{color:#b9c7d5}.Card-sponsoredLogo{color:#53c;font-family:Lyon,Helvetica,Arial,sans-serif;font-size:12px;font-weight:600;line-height:1.4;margin:0 0 10px;margin-top:17px!important}@media (min-width:360px){.Card-sponsoredLogo{font-size:12px}}@media (min-width:760px){.Card-sponsoredLogo{font-size:14px;margin:8px 0 10px!important;padding-top:3px}}@media (min-width:1020px){.Card-sponsoredLogo{font-size:14px;margin-top:0!important;padding-top:11px}}@media (min-width:1340px){.Card-sponsoredLogo{font-size:16px;margin-top:0;padding-top:9px}}.Card-sponsoredLogo img{bottom:-2px;display:inline-block;margin-left:10px;max-height:20px;max-width:calc(100% - 80px);position:relative}@media (min-width:1020px){.Card-sponsoredLogo img{max-width:calc(100% - 85px)}}.Card-sponsoredLogo:hover{text-decoration:underline}.Card-packageTitle{bottom:0;color:#fcb700;font-size:12px;font-weight:700;left:20px;letter-spacing:.5px;line-height:1.25;position:absolute;text-transform:uppercase}.Card-packageTitle:hover{text-decoration:underline}.Card-live img{height:12px;margin-bottom:10px;max-height:12px;max-width:42px;width:42px}.Card-titleOnly{font-size:17px;font-weight:600;line-height:1.2;line-height:22px;padding:15px 0}@media (min-width:760px){.Card-titleOnly{font-size:17px}}@media (min-width:1020px){.Card-titleOnly{font-size:16px}}@media (min-width:1340px){.Card-titleOnly{font-size:18px;line-height:24px;padding:20px 0}}.Card-pro{margin-bottom:-6px;position:relative;top:-7px}@media (min-width:760px){.Card-pro{margin-top:8px;max-height:none}}.Card-titleOnlyUltraDense{font-size:17px;font-weight:600;line-height:1.2;line-height:1.3;max-height:100px;padding:16px 0}@media (min-width:760px){.Card-titleOnlyUltraDense{font-size:17px}}@media (min-width:1020px){.Card-titleOnlyUltraDense{font-size:16px}}@media (min-width:1340px){.Card-titleOnlyUltraDense{font-size:18px}}@media (min-width:760px){.Card-titleOnlyUltraDense{font-weight:600;height:140px;max-height:140px;padding-top:15px}.Card-titleOnlyUltraDense:last-child{border-bottom:1px dashed hsla(0,0%,55%,.5)}}@media (min-width:760px) and (min-width:760px){.Card-titleOnlyUltraDense .Card-textContent .Card-titleAndFooter .Card-pro{position:relative;top:-25px}}@media (min-width:1020px){.Card-titleOnlyUltraDense{height:140px;max-height:140px;padding-top:20px}}@media (min-width:1340px){.Card-titleOnlyUltraDense{height:130px;line-height:24px;max-height:130px}.Card-titleOnlyUltraDense .Card-textContent .Card-titleAndFooter .Card-pro{position:relative;top:-23px}}@media (max-width:759px){.Card-titleOnlyImageDense{font-size:17px;font-weight:600;line-height:24px}}@media (min-width:760px){.Card-titleOnlyTopBorder{border-top:none;padding-top:0}}.Card-titleOnlyNoBorder{border-top:none;font-weight:600;padding-top:20px}@media (min-width:760px){.Card-titleOnlyNoBorder{height:110px;max-height:110px;padding-bottom:29px;padding-top:0}}@media (min-width:1020px){.Card-titleOnlyNoBorder{height:110px;max-height:110px;padding-bottom:27px}}@media (min-width:1340px){.Card-titleOnlyNoBorder{height:100px;line-height:24px;max-height:100px;padding-bottom:34px}}.Card-titleOnlyTopSolidBorder{border-top:1px solid #e8e8e8}@media (min-width:760px){.Card-titleOnlyTopSolidBorder{border-top:none;padding-top:0}}.Card-titleOnlyHalf{float:left;padding-right:30px;width:50%}@media (min-width:1020px){.Card-titleOnlyHalf{width:100%}}@media (min-width:1340px){.Card-titleOnlyHalf{width:50%}}.Card-titleOnlyHalf:last-child{padding-right:0}.Card-titleOnlyHalf:last-child .Card-textContent{border-left:1px dashed hsla(0,0%,55%,.5);padding-left:30px}@media (min-width:1020px){.Card-titleOnlyHalf:last-child .Card-textContent{border-left:none;padding-left:0}}@media (min-width:1340px){.Card-titleOnlyHalf:last-child .Card-textContent{border-left:1px dashed hsla(0,0%,55%,.5);padding-left:30px}}.Card-titleOnlyHalfPackage:last-child .Card-textContent{border-color:hsla(0,0%,100%,.5)}.Card-titleByline{font-size:16px;line-height:1.2}@media (min-width:760px){.Card-titleByline{font-size:16px}}@media (min-width:1020px){.Card-titleByline{font-size:16px}}@media (min-width:1340px){.Card-titleByline{font-size:24px}}.Card-titleBylinePackage{border-top:1px dashed hsla(0,0%,100%,.5)}.Card-titleBylineNoBorder{border-top:none;font-size:19px;line-height:1.2;padding-top:0}@media (min-width:760px){.Card-titleBylineNoBorder{font-size:18px}}@media (min-width:1020px){.Card-titleBylineNoBorder{font-size:21px}}@media (min-width:1340px){.Card-titleBylineNoBorder{font-size:24px}}.Card-titleBylineRight{border-top:1px dashed hsla(0,0%,55%,.5);font-size:16px;line-height:1.2;width:100%}@media (min-width:760px){.Card-titleBylineRight{font-size:16px}}@media (min-width:1020px){.Card-titleBylineRight{font-size:22px}}@media (min-width:1340px){.Card-titleBylineRight{font-size:24px}}@media (min-width:760px){.Card-titleBylineRight{border-top:none;padding-top:0}}.Card-titleBylineRight .Card-textContent{padding-left:0}@media (min-width:760px){.Card-titleBylineRight .Card-textContent{border-left:1px dashed hsla(0,0%,55%,.5);padding-left:15px}}@media (min-width:1340px){.Card-titleBylineRight .Card-textContent{padding-left:30px}}.Card-largeTitleByline{border-top:1px dashed hsla(0,0%,55%,.5);font-size:16px;line-height:1.2}@media (min-width:760px){.Card-largeTitleByline{font-size:26px}}@media (min-width:1020px){.Card-largeTitleByline{font-size:26px}}@media (min-width:1340px){.Card-largeTitleByline{font-size:36px}.Card-largeTitleByline .Card-investingClubPill,.Card-largeTitleByline .Card-proPill,.Card-largeTitleByline .Card-watchLivePill{margin-top:-.2em;vertical-align:middle}.Card-largeTitleByline{line-height:40px}}.Card-titleBylineHalf{flex:1 0 40%;font-size:16px;line-height:1.2;max-width:50%}@media (min-width:760px){.Card-titleBylineHalf{font-size:16px}}@media (min-width:1020px){.Card-titleBylineHalf{font-size:16px}}@media (min-width:1340px){.Card-titleBylineHalf{font-size:16px}}.Card-threeUpCardFooterStyle .Card-titleBylineHalf .Card-threeUpBylineStyle,.Card-titleBylineHalf .Card-byline,.Card-titleBylineHalf .Card-threeUpCardFooterStyle .Card-threeUpBylineStyle,.Card-titleBylineHalf .Card-time{display:block}@media (min-width:760px){.Card-threeUpCardFooterStyle .Card-titleBylineHalf .Card-threeUpBylineStyle,.Card-titleBylineHalf .Card-byline,.Card-titleBylineHalf .Card-threeUpCardFooterStyle .Card-threeUpBylineStyle,.Card-titleBylineHalf .Card-time{display:inline-block}}.Card-featuredRectangleMedia{border-top:none;font-size:22px;line-height:1.2;padding-bottom:9px;padding-top:0;width:100%}@media (min-width:760px){.Card-featuredRectangleMedia{font-size:22px}}@media (min-width:1020px){.Card-featuredRectangleMedia{font-size:22px}}@media (min-width:1340px){.Card-featuredRectangleMedia{font-size:30px}.Card-featuredRectangleMedia .Card-investingClubPill,.Card-featuredRectangleMedia .Card-proPill,.Card-featuredRectangleMedia .Card-watchLivePill{margin-top:-.2em;vertical-align:middle}}.Card-featuredRectangleMedia div.Card-mediaContainer .Card-rectangleMediaContainer{padding-top:56.25%}.Card-featuredRectangleMedia .Card-mediaContainer{margin:initial;width:100%}@media (min-width:360px){.Card-featuredRectangleMedia .Card-mediaContainer{min-height:40px}.Card-featuredRectangleMedia .Card-mediaContainer .Card-imageContainer{height:165px}}@media (min-width:760px){.Card-featuredRectangleMedia{padding-bottom:14px}.Card-featuredRectangleMedia .Card-mediaContainer{min-height:120px}.Card-featuredRectangleMedia .Card-mediaContainer .Card-imageContainer{height:335px}}@media (min-width:1020px){.Card-featuredRectangleMedia .Card-mediaContainer{min-height:120px}.Card-featuredRectangleMedia .Card-mediaContainer .Card-imageContainer{height:315px}}@media only screen and (min-width:1180px) and (max-width:1339px){.Card-featuredRectangleMedia .Card-mediaContainer{min-height:120px}.Card-featuredRectangleMedia .Card-mediaContainer .Card-imageContainer{height:315px}}@media (min-width:1340px){.Card-featuredRectangleMedia .Card-mediaContainer{min-height:200px}.Card-featuredRectangleMedia .Card-mediaContainer .Card-imageContainer{height:535px}}.Card-specialReportsRiver{border-bottom:1px dashed hsla(0,0%,55%,.5);border-top:none;font-size:17px;line-height:1.2;margin:0 0 18px;padding:0}@media (min-width:760px){.Card-specialReportsRiver{font-size:18px}}@media (min-width:1020px){.Card-specialReportsRiver{font-size:18px}}@media (min-width:1340px){.Card-specialReportsRiver{font-size:18px}}.Card-specialReportsRiver .Card-mediaContainer{margin-bottom:18px;width:auto}@media (min-width:760px){.Card-specialReportsRiver .Card-mediaContainer{margin-bottom:24px}}.Card-specialReportsRiver .Card-cardFooter,.Card-specialReportsRiver .Card-threeUpCardFooterStyle{font-size:12px;line-height:12px;margin-bottom:9px;margin-top:9px}@media (min-width:360px){.Card-specialReportsRiver{display:flex;line-height:20px}}@media (min-width:760px){.Card-specialReportsRiver{line-height:22px;margin-bottom:24px;max-height:422px}.Card-specialReportsRiver .Card-cardFooter,.Card-specialReportsRiver .Card-threeUpCardFooterStyle{margin-bottom:15px;margin-top:15px}}@media (min-width:1020px){.Card-specialReportsRiver{max-height:428px}.Card-specialReportsRiver .Card-cardFooter,.Card-specialReportsRiver .Card-threeUpCardFooterStyle{margin-bottom:16px;margin-top:16px}}@media (min-width:1340px){.Card-specialReportsRiver{max-height:218px}.Card-specialReportsRiver .Card-cardFooter,.Card-specialReportsRiver .Card-threeUpCardFooterStyle{margin-bottom:18px;margin-top:18px}}@media (min-width:360px){.Card-specialReportsRiver .Card-bylineContainer{display:none}}@media (min-width:760px){.Card-specialReportsRiver .Card-bylineContainer,.Card-specialReportsRiver .Card-bylineContainer .Card-byline,.Card-specialReportsRiver .Card-bylineContainer .Card-threeUpCardFooterStyle .Card-threeUpBylineStyle,.Card-threeUpCardFooterStyle .Card-specialReportsRiver .Card-bylineContainer .Card-threeUpBylineStyle{display:inline}}.Card-specialReportsRiver.Card-specialReportsRiver .Card-imageContainer{position:relative}@media (min-width:360px){.Card-specialReportsRiver.Card-specialReportsRiver .Card-imageContainer{height:100px;margin-right:15px;width:100px}}@media (min-width:760px){.Card-specialReportsRiver.Card-specialReportsRiver .Card-imageContainer{height:116px;margin-right:32px;width:206px}}@media (min-width:1020px){.Card-specialReportsRiver.Card-specialReportsRiver .Card-imageContainer{height:107px;margin-right:30px;width:190px}}@media (min-width:1340px){.Card-specialReportsRiver.Card-specialReportsRiver .Card-imageContainer{height:169px;width:300px}}@media (min-width:760px){.Card-specialReportsRiver.Card-specialReportsRiver .Card-bylineDivider{color:#b2b2b2;font-size:12px;margin:0 -5px 0 5px}}@media (min-width:360px){.Card-specialReportsRiver.Card-specialReportsRiver .Card-titleContainer{min-height:80px}}@media (min-width:760px){.Card-specialReportsRiver.Card-specialReportsRiver .Card-titleContainer{min-height:90px}}@media (min-width:1020px){.Card-specialReportsRiver.Card-specialReportsRiver .Card-titleContainer{min-height:80px}}@media (min-width:1340px){.Card-specialReportsRiver.Card-specialReportsRiver .Card-titleContainer{font-size:22px;line-height:26px;min-height:140px}}.Card-featuredRectangleMediaImagedense{font-size:22px;line-height:26px}.Card-featuredRectangleMediaImagedense .Card-mediaContainer{margin-bottom:15px}.Card-featuredRectangleMediaImagedense div.Card-mediaContainer .Card-rectangleMediaContainer{padding-top:56.25%}@media (min-width:760px){.Card-featuredRectangleMediaImagedense{line-height:28px;max-height:422px}}@media (min-width:1020px){.Card-featuredRectangleMediaImagedense{font-size:28px;line-height:34px;max-height:428px}}@media (min-width:1340px){.Card-featuredRectangleMediaImagedense{font-size:30px;line-height:36px;max-height:520px}.Card-featuredRectangleMediaImagedense .Card-investingClubPill,.Card-featuredRectangleMediaImagedense .Card-proPill,.Card-featuredRectangleMediaImagedense .Card-watchLivePill{margin-top:-.2em;vertical-align:middle}}@media (min-width:760px){.Card-featuredRectangleMediaImagedense.Card-featuredRectangleMedia .Card-imageContainer{height:213px}}@media (min-width:1020px){.Card-featuredRectangleMediaImagedense.Card-featuredRectangleMedia .Card-imageContainer{height:200px}}@media (min-width:1340px){.Card-featuredRectangleMediaImagedense.Card-featuredRectangleMedia .Card-imageContainer{height:310px}}.Card-featuredRectangleMediaPackage{display:block}.Card-featuredSecondaryRectangleMedia{border-top:none;font-size:22px;line-height:1.2;padding-top:0}@media (min-width:760px){.Card-featuredSecondaryRectangleMedia{font-size:22px}}@media (min-width:1020px){.Card-featuredSecondaryRectangleMedia{font-size:22px}}@media (min-width:1340px){.Card-featuredSecondaryRectangleMedia{font-size:24px}}.Card-featuredSecondaryRectangleMedia .Card-mediaContainer{width:auto}@media (min-width:760px){.Card-featuredSecondaryRectangleMedia .Card-mediaContainer{width:100%}}.Card-featuredSecondaryRectangleMediaPackage{display:block}@media (min-width:1340px){.Card-featuredSecondaryRectangleMediaPackage{line-height:28px}}.Card-cardFooter,.Card-threeUpCardFooterStyle{display:flex;flex-flow:row wrap;margin:15px 0}.Card-cardFooter .Card-byline,.Card-threeUpCardFooterStyle .Card-byline,.Card-threeUpCardFooterStyle .Card-threeUpBylineStyle{padding-bottom:3px}@media (max-width:1020px){.Card-cardFooter .Card-byline,.Card-threeUpCardFooterStyle .Card-byline,.Card-threeUpCardFooterStyle .Card-threeUpBylineStyle{display:block}}@media (max-width:759px){.Card-cardFooter .Card-byline,.Card-threeUpCardFooterStyle .Card-byline,.Card-threeUpCardFooterStyle .Card-threeUpBylineStyle{display:inline-block}}@media (min-width:1340px){.Card-cardFooter .Card-byline,.Card-threeUpCardFooterStyle .Card-byline,.Card-threeUpCardFooterStyle .Card-threeUpBylineStyle{padding-bottom:0}}.Card-threeUpCardFooterStyle .Card-threeUpBylineStyle{display:block}.Card-rectangleMedia{border-top:none;font-size:16px;line-height:1.2;margin-top:30px;padding-top:0}@media (min-width:760px){.Card-rectangleMedia{font-size:16px}}@media (min-width:1020px){.Card-rectangleMedia{font-size:16px}}@media (min-width:1340px){.Card-rectangleMedia{font-size:24px;margin-top:0}}.Card-rectangleMedia.Card-standardBreakerCard{margin-top:0;padding-bottom:0}@media (min-width:760px){.Card-rectangleMedia.Card-standardBreakerCard{height:390px;max-height:390px}}@media (min-width:1340px){.Card-rectangleMedia.Card-standardBreakerCard{height:360px;max-height:360px}}.Card-rectangleMedia.Card-standardBreakerCard .Card-title{display:inline;font-size:18px;line-height:1.2}@media (min-width:760px){.Card-rectangleMedia.Card-standardBreakerCard .Card-title{font-size:19px;height:133px;max-height:133px}}@media (min-width:1020px){.Card-rectangleMedia.Card-standardBreakerCard .Card-title{height:190px;max-height:190px}}@media (min-width:1340px){.Card-rectangleMedia.Card-standardBreakerCard .Card-title{font-size:24px;height:150px;max-height:150px}}@media (min-width:760px){.Card-rectangleMedia{margin-top:0}}.Card-rectangleMediaUltraDense .Card-textContent .Card-titleAndFooter .Card-pro{position:relative;top:-25px}@media (max-width:759px){.Card-rectangleMediaUltraDense .Card-textContent .Card-titleAndFooter .Card-pro{display:inline;position:relative;top:-15px}}@media (max-width:1339px){.Card-rectangleMediaUltraDense .Card-textContent .Card-titleAndFooter .Card-cardFooter,.Card-rectangleMediaUltraDense .Card-textContent .Card-titleAndFooter .Card-threeUpCardFooterStyle{position:relative;top:30px}}@media (max-width:1019px){.Card-rectangleMediaUltraDense .Card-textContent .Card-titleAndFooter .Card-cardFooter,.Card-rectangleMediaUltraDense .Card-textContent .Card-titleAndFooter .Card-threeUpCardFooterStyle{position:relative;top:50px}}@media only screen and (min-width:1000px) and (max-width:1020px){.Card-rectangleMediaUltraDense .Card-textContent .Card-titleAndFooter .Card-cardFooter,.Card-rectangleMediaUltraDense .Card-textContent .Card-titleAndFooter .Card-threeUpCardFooterStyle{position:relative;top:35px}}@media (max-width:759px){.Card-rectangleMediaUltraDense .Card-textContent .Card-titleAndFooter .Card-cardFooter,.Card-rectangleMediaUltraDense .Card-textContent .Card-titleAndFooter .Card-threeUpCardFooterStyle{position:relative;top:0}}@media (min-width:760px){.Card-rectangleMediaUltraDense .Card-textContent .Card-titleAndFooter .Card-bylinePosition{position:relative;top:30px}}@media (min-width:1020px){.Card-rectangleMediaUltraDense .Card-textContent .Card-titleAndFooter .Card-bylinePosition{position:relative;top:-15px}}@media (min-width:1340px){.Card-rectangleMediaUltraDense .Card-textContent .Card-titleAndFooter .Card-bylinePosition{position:relative;top:-30px}}@media (min-width:760px){.Card-rectangleMediaUltraDense.Card-standardBreakerCard .Card-title{font-size:24px;line-height:26px}}@media (min-width:1340px){.Card-rectangleMediaUltraDense.Card-standardBreakerCard .Card-title{font-size:24px;line-height:30px}}.Card-rectangleMediaPackage{display:block;font-size:22px;line-height:1.2;margin-top:0}@media (min-width:760px){.Card-rectangleMediaPackage{font-size:16px}}@media (min-width:1020px){.Card-rectangleMediaPackage{font-size:22px}}@media (min-width:1340px){.Card-rectangleMediaPackage{font-size:24px}}.Card-rectangleMediaHalf{float:left;font-size:16px;line-height:1.2;padding-right:15px;width:50%}@media (min-width:760px){.Card-rectangleMediaHalf{font-size:16px}}@media (min-width:1020px){.Card-rectangleMediaHalf{font-size:16px}}@media (min-width:1340px){.Card-rectangleMediaHalf{font-size:24px}}.Card-rectangleMediaHalf .Card-byline,.Card-rectangleMediaHalf .Card-threeUpCardFooterStyle .Card-threeUpBylineStyle,.Card-rectangleMediaHalf .Card-time,.Card-threeUpCardFooterStyle .Card-rectangleMediaHalf .Card-threeUpBylineStyle{display:block}@media (min-width:760px){.Card-rectangleMediaHalf{border-top:none;line-height:20px;padding-top:0}.Card-rectangleMediaHalf .Card-byline,.Card-rectangleMediaHalf .Card-threeUpCardFooterStyle .Card-threeUpBylineStyle,.Card-rectangleMediaHalf .Card-time,.Card-threeUpCardFooterStyle .Card-rectangleMediaHalf .Card-threeUpBylineStyle{display:inline-block}}@media (min-width:1020px){.Card-rectangleMediaHalf{line-height:1.2}}.Card-rectangleMediaHalf:last-of-type{padding-left:15px;padding-right:0}.Card-rectangleMediaHalfNoBorder{border-top:none;float:left;font-size:14px;line-height:1.2;padding-top:0;width:calc(50% - 15px)}@media (min-width:760px){.Card-rectangleMediaHalfNoBorder{font-size:14px}}@media (min-width:1020px){.Card-rectangleMediaHalfNoBorder{font-size:14px}}@media (min-width:1340px){.Card-rectangleMediaHalfNoBorder{font-size:14px}}.Card-rectangleMediaHalfNoBorder .Card-byline,.Card-rectangleMediaHalfNoBorder .Card-threeUpCardFooterStyle .Card-threeUpBylineStyle,.Card-rectangleMediaHalfNoBorder .Card-time,.Card-threeUpCardFooterStyle .Card-rectangleMediaHalfNoBorder .Card-threeUpBylineStyle{display:block}@media (min-width:760px){.Card-rectangleMediaHalfNoBorder .Card-byline,.Card-rectangleMediaHalfNoBorder .Card-threeUpCardFooterStyle .Card-threeUpBylineStyle,.Card-rectangleMediaHalfNoBorder .Card-time,.Card-threeUpCardFooterStyle .Card-rectangleMediaHalfNoBorder .Card-threeUpBylineStyle{display:inline-block}}@media only screen and (max-width:759px){.Card-imageContainer{position:relative}}.Card-leftRectangleToTopMedia{border-top:none;font-size:19px;line-height:1.2;padding-top:0}@media (min-width:760px){.Card-leftRectangleToTopMedia{font-size:18px}}@media (min-width:1020px){.Card-leftRectangleToTopMedia{font-size:18px}}@media (min-width:1340px){.Card-leftRectangleToTopMedia{font-size:24px}}@media (min-width:760px){.Card-leftRectangleToTopMedia{display:flex;flex-direction:row;flex-grow:1}}.Card-leftRectangleToTopMedia .Card-mediaContainer{position:relative}@media (min-width:760px){.Card-leftRectangleToTopMedia .Card-mediaContainer{flex:1 1 0;margin-bottom:0;margin-right:30px}.Card-leftRectangleToTopMedia .Card-textContent{flex:1 1 0}}.Card-rectangleToRectangleMediaHalf{border-top:none;float:left;font-size:16px;line-height:1.2;margin-top:30px;padding-right:15px;padding-top:0;width:50%}@media (min-width:760px){.Card-rectangleToRectangleMediaHalf{font-size:16px}}@media (min-width:1020px){.Card-rectangleToRectangleMediaHalf{font-size:16px}}@media (min-width:1340px){.Card-rectangleToRectangleMediaHalf{font-size:24px}}@media (min-width:760px){.Card-rectangleToRectangleMediaHalf{float:none;margin-top:0;padding-right:0;width:100%}}.Card-recToRecMediaHalf:last-of-type,.Card-rectangleToRectangleMediaHalf:last-of-type{padding-left:15px;padding-right:0}@media (min-width:760px){.Card-recToRecMediaHalf:last-of-type,.Card-rectangleToRectangleMediaHalf:last-of-type{padding-left:0}}.Card-recToRecMediaHalf{border-top:none;float:left;font-size:16px;line-height:1.2;margin-top:30px;padding-right:15px;padding-top:0;width:50%}@media (min-width:760px){.Card-recToRecMediaHalf{font-size:16px}}@media (min-width:1020px){.Card-recToRecMediaHalf{font-size:16px}}@media (min-width:1340px){.Card-recToRecMediaHalf{font-size:18px}}@media (min-width:760px){.Card-recToRecMediaHalf{float:none;margin-top:0;padding-right:0;width:100%}}.Card-squareMedia{border-top:none;display:flex;flex-direction:row;font-size:16px;line-height:1.2;padding-top:0}@media (min-width:760px){.Card-squareMedia{font-size:16px}}@media (min-width:1020px){.Card-squareMedia{font-size:16px}}@media (min-width:1340px){.Card-squareMedia{font-size:24px}}.Card-squareMedia .Card-byline,.Card-squareMedia .Card-threeUpCardFooterStyle .Card-threeUpBylineStyle,.Card-squareMedia .Card-time,.Card-threeUpCardFooterStyle .Card-squareMedia .Card-threeUpBylineStyle{display:block}.Card-squareMedia .Card-mediaContainer{margin-bottom:0;margin-right:30px;width:50%}.Card-squareMedia .Card-textContent{width:50%}@media (min-width:760px){.Card-squareMedia{border-top:none;flex-direction:column;margin-top:0}.Card-squareMedia .Card-mediaContainer{margin-bottom:30px;margin-right:0;width:100%}.Card-squareMedia .Card-textContent{width:100%}.Card-squareMedia .Card-byline,.Card-squareMedia .Card-threeUpCardFooterStyle .Card-threeUpBylineStyle,.Card-squareMedia .Card-time,.Card-threeUpCardFooterStyle .Card-squareMedia .Card-threeUpBylineStyle{display:block}}@media (min-width:360px) and (max-width:759px){.Card-squareMediaImageDense{border-bottom:1px dashed #8b8b8b;border-top:1px dashed #8b8b8b;padding-bottom:15px;padding-top:15px}.Card-squareMediaImageDense .Card-byline,.Card-squareMediaImageDense .Card-threeUpCardFooterStyle .Card-threeUpBylineStyle,.Card-squareMediaImageDense .Card-time,.Card-threeUpCardFooterStyle .Card-squareMediaImageDense .Card-threeUpBylineStyle{display:inline-block}.Card-squareMediaImageDense .Card-mediaContainer{display:none}.Card-squareMediaImageDense .Card-textContent{width:100%}}@media (min-width:760px){.Card-squareMediaImageDense{font-size:20px;max-height:402px}.Card-squareMediaImageDense .Card-mediaContainer{margin-bottom:18px}.Card-squareMediaImageDense .Card-mediaContainer .Card-imageContainer{height:213px}}@media (min-width:1020px){.Card-squareMediaImageDense{font-size:20px;max-height:418px}.Card-squareMediaImageDense .Card-mediaContainer{margin-bottom:16px}.Card-squareMediaImageDense .Card-mediaContainer .Card-imageContainer{height:200px}}@media only screen and (min-width:1180px) and (max-width:1339px){.Card-squareMediaImageDense .Card-mediaContainer .Card-imageContainer{height:200px}}@media (min-width:1340px){.Card-squareMediaImageDense{font-size:24px;line-height:28px;max-height:510px}.Card-squareMediaImageDense .Card-mediaContainer{margin-bottom:17px}.Card-squareMediaImageDense .Card-mediaContainer .Card-imageContainer{height:310px}}.Card-leftSquareMedia{display:flex;font-size:16px;line-height:1.2}@media (min-width:760px){.Card-leftSquareMedia{font-size:16px}}@media (min-width:1020px){.Card-leftSquareMedia{font-size:16px}}@media (min-width:1340px){.Card-leftSquareMedia{font-size:24px}}.Card-leftSquareMedia .Card-byline,.Card-leftSquareMedia .Card-threeUpCardFooterStyle .Card-threeUpBylineStyle,.Card-leftSquareMedia .Card-time,.Card-threeUpCardFooterStyle .Card-leftSquareMedia .Card-threeUpBylineStyle{display:block}.Card-leftSquareMedia .Card-mediaContainer{margin-bottom:0;width:30%}.Card-leftSquareMedia .Card-textContent{display:flex;flex-direction:column;padding-left:30px;width:70%}.Card-leftSquareMedia .Card-titleAndFooter{flex-grow:1}@media (min-width:760px){.Card-leftSquareMedia .Card-byline,.Card-leftSquareMedia .Card-threeUpCardFooterStyle .Card-threeUpBylineStyle,.Card-leftSquareMedia .Card-time,.Card-threeUpCardFooterStyle .Card-leftSquareMedia .Card-threeUpBylineStyle{display:inline-block}}.Card-rectangleToLeftSquareMedia{border-top:none;display:flex;flex-direction:row;font-size:17px;font-weight:600;line-height:1.2;line-height:1.3;margin-top:30px;padding-top:0}@media (min-width:760px){.Card-rectangleToLeftSquareMedia{font-size:17px}}@media (min-width:1020px){.Card-rectangleToLeftSquareMedia{font-size:16px}}@media (min-width:1340px){.Card-rectangleToLeftSquareMedia{font-size:18px}}.Card-rectangleToLeftSquareMedia .Card-mediaContainer{height:103px;margin-bottom:0;margin-right:30px;min-width:103px;width:103px}@media (min-width:760px){.Card-rectangleToLeftSquareMedia .Card-mediaContainer{height:auto}}.Card-rectangleToLeftSquareMedia .Card-textContent{display:flex;flex-direction:column;margin-top:-6px}.Card-rectangleToLeftSquareMedia .Card-titleAndFooter{flex-grow:1}@media (min-width:760px){.Card-rectangleToLeftSquareMedia{border-bottom:none;flex-direction:column;margin-top:0}.Card-rectangleToLeftSquareMedia .Card-mediaContainer{margin-bottom:10px;margin-right:0;width:100%}}@media (min-width:1340px){.Card-rectangleToLeftSquareMedia{line-height:1.2}}.Card-rectangleToLeftSquareMediaUltraDense{font-weight:600}@media (min-width:360px) and (max-width:759px){.Card-rectangleToLeftSquareMediaUltraDense .Card-mediaContainer{display:none}.Card-rectangleToLeftSquareMediaUltraDense .Card-threeUpCardFooterStyle{align-items:baseline;flex-direction:row}}@media (min-width:760px){.Card-rectangleToLeftSquareMediaUltraDense{font-size:16px;line-height:22px;padding:0}.Card-rectangleToLeftSquareMediaUltraDense .Card-mediaContainerInner{height:103px}}@media (min-width:1020px){.Card-rectangleToLeftSquareMediaUltraDense{font-size:16px;line-height:22px}.Card-rectangleToLeftSquareMediaUltraDense .Card-mediaContainerInner{height:95px}}@media (min-width:1340px){.Card-rectangleToLeftSquareMediaUltraDense{font-size:18px;line-height:24px}.Card-rectangleToLeftSquareMediaUltraDense .Card-mediaContainerInner{height:150px}}.Card-featuredSquareToRectangleMedia,.Card-squareLeadMediaLeft{border-bottom:1px dashed hsla(0,0%,55%,.5);border-top:none;font-size:22px;line-height:1.2;padding-top:0}@media (min-width:760px){.Card-featuredSquareToRectangleMedia,.Card-squareLeadMediaLeft{font-size:22px}}@media (min-width:1020px){.Card-featuredSquareToRectangleMedia,.Card-squareLeadMediaLeft{font-size:26px}}@media (min-width:1340px){.Card-featuredSquareToRectangleMedia,.Card-squareLeadMediaLeft{font-size:30px}.Card-featuredSquareToRectangleMedia .Card-investingClubPill,.Card-featuredSquareToRectangleMedia .Card-proPill,.Card-featuredSquareToRectangleMedia .Card-watchLivePill,.Card-squareLeadMediaLeft .Card-investingClubPill,.Card-squareLeadMediaLeft .Card-proPill,.Card-squareLeadMediaLeft .Card-watchLivePill{margin-top:-.2em;vertical-align:middle}}.Card-featuredSquareToRectangleMedia div.Card-mediaContainer .Card-squareMediaContainer,.Card-squareLeadMediaLeft div.Card-mediaContainer .Card-squareMediaContainer{padding-top:56.25%}.Card-featuredSquareToRectangleMedia .Card-mediaContainer,.Card-squareLeadMediaLeft .Card-mediaContainer{margin:0 -20px 20px;width:auto}@media (min-width:760px){.Card-featuredSquareToRectangleMedia,.Card-squareLeadMediaLeft{border:none}.Card-featuredSquareToRectangleMedia .Card-mediaContainer,.Card-squareLeadMediaLeft .Card-mediaContainer{margin:0 0 20px}}.Card-squareLeadMediaLeft .Card-mediaContainer{margin:0 0 10px}.Card-squareToRectangleMediaPackage{border-top:0;font-size:22px;line-height:1.2;padding-top:0}@media (min-width:760px){.Card-squareToRectangleMediaPackage{font-size:16px}}@media (min-width:1020px){.Card-squareToRectangleMediaPackage{font-size:22px}}@media (min-width:1340px){.Card-squareToRectangleMediaPackage{font-size:24px}}.Card-placeholder{background-color:#d7e1e4}div:focus{outline:none}.Card-mediaContainerInner{height:auto;width:100%}.Card-eyebrow{color:#005594;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:14px;font-weight:600}@media (max-width:759px){.Card-eyebrow{font-size:13px}}.Card-eyebrowContainer{letter-spacing:.8px;padding:0 0 10px;text-transform:uppercase}@media (min-width:760px){.Card-eyebrowContainer{padding:10px 0}}.Card-titleOnlyFourUp{padding-top:11px;width:100%}@media (min-width:760px){.Card-titleOnlyFourUp{padding-top:9px;width:353px}}@media (min-width:1020px){.Card-titleOnlyFourUp{padding:11px 0;width:219px}}@media (min-width:1340px){.Card-titleOnlyFourUp{height:135px;padding:15px 0;width:300px}}.Card-titleOnlyFourUp.Card-cnbcvideo .Card-title div:after{background-image:url(https://static-redesign.cnbcfm.com/dist/2b9683da8ee9d11e69bc.svg);background-repeat:no-repeat;content:"";display:inline-block;height:15px;margin-left:4px;position:relative;top:2px;width:18px}.Card-titleOnlyFourUp.Card-webresource .Card-title div:after{background-image:url(https://static-redesign.cnbcfm.com/dist/387a9977e4e000be15d0.svg);background-repeat:no-repeat;content:"";display:inline-block;height:11px;margin-left:4px;width:18px}.Card-titleOnlyFourUp .Card-textContent .Card-titleAndFooter .Card-pro{line-height:1;margin:0;top:-2px}@media (min-width:1020px){.Card-titleOnlyFourUp .Card-textContent .Card-titleAndFooter .Card-pro{height:99px}}@media (min-width:1340px){.Card-titleOnlyFourUp .Card-textContent .Card-titleAndFooter .Card-pro{height:92px}}.Card-titleOnlyFourUp .Card-textContent .Card-titleAndFooter .Card-pro .Card-proSmall{display:block;height:19px;margin:0 0 7px;position:unset;width:35px}@media (min-width:760px){.Card-titleOnlyFourUp .Card-textContent .Card-titleAndFooter .Card-pro .Card-proSmall{margin:0 0 6px}}@media (min-width:1020px){.Card-titleOnlyFourUp .Card-textContent .Card-titleAndFooter .Card-pro .Card-proSmall{margin:0 0 6px}}@media (min-width:1340px){.Card-titleOnlyFourUp .Card-textContent .Card-titleAndFooter .Card-pro .Card-proSmall{height:23px;margin:0 0 2px}}.Card-titleOnlyFourUp .Card-textContent .Card-titleAndFooter .Card-pro .Card-proIcon{color:#3cb878;line-height:17px;position:relative}.Card-titleOnlyFourUp .Card-textContent .Card-titleAndFooter .Card-eyebrowContainer{line-height:1;margin:0 0 7px;padding:0}@media (min-width:760px){.Card-titleOnlyFourUp .Card-textContent .Card-titleAndFooter .Card-eyebrowContainer{margin:0 0 6px}}@media (min-width:1020px){.Card-titleOnlyFourUp .Card-textContent .Card-titleAndFooter .Card-eyebrowContainer{height:18px;margin:0 0 5px}}.Card-titleOnlyFourUp .Card-textContent .Card-titleAndFooter .Card-eyebrowContainer .Card-eyebrow{color:#002f6c;font-size:12px;line-height:18px;overflow-y:hidden}@media (min-width:1020px){.Card-titleOnlyFourUp .Card-textContent .Card-titleAndFooter .Card-eyebrowContainer .Card-eyebrow{line-height:16px}}@media (min-width:1340px){.Card-titleOnlyFourUp .Card-textContent .Card-titleAndFooter .Card-eyebrowContainer .Card-eyebrow{line-height:18px}}.Card-titleOnlyFourUp .Card-textContent .Card-titleAndFooter .Card-eyebrowContainer .Card-eyebrow:hover{color:#fcb700}.Card-titleOnlyFourUp .Card-textContent .Card-titleAndFooter .Card-titleContainer{line-height:1}@media (min-width:1020px){.Card-titleOnlyFourUp .Card-textContent .Card-titleAndFooter .Card-titleContainer{height:73px}}@media (min-width:1340px){.Card-titleOnlyFourUp .Card-textContent .Card-titleAndFooter .Card-titleContainer{height:69px}}.Card-titleOnlyFourUp .Card-textContent .Card-titleAndFooter .Card-title{color:#171717;font-size:17px;font-weight:600;line-height:21px;overflow:hidden;text-align:left}@media (min-width:760px){.Card-titleOnlyFourUp .Card-textContent .Card-titleAndFooter .Card-title{line-height:22px}}@media (min-width:1020px){.Card-titleOnlyFourUp .Card-textContent .Card-titleAndFooter .Card-title{font-size:16px;line-height:18px;text-align:left}}@media (min-width:1340px){.Card-titleOnlyFourUp .Card-textContent .Card-titleAndFooter .Card-title{font-size:18px;line-height:22px}}.Card-titleOnlyFourUp .Card-textContent .Card-titleAndFooter .Card-cardFooter,.Card-titleOnlyFourUp .Card-textContent .Card-titleAndFooter .Card-threeUpCardFooterStyle{margin:7px 0 0}@media (min-width:760px){.Card-titleOnlyFourUp .Card-textContent .Card-titleAndFooter .Card-cardFooter,.Card-titleOnlyFourUp .Card-textContent .Card-titleAndFooter .Card-threeUpCardFooterStyle{margin:11px 0 0}}@media (min-width:1020px){.Card-titleOnlyFourUp .Card-textContent .Card-titleAndFooter .Card-cardFooter,.Card-titleOnlyFourUp .Card-textContent .Card-titleAndFooter .Card-threeUpCardFooterStyle{margin:3px 0 0}}@media (min-width:1340px){.Card-titleOnlyFourUp .Card-textContent .Card-titleAndFooter .Card-cardFooter,.Card-titleOnlyFourUp .Card-textContent .Card-titleAndFooter .Card-threeUpCardFooterStyle{margin:9px 0 0}}.Card-threeUpCardFooterStyle .Card-titleOnlyFourUp .Card-textContent .Card-titleAndFooter .Card-cardFooter .Card-threeUpBylineStyle,.Card-titleOnlyFourUp .Card-textContent .Card-titleAndFooter .Card-cardFooter .Card-byline,.Card-titleOnlyFourUp .Card-textContent .Card-titleAndFooter .Card-threeUpCardFooterStyle .Card-byline,.Card-titleOnlyFourUp .Card-textContent .Card-titleAndFooter .Card-threeUpCardFooterStyle .Card-threeUpBylineStyle{margin:0;padding:0}.Card-titleOnlyFourUp .Card-textContent .Card-titleAndFooter .Card-cardFooter .Card-time,.Card-titleOnlyFourUp .Card-textContent .Card-titleAndFooter .Card-threeUpCardFooterStyle .Card-time{font-size:11px}.Card-threeUpStackRectangleSquareMedia .Card-textContent{height:auto!important}.Card-threeUpStackRectangleSquareMedia .Card-textContent .Card-titleAndFooter .Card-description{font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:16px;line-height:19px}.Card-threeUpRectangleSquareMediaDescription,.Card-threeUpStackRectangleSquareMedia{display:block;position:relative;width:100%}@media (min-width:360px) and (max-width:759px){.Card-threeUpRectangleSquareMediaDescription,.Card-threeUpStackRectangleSquareMedia{border-bottom:1px dashed hsla(0,0%,55%,.5);margin-top:0}.Card-threeUpRectangleSquareMediaDescription:nth-child(n+2),.Card-threeUpStackRectangleSquareMedia:nth-child(n+2){border-bottom:none;width:50%}.Card-threeUpRectangleSquareMediaDescription:nth-child(n+2) .Card-mediaContainer,.Card-threeUpStackRectangleSquareMedia:nth-child(n+2) .Card-mediaContainer{height:72px;width:145px}}@media (min-width:360px) and (max-width:759px) and (min-width:360px) and (max-width:759px){.Card-threeUpRectangleSquareMediaDescription:nth-child(n+2) .Card-mediaContainer,.Card-threeUpStackRectangleSquareMedia:nth-child(n+2) .Card-mediaContainer{margin:0 auto 10px}}@media (min-width:360px) and (max-width:759px){.Card-threeUpRectangleSquareMediaDescription:nth-of-type(2),.Card-threeUpStackRectangleSquareMedia:nth-of-type(2){border-right:1px dashed hsla(0,0%,55%,.5);border-top:none;margin:14px 0 0;padding:0 15px 0 0}.Card-threeUpRectangleSquareMediaDescription:nth-of-type(3),.Card-threeUpStackRectangleSquareMedia:nth-of-type(3){border-top:none;margin:14px 0 0;padding:0 0 0 15px}.Card-threeUpRectangleSquareMediaDescription .Card-textContent .Card-titleAndFooter .Card-eyebrowContainer,.Card-threeUpStackRectangleSquareMedia .Card-textContent .Card-titleAndFooter .Card-eyebrowContainer{margin:0 0 7px;padding:0}.Card-threeUpRectangleSquareMediaDescription .Card-textContent .Card-titleAndFooter .Card-eyebrowContainer .Card-eyebrow,.Card-threeUpStackRectangleSquareMedia .Card-textContent .Card-titleAndFooter .Card-eyebrowContainer .Card-eyebrow{color:#002f6c;display:block;font-size:12px;font-weight:600;letter-spacing:.8px;line-height:18px}.Card-threeUpCardFooterStyle .Card-threeUpRectangleSquareMediaDescription .Card-textContent .Card-titleAndFooter .Card-cardFooter .Card-threeUpBylineStyle,.Card-threeUpCardFooterStyle .Card-threeUpStackRectangleSquareMedia .Card-textContent .Card-titleAndFooter .Card-cardFooter .Card-threeUpBylineStyle,.Card-threeUpRectangleSquareMediaDescription .Card-textContent .Card-titleAndFooter .Card-cardFooter .Card-byline,.Card-threeUpRectangleSquareMediaDescription .Card-textContent .Card-titleAndFooter .Card-threeUpCardFooterStyle .Card-byline,.Card-threeUpRectangleSquareMediaDescription .Card-textContent .Card-titleAndFooter .Card-threeUpCardFooterStyle .Card-threeUpBylineStyle,.Card-threeUpStackRectangleSquareMedia .Card-textContent .Card-titleAndFooter .Card-cardFooter .Card-byline,.Card-threeUpStackRectangleSquareMedia .Card-textContent .Card-titleAndFooter .Card-threeUpCardFooterStyle .Card-byline,.Card-threeUpStackRectangleSquareMedia .Card-textContent .Card-titleAndFooter .Card-threeUpCardFooterStyle .Card-threeUpBylineStyle{margin:0}.Card-threeUpRectangleSquareMediaDescription .Card-pro,.Card-threeUpStackRectangleSquareMedia .Card-pro{margin:0;position:unset}.Card-threeUpRectangleSquareMediaDescription .Card-proSmall,.Card-threeUpStackRectangleSquareMedia .Card-proSmall{bottom:0;display:block;height:19px;margin:0 0 5px;position:relative;top:0;width:35px}.Card-threeUpRectangleSquareMediaDescription .Card-proIcon,.Card-threeUpStackRectangleSquareMedia .Card-proIcon{color:#3cb878;position:absolute;top:-5px}.Card-threeUpRectangleSquareMediaDescription:nth-child(n+2) .Card-mediaContainerInner,.Card-threeUpStackRectangleSquareMedia:nth-child(n+2) .Card-mediaContainerInner{height:72px}}@media (min-width:760px){.Card-threeUpRectangleSquareMediaDescription,.Card-threeUpStackRectangleSquareMedia{border-bottom:none;margin-right:30px;padding:0 0 10px;width:calc(33.33333% - 20px)}.Card-threeUpRectangleSquareMediaDescription:nth-of-type(2n),.Card-threeUpStackRectangleSquareMedia:nth-of-type(2n){border-right:none}.Card-threeUpRectangleSquareMediaDescription:nth-child(3n),.Card-threeUpStackRectangleSquareMedia:nth-child(3n){margin-right:0}.Card-threeUpRectangleSquareMediaDescription .Card-mediaContainerInner,.Card-threeUpStackRectangleSquareMedia .Card-mediaContainerInner{height:106px}}@media (min-width:1020px){.Card-threeUpRectangleSquareMediaDescription,.Card-threeUpRectangleSquareMediaDescription:nth-of-type(n+2),.Card-threeUpStackRectangleSquareMedia,.Card-threeUpStackRectangleSquareMedia:nth-of-type(n+2){width:190px}.Card-threeUpRectangleSquareMediaDescription .Card-mediaContainerInner,.Card-threeUpStackRectangleSquareMedia .Card-mediaContainerInner{height:95px}}@media (min-width:1340px){.Card-threeUpRectangleSquareMediaDescription,.Card-threeUpRectangleSquareMediaDescription:nth-of-type(n+2),.Card-threeUpStackRectangleSquareMedia,.Card-threeUpStackRectangleSquareMedia:nth-of-type(n+2){width:300px}.Card-threeUpRectangleSquareMediaDescription .Card-mediaContainerInner,.Card-threeUpStackRectangleSquareMedia .Card-mediaContainerInner{height:169px}}@media (min-width:760px){.Card-threeUpRectangleSquareMediaDescription.Card-webresource .Card-textContent,.Card-threeUpStackRectangleSquareMedia.Card-webresource .Card-textContent{height:119px}}@media (min-width:1020px){.Card-threeUpRectangleSquareMediaDescription.Card-webresource .Card-textContent,.Card-threeUpStackRectangleSquareMedia.Card-webresource .Card-textContent{height:100px}}.Card-threeUpRectangleSquareMediaDescription.Card-webresource .Card-title div:after,.Card-threeUpStackRectangleSquareMedia.Card-webresource .Card-title div:after{background-image:url(https://static-redesign.cnbcfm.com/dist/387a9977e4e000be15d0.svg);background-repeat:no-repeat;content:"";display:inline-block;height:11px;margin-left:4px;width:18px}.Card-threeUpRectangleSquareMediaDescription .Card-mediaContainer,.Card-threeUpStackRectangleSquareMedia .Card-mediaContainer{height:auto;margin:0 0 15px;width:100%}@media (min-width:1340px){.Card-threeUpRectangleSquareMediaDescription .Card-mediaContainer,.Card-threeUpStackRectangleSquareMedia .Card-mediaContainer{height:169px}}.Card-threeUpRectangleSquareMediaDescription .Card-textContent,.Card-threeUpStackRectangleSquareMedia .Card-textContent{display:block;margin:0}@media (min-width:760px){.Card-threeUpRectangleSquareMediaDescription .Card-textContent,.Card-threeUpStackRectangleSquareMedia .Card-textContent{height:146px}}@media (min-width:1020px){.Card-threeUpRectangleSquareMediaDescription .Card-textContent,.Card-threeUpStackRectangleSquareMedia .Card-textContent{height:127px}}.Card-threeUpRectangleSquareMediaDescription .Card-textContent .Card-titleAndFooter,.Card-threeUpStackRectangleSquareMedia .Card-textContent .Card-titleAndFooter{display:block}.Card-threeUpRectangleSquareMediaDescription .Card-textContent .Card-titleAndFooter .Card-pro,.Card-threeUpStackRectangleSquareMedia .Card-textContent .Card-titleAndFooter .Card-pro{margin:0;position:unset}.Card-threeUpRectangleSquareMediaDescription .Card-textContent .Card-titleAndFooter .Card-watchLivePill+.Card-proSmall,.Card-threeUpStackRectangleSquareMedia .Card-textContent .Card-titleAndFooter .Card-watchLivePill+.Card-proSmall{display:inline-block;margin-right:6px;top:3px}.Card-threeUpRectangleSquareMediaDescription .Card-textContent .Card-titleAndFooter .Card-proSmall,.Card-threeUpStackRectangleSquareMedia .Card-textContent .Card-titleAndFooter .Card-proSmall{bottom:0;display:block;height:19px;margin:0 0 7px;position:relative;top:0;width:35px}@media (min-width:760px){.Card-threeUpRectangleSquareMediaDescription .Card-textContent .Card-titleAndFooter .Card-proSmall,.Card-threeUpStackRectangleSquareMedia .Card-textContent .Card-titleAndFooter .Card-proSmall{margin:0 0 3px}}@media (min-width:1020px){.Card-threeUpRectangleSquareMediaDescription .Card-textContent .Card-titleAndFooter .Card-proSmall,.Card-threeUpStackRectangleSquareMedia .Card-textContent .Card-titleAndFooter .Card-proSmall{height:17px;margin:0}}@media (min-width:760px){.Card-threeUpRectangleSquareMediaDescription .Card-textContent .Card-titleAndFooter .Card-proIcon,.Card-threeUpStackRectangleSquareMedia .Card-textContent .Card-titleAndFooter .Card-proIcon{line-height:.2}}.Card-threeUpRectangleSquareMediaDescription .Card-textContent .Card-titleAndFooter .Card-eyebrowContainer,.Card-threeUpStackRectangleSquareMedia .Card-textContent .Card-titleAndFooter .Card-eyebrowContainer{height:12px;padding:0}@media (min-width:760px){.Card-threeUpRectangleSquareMediaDescription .Card-textContent .Card-titleAndFooter .Card-eyebrowContainer,.Card-threeUpStackRectangleSquareMedia .Card-textContent .Card-titleAndFooter .Card-eyebrowContainer{margin:0 0 10px}}@media (min-width:1020px){.Card-threeUpRectangleSquareMediaDescription .Card-textContent .Card-titleAndFooter .Card-eyebrowContainer,.Card-threeUpStackRectangleSquareMedia .Card-textContent .Card-titleAndFooter .Card-eyebrowContainer{margin:0 0 5px}}.Card-threeUpRectangleSquareMediaDescription .Card-textContent .Card-titleAndFooter .Card-eyebrowContainer .Card-eyebrow,.Card-threeUpStackRectangleSquareMedia .Card-textContent .Card-titleAndFooter .Card-eyebrowContainer .Card-eyebrow{color:#002f6c;display:block;font-size:12px;line-height:12px;overflow-y:hidden}.Card-threeUpRectangleSquareMediaDescription .Card-textContent .Card-titleAndFooter .Card-eyebrowContainer .Card-eyebrow:hover,.Card-threeUpStackRectangleSquareMedia .Card-textContent .Card-titleAndFooter .Card-eyebrowContainer .Card-eyebrow:hover{color:#fcb700}.Card-threeUpRectangleSquareMediaDescription .Card-textContent .Card-titleAndFooter .Card-eyebrowContainer .Card-eyebrow div,.Card-threeUpStackRectangleSquareMedia .Card-textContent .Card-titleAndFooter .Card-eyebrowContainer .Card-eyebrow div{height:12px;line-height:12px}.Card-threeUpRectangleSquareMediaDescription .Card-textContent .Card-titleAndFooter .Card-title,.Card-threeUpStackRectangleSquareMedia .Card-textContent .Card-titleAndFooter .Card-title{display:block;line-height:18px;margin:0 0 10px;max-height:80px;overflow:hidden;text-align:left}@media (min-width:760px){.Card-threeUpRectangleSquareMediaDescription .Card-textContent .Card-titleAndFooter .Card-title,.Card-threeUpStackRectangleSquareMedia .Card-textContent .Card-titleAndFooter .Card-title{line-height:18px;max-height:80px}}@media (min-width:1020px){.Card-threeUpRectangleSquareMediaDescription .Card-textContent .Card-titleAndFooter .Card-title,.Card-threeUpStackRectangleSquareMedia .Card-textContent .Card-titleAndFooter .Card-title{font-size:16px;font-weight:600;line-height:18px;max-height:80px}}@media (min-width:1340px){.Card-threeUpRectangleSquareMediaDescription .Card-textContent .Card-titleAndFooter .Card-title,.Card-threeUpStackRectangleSquareMedia .Card-textContent .Card-titleAndFooter .Card-title{font-size:18px;line-height:22px;max-height:96px}}.Card-threeUpRectangleSquareMediaDescription .Card-textContent .Card-titleAndFooter .Card-pro>.Card-title,.Card-threeUpStackRectangleSquareMedia .Card-textContent .Card-titleAndFooter .Card-pro>.Card-title{line-height:18px;max-height:100px}@media (min-width:760px){.Card-threeUpRectangleSquareMediaDescription .Card-textContent .Card-titleAndFooter .Card-pro>.Card-title,.Card-threeUpStackRectangleSquareMedia .Card-textContent .Card-titleAndFooter .Card-pro>.Card-title{line-height:18px;max-height:100px}}@media (min-width:1020px){.Card-threeUpRectangleSquareMediaDescription .Card-textContent .Card-titleAndFooter .Card-pro>.Card-title,.Card-threeUpStackRectangleSquareMedia .Card-textContent .Card-titleAndFooter .Card-pro>.Card-title{line-height:18px;max-height:100px}}@media (min-width:1340px){.Card-threeUpRectangleSquareMediaDescription .Card-textContent .Card-titleAndFooter .Card-pro>.Card-title,.Card-threeUpStackRectangleSquareMedia .Card-textContent .Card-titleAndFooter .Card-pro>.Card-title{line-height:22px;max-height:96px}}.Card-threeUpRectangleSquareMediaDescription .Card-textContent .Card-titleAndFooter .Card-cardFooter,.Card-threeUpRectangleSquareMediaDescription .Card-textContent .Card-titleAndFooter .Card-threeUpCardFooterStyle,.Card-threeUpStackRectangleSquareMedia .Card-textContent .Card-titleAndFooter .Card-cardFooter,.Card-threeUpStackRectangleSquareMedia .Card-textContent .Card-titleAndFooter .Card-threeUpCardFooterStyle{display:block;line-height:11px;margin:0}.Card-threeUpCardFooterStyle .Card-threeUpRectangleSquareMediaDescription .Card-textContent .Card-titleAndFooter .Card-cardFooter .Card-threeUpBylineStyle,.Card-threeUpCardFooterStyle .Card-threeUpStackRectangleSquareMedia .Card-textContent .Card-titleAndFooter .Card-cardFooter .Card-threeUpBylineStyle,.Card-threeUpRectangleSquareMediaDescription .Card-textContent .Card-titleAndFooter .Card-cardFooter .Card-byline,.Card-threeUpRectangleSquareMediaDescription .Card-textContent .Card-titleAndFooter .Card-threeUpCardFooterStyle .Card-byline,.Card-threeUpRectangleSquareMediaDescription .Card-textContent .Card-titleAndFooter .Card-threeUpCardFooterStyle .Card-threeUpBylineStyle,.Card-threeUpStackRectangleSquareMedia .Card-textContent .Card-titleAndFooter .Card-cardFooter .Card-byline,.Card-threeUpStackRectangleSquareMedia .Card-textContent .Card-titleAndFooter .Card-threeUpCardFooterStyle .Card-byline,.Card-threeUpStackRectangleSquareMedia .Card-textContent .Card-titleAndFooter .Card-threeUpCardFooterStyle .Card-threeUpBylineStyle{display:none}.Card-threeUpRectangleSquareMediaDescription .Card-textContent .Card-titleAndFooter .Card-cardFooter .Card-time,.Card-threeUpRectangleSquareMediaDescription .Card-textContent .Card-titleAndFooter .Card-threeUpCardFooterStyle .Card-time,.Card-threeUpStackRectangleSquareMedia .Card-textContent .Card-titleAndFooter .Card-cardFooter .Card-time,.Card-threeUpStackRectangleSquareMedia .Card-textContent .Card-titleAndFooter .Card-threeUpCardFooterStyle .Card-time{font-size:11px;letter-spacing:.1em}@media (min-width:760px){.Card-threeUpRectangleSquareMediaDescription{width:calc(100% - 60px)}}@media (min-width:1020px){.Card-threeUpRectangleSquareMediaDescription{width:190px}}@media (min-width:1340px){.Card-threeUpRectangleSquareMediaDescription{width:300px}}.Card-threeUpRectangleSquareMediaDescription .Card-textContent,.Card-threeUpRectangleSquareMediaDescription .Card-titleContainer a{height:auto!important}.Card-titleOnlyThreeUpStack{border-top:1px dashed hsla(0,0%,55%,.5);margin:0;padding:15px 0;width:100%}@media (min-width:360px) and (max-width:759px){.Card-titleOnlyThreeUpStack:nth-of-type(4n){margin:14px 0 0}.Card-titleOnlyThreeUpStack .Card-textContent .Card-titleAndFooter .Card-eyebrowContainer{margin:0 0 7px}.Card-titleOnlyThreeUpStack .Card-textContent .Card-titleAndFooter .Card-eyebrowContainer .Card-eyebrow{display:block}}@media (min-width:760px){.Card-titleOnlyThreeUpStack{border-bottom:1px dashed hsla(0,0%,55%,.5);margin-right:30px;width:calc(33.33333% - 20px)}.Card-titleOnlyThreeUpStack:nth-child(3n){margin-right:0}}@media (min-width:1020px){.Card-titleOnlyThreeUpStack{width:190px}}@media (min-width:1340px){.Card-titleOnlyThreeUpStack{font-size:18px;line-height:22px;width:300px}}.Card-titleOnlyThreeUpStack.Card-cnbcvideo .Card-title div:after{background-image:url(https://static-redesign.cnbcfm.com/dist/2b9683da8ee9d11e69bc.svg);background-repeat:no-repeat;content:"";display:inline-block;height:15px;margin-left:4px;position:relative;top:2px;width:18px}@media (min-width:760px){.Card-titleOnlyThreeUpStack.Card-webresource .Card-textContent{height:124px}}@media (min-width:1020px){.Card-titleOnlyThreeUpStack.Card-webresource .Card-textContent{height:110px}}.Card-titleOnlyThreeUpStack.Card-webresource .Card-title div:after{background-image:url(https://static-redesign.cnbcfm.com/dist/387a9977e4e000be15d0.svg);background-repeat:no-repeat;content:"";display:inline-block;height:11px;margin-left:4px;width:18px}.Card-titleOnlyThreeUpStack .Card-textContent{display:block;margin:0}@media (min-width:760px){.Card-titleOnlyThreeUpStack .Card-textContent{height:146px}}@media (min-width:1020px){.Card-titleOnlyThreeUpStack .Card-textContent{height:127px}}.Card-titleOnlyThreeUpStack .Card-textContent .Card-titleAndFooter{display:block}.Card-titleOnlyThreeUpStack .Card-textContent .Card-titleAndFooter .Card-pro{margin:0;position:unset}.Card-titleOnlyThreeUpStack .Card-textContent .Card-titleAndFooter .Card-watchLivePill+.Card-proSmall{display:inline-block;margin-right:6px;top:3px}.Card-titleOnlyThreeUpStack .Card-textContent .Card-titleAndFooter .Card-proSmall{bottom:0;display:block;height:19px;margin:0 0 7px;position:relative;top:0;width:35px}@media (min-width:760px){.Card-titleOnlyThreeUpStack .Card-textContent .Card-titleAndFooter .Card-proSmall{margin:0 0 3px}}@media (min-width:1020px){.Card-titleOnlyThreeUpStack .Card-textContent .Card-titleAndFooter .Card-proSmall{height:17px;margin:0}}.Card-titleOnlyThreeUpStack .Card-textContent .Card-titleAndFooter .Card-proIcon{color:#3cb878;position:absolute;top:-8px}@media (min-width:760px){.Card-titleOnlyThreeUpStack .Card-textContent .Card-titleAndFooter .Card-proIcon{top:5px}}.Card-titleOnlyThreeUpStack .Card-textContent .Card-titleAndFooter .Card-eyebrowContainer{height:12px;padding:0}@media (min-width:760px){.Card-titleOnlyThreeUpStack .Card-textContent .Card-titleAndFooter .Card-eyebrowContainer{margin:0 0 10px}}@media (min-width:1020px){.Card-titleOnlyThreeUpStack .Card-textContent .Card-titleAndFooter .Card-eyebrowContainer{margin:0 0 5px}}.Card-titleOnlyThreeUpStack .Card-textContent .Card-titleAndFooter .Card-eyebrowContainer .Card-eyebrow{color:#002f6c;display:block;font-size:12px;line-height:12px;overflow-y:hidden}.Card-titleOnlyThreeUpStack .Card-textContent .Card-titleAndFooter .Card-eyebrowContainer .Card-eyebrow:hover{color:#fcb700}.Card-titleOnlyThreeUpStack .Card-textContent .Card-titleAndFooter .Card-eyebrowContainer .Card-eyebrow div{height:12px;line-height:12px}.Card-titleOnlyThreeUpStack .Card-textContent .Card-titleAndFooter .Card-title{display:block;line-height:18px;margin:0 0 10px;max-height:80px;overflow:hidden;text-align:left}@media (min-width:760px){.Card-titleOnlyThreeUpStack .Card-textContent .Card-titleAndFooter .Card-title{line-height:18px;max-height:80px}}@media (min-width:1020px){.Card-titleOnlyThreeUpStack .Card-textContent .Card-titleAndFooter .Card-title{font-size:16px;font-weight:600;line-height:18px;max-height:80px}}@media (min-width:1340px){.Card-titleOnlyThreeUpStack .Card-textContent .Card-titleAndFooter .Card-title{font-size:18px;line-height:22px;max-height:72px}}.Card-titleOnlyThreeUpStack .Card-textContent .Card-titleAndFooter .Card-pro>.Card-title{line-height:18px;max-height:100px}@media (min-width:760px){.Card-titleOnlyThreeUpStack .Card-textContent .Card-titleAndFooter .Card-pro>.Card-title{line-height:18px;max-height:100px}}@media (min-width:1020px){.Card-titleOnlyThreeUpStack .Card-textContent .Card-titleAndFooter .Card-pro>.Card-title{line-height:18px;max-height:100px}}@media (min-width:1340px){.Card-titleOnlyThreeUpStack .Card-textContent .Card-titleAndFooter .Card-pro>.Card-title{line-height:22px;max-height:96px}}.Card-titleOnlyThreeUpStack .Card-textContent .Card-titleAndFooter .Card-cardFooter,.Card-titleOnlyThreeUpStack .Card-textContent .Card-titleAndFooter .Card-threeUpCardFooterStyle{display:block;line-height:11px;margin:0}.Card-threeUpCardFooterStyle .Card-titleOnlyThreeUpStack .Card-textContent .Card-titleAndFooter .Card-cardFooter .Card-threeUpBylineStyle,.Card-titleOnlyThreeUpStack .Card-textContent .Card-titleAndFooter .Card-cardFooter .Card-byline,.Card-titleOnlyThreeUpStack .Card-textContent .Card-titleAndFooter .Card-threeUpCardFooterStyle .Card-byline,.Card-titleOnlyThreeUpStack .Card-textContent .Card-titleAndFooter .Card-threeUpCardFooterStyle .Card-threeUpBylineStyle{display:none}.Card-titleOnlyThreeUpStack .Card-textContent .Card-titleAndFooter .Card-cardFooter .Card-time,.Card-titleOnlyThreeUpStack .Card-textContent .Card-titleAndFooter .Card-threeUpCardFooterStyle .Card-time{font-size:11px;letter-spacing:.1em}.Card-titleOnlyThreeUpStackLast{border-bottom:none}.Card-proIcon{line-height:.8}@media (min-width:760px){.Card-proIcon{line-height:0}}.Card-videoIcon{display:none}.Card-description{font-size:12px;font-weight:400;margin-bottom:10px;margin-top:10px}.Card-aboveImageContent{background:linear-gradient(180deg,rgba(17,62,107,0) 31.19%,#071d39 69.16%);bottom:0;padding:0 22px 20px 21px;position:absolute;width:100%}@media (min-width:360px){.Card-aboveImageContent{padding:48px 46px 30px}}@media (min-width:760px){.Card-aboveImageContent{background:linear-gradient(180deg,rgba(17,62,107,0) 20.19%,#071d39 69.16%);padding:24px 46px 30px}}@media (min-width:1020px){.Card-aboveImageContent{background:linear-gradient(180deg,rgba(17,62,107,0) 4.19%,#071d39 69.16%);padding:19px 46px 30px}}@media (min-width:1340px){.Card-aboveImageContent{background:linear-gradient(180deg,rgba(17,62,107,0) 29.19%,#071d39 69.16%);padding:70px 70px 30px}}.Card-aboveImageTitle{color:#fff;font-family:Proxima Nova,Helvetica,Arial,sans-serif;font-size:20px;font-style:normal;font-weight:700;line-height:22px;margin:0}@media (min-width:760px){.Card-aboveImageTitle{font-size:30px;font-weight:800;line-height:32px;width:580px}.Card-aboveImageTitle .Card-investingClubPill,.Card-aboveImageTitle .Card-proPill,.Card-aboveImageTitle .Card-watchLivePill{margin-top:-.2em;vertical-align:middle}}@media (min-width:1020px){.Card-aboveImageTitle{width:538px}}@media (min-width:1340px){.Card-aboveImageTitle{font-size:38px;font-weight:800;line-height:40px;width:820px}.Card-aboveImageTitle .Card-investingClubPill,.Card-aboveImageTitle .Card-proPill,.Card-aboveImageTitle .Card-watchLivePill{margin-top:-.2em;vertical-align:middle}}.Card-aboveImageTitle a{color:#fff}.Card-aboveImageTitle a:focus,.Card-aboveImageTitle a:hover{color:#fff;text-decoration:underline}@media (max-width:1339px){.Card-rectangleToRectangleMediaHalf .Card-pro{margin:0;top:0}}@media (prefers-color-scheme:dark){.webview .Card-titleContainer a{color:#b2b2b2}}@media (max-width:1020px){.Card-specialReportTimestamp{font-size:11px}}
/*# sourceMappingURL=source-maps/6683-a3b9961a1505383aed67.css.map*/
@media (max-width:759px){.MidResponsive-midResponsiveContainer iframe{max-width:300px}}[id*=MidResponsive],[id*=dart_wrapper_midresponsive]{margin:40px auto 0;position:sticky}@media (min-width:760px){[id*=MidResponsive],[id*=dart_wrapper_midresponsive]{margin-top:0}}[id*=MidResponsive]>div,[id*=dart_wrapper_midresponsive]>div{margin-bottom:40px;text-align:center}
/*# sourceMappingURL=source-maps/1620-0ad3d39d0d8d25a586e6.css.map*/
.TrendingNowBreaker-containerFluidWidths{margin:0 auto;width:100%}@media (min-width:1020px){.TrendingNowBreaker-containerFluidWidths{max-width:960px}}@media (min-width:1340px){.TrendingNowBreaker-containerFluidWidths{max-width:1290px}}.TrendingNowBreaker-containerWidth100{width:100%}.TrendingNowBreaker-page{display:block;margin-bottom:25px;overflow:visible}@media (min-width:760px){.TrendingNowBreaker-page{margin-bottom:28px}}.TrendingNowBreaker-pageGrid{margin-left:auto;margin-right:auto;max-width:1290px;overflow:visible;width:100%}.TrendingNowBreaker-pageWrapper{margin:0 auto;max-width:100%}@media (min-width:760px){.TrendingNowBreaker-pageWrapper{max-width:678px}}@media (min-width:1020px){.TrendingNowBreaker-pageWrapper{max-width:960px}}@media (min-width:1340px){.TrendingNowBreaker-pageWrapper{max-width:1290px}}@media (min-width:760px){.TrendingNowBreaker-pageWrapper{max-width:100%!important}}.TrendingNowBreaker-pageRow{display:flex;flex-direction:row;flex-wrap:wrap;padding:0 20px}@media (min-width:760px){.TrendingNowBreaker-pageRow{padding-left:0;padding-right:0}}@media (min-width:1020px){.TrendingNowBreaker-pageRow{display:flex;flex-direction:row;flex-wrap:wrap;padding:0 20px}}@media (min-width:1020px) and (min-width:760px){.TrendingNowBreaker-pageRow{padding-left:0;padding-right:0}}@media (max-width:1019px){.TrendingNowBreaker-pageRow{margin:0;padding:0}}@media (min-width:360px) and (max-width:759px){.TrendingNowBreaker-pageRow.TrendingNowBreaker-containerFluidWidths{padding:0 21px}}@media (min-width:760px) and (max-width:1019px){.TrendingNowBreaker-pageRow.TrendingNowBreaker-containerFluidWidths{padding:0 45px}}.TrendingNowBreaker-pageRowFlex{display:flex}.TrendingNowBreaker-rowUnderAd{margin-top:-29px}@media (min-width:1020px){.TrendingNowBreaker-rowUnderAd{margin-top:-50px}}@media (min-width:1340px){.TrendingNowBreaker-rowUnderAd{margin-top:-44px}}.TrendingNowBreaker-rowWithBackground{background:#cfd8e2;position:relative}.TrendingNowBreaker-rowWithBackground:after,.TrendingNowBreaker-rowWithBackground:before{background:#cfd8e2;content:"";display:block;height:100%;position:absolute;width:25vw}.TrendingNowBreaker-rowWithBackground:before{right:100%;top:0}.TrendingNowBreaker-rowWithBackground:after{left:100%;top:0}.TrendingNowBreaker-flipRowOrder .TrendingNowBreaker-col:first-child{order:2}@media (min-width:1020px){.TrendingNowBreaker-flipRowOrder .TrendingNowBreaker-col:first-child{order:1}}.TrendingNowBreaker-flipRowOrder .TrendingNowBreaker-col:last-child{order:1}@media (min-width:1020px){.TrendingNowBreaker-flipRowOrder .TrendingNowBreaker-col:last-child{order:2}}.TrendingNowBreaker-col{display:flex;flex-direction:column;flex-grow:0;flex-shrink:0;margin-right:30px;max-width:calc(100% - 30px);min-width:calc(100% - 30px)}@media (min-width:760px){.TrendingNowBreaker-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.TrendingNowBreaker-col{max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media screen and (min-width:1020px) and (-ms-high-contrast:none){.TrendingNowBreaker-col{max-width:100%;min-width:100%}}@media (min-width:1340px){.TrendingNowBreaker-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}.TrendingNowBreaker-col:last-child{margin-right:0}@media (min-width:360px) and (max-width:759px){.TrendingNowBreaker-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}}@media (min-width:760px) and (max-width:1019px){.TrendingNowBreaker-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}.TrendingNowBreaker-containerFluidWidths .TrendingNowBreaker-col{max-width:678px!important;min-width:678px}}@media (min-width:760px){.TrendingNowBreaker-col-3{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.TrendingNowBreaker-col-3{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.TrendingNowBreaker-col-3{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.TrendingNowBreaker-col-3{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.TrendingNowBreaker-col-3{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.TrendingNowBreaker-col-3{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(33.33333% - 20px);min-width:calc(33.33333% - 20px)}.TrendingNowBreaker-col-3:first-child{margin-left:0;margin-right:30px}}@media (min-width:1340px){.TrendingNowBreaker-col-3{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(25% - 22.5px);min-width:calc(25% - 22.5px)}}@media (min-width:760px){.TrendingNowBreaker-col-6{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.TrendingNowBreaker-col-6{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.TrendingNowBreaker-col-6{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.TrendingNowBreaker-col-6{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.TrendingNowBreaker-col-6{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.TrendingNowBreaker-col-6{flex-grow:0;flex-shrink:0;margin-left:0;margin-right:0;max-width:calc(44.44444% - 16.66667px);min-width:calc(44.44444% - 16.66667px)}.TrendingNowBreaker-col-6:first-child{margin-left:0;margin-right:30px}}@media (min-width:1340px){.TrendingNowBreaker-col-6{flex-grow:0;flex-shrink:0;margin-left:0;max-width:calc(50% - 15px);min-width:calc(50% - 15px)}}.TrendingNowBreaker-col-9 .BrandBanner-container{margin-bottom:30px;z-index:99}@media (min-width:1340px){.TrendingNowBreaker-col-9 .BrandBanner-container{margin-left:calc(-50vw - -538.5px)}}@media (min-width:760px){.TrendingNowBreaker-col-9 .BrandBanner-container{margin-bottom:-100px;margin-top:50px}.TrendingNowBreaker-col-9{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.TrendingNowBreaker-col-9{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.TrendingNowBreaker-col-9{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.TrendingNowBreaker-col-9{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.TrendingNowBreaker-col-9{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.TrendingNowBreaker-col-9{flex-grow:0;flex-shrink:0;margin-right:0;max-width:calc(66.66667% - 10px);min-width:calc(66.66667% - 10px)}.TrendingNowBreaker-col-9:last-child{margin-right:0}}@media (min-width:1340px){.TrendingNowBreaker-col-9{flex-grow:0;flex-shrink:0;max-width:calc(75% - 7.5px);min-width:calc(75% - 7.5px)}.TrendingNowBreaker-col-9.TrendingNowBreaker-article{flex-grow:0;flex-shrink:0;margin-left:calc(8.33333% + 2.5px);max-width:calc(58.33333% - 12.5px);min-width:calc(58.33333% - 12.5px)}}@media (min-width:760px){.TrendingNowBreaker-col-12{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.TrendingNowBreaker-col-12{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.TrendingNowBreaker-col-12{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.TrendingNowBreaker-col-12{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.TrendingNowBreaker-col-12{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.TrendingNowBreaker-col-12{flex-grow:0;flex-shrink:0;margin-right:0;max-width:100%;min-width:100%}.TrendingNowBreaker-col-12:last-child{margin-right:0}}@media (min-width:1340px){.TrendingNowBreaker-col-12{flex-grow:0;flex-shrink:0;max-width:100%;min-width:100%}}.TrendingNowBreaker-col-full{flex-grow:0;flex-shrink:0;margin-right:0;max-width:100%;min-width:100%}.TrendingNowBreaker-col-full .MyComponentName-container{width:100vw}@media (min-width:1340px){.TrendingNowBreaker-col-full .MyComponentName-container{max-width:none}}.TrendingNowBreaker-col-full:last-child{margin-right:0}.TrendingNowBreaker-clear-col-padding{padding-bottom:0;padding-top:0}.TrendingNowBreaker-paddedWrapper{padding-bottom:15px;padding-top:15px}@media (min-width:1020px){.TrendingNowBreaker-paddedWrapper{padding-bottom:20px;padding-top:25px}.TrendingNowBreaker-hasBanner{margin-bottom:130px}}.TrendingNowBreaker-sidebar{flex-grow:0;flex-shrink:0;max-width:calc(100% - 30px);min-width:calc(100% - 30px)}@media (min-width:760px){.TrendingNowBreaker-sidebar{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.TrendingNowBreaker-sidebar{max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media screen and (min-width:1020px) and (-ms-high-contrast:none){.TrendingNowBreaker-sidebar{max-width:100%;min-width:100%}}@media (min-width:1340px){.TrendingNowBreaker-sidebar{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:360px){.TrendingNowBreaker-sidebar{min-width:100%}}@media (min-width:760px){.TrendingNowBreaker-sidebar{flex-grow:0;flex-shrink:0;max-width:100%;min-width:100%}}@media (min-width:1020px){.TrendingNowBreaker-sidebar{flex-grow:0;flex-shrink:0;margin-bottom:40px;margin-left:30px;max-width:calc(33.33333% - 20px);min-width:calc(33.33333% - 20px)}}@media (min-width:1340px){.TrendingNowBreaker-sidebar{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(25% - 22.5px);min-width:calc(25% - 22.5px)}}.TrendingNowBreaker-sidebarLeft{flex-grow:0;flex-shrink:0;max-width:calc(100% - 30px);min-width:calc(100% - 30px)}@media (min-width:760px){.TrendingNowBreaker-sidebarLeft{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.TrendingNowBreaker-sidebarLeft{max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media screen and (min-width:1020px) and (-ms-high-contrast:none){.TrendingNowBreaker-sidebarLeft{max-width:100%;min-width:100%}}@media (min-width:1340px){.TrendingNowBreaker-sidebarLeft{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:360px){.TrendingNowBreaker-sidebarLeft{min-width:100%}}@media (min-width:760px){.TrendingNowBreaker-sidebarLeft{flex-grow:0;flex-shrink:0;max-width:100%;min-width:100%}}@media (min-width:1020px){.TrendingNowBreaker-sidebarLeft{flex-grow:0;flex-shrink:0;margin-bottom:40px;margin-left:0;margin-right:30px;max-width:calc(22.22222% - 23.33333px);min-width:calc(22.22222% - 23.33333px);z-index:1}}@media (min-width:1340px){.TrendingNowBreaker-sidebarLeft{flex-grow:0;flex-shrink:0;margin-left:0;max-width:calc(25% - 22.5px);min-width:calc(25% - 22.5px)}}.TrendingNowBreaker-sidebarLeftNav{max-width:none}.TrendingNowBreaker-sidebarPro{margin-left:0;margin-right:30px}.TrendingNowBreaker-pageRow{margin-bottom:50px}@media (max-width:759px){.TrendingNowBreaker-pageRow{padding:0}}@media (min-width:760px){.TrendingNowBreaker-col-9{padding-bottom:5px}}@media (min-width:1020px){.TrendingNowBreaker-col-9{padding-bottom:20px}}@media (min-width:1340px){.TrendingNowBreaker-col-9{flex-grow:0;flex-shrink:0;margin-left:0;max-width:calc(75% - 7.5px);min-width:calc(75% - 7.5px)}}
/*# sourceMappingURL=source-maps/4934-b61f250b5c22986f84a4.css.map*/
.TrendingNow-container{display:flex;flex-direction:row;flex-wrap:wrap;padding:0;width:100%}@media (min-width:760px){.TrendingNow-container{padding-left:0;padding-right:0}}.TrendingNow-heading{border-top:1px solid #747474;color:#002f6c;font-size:30px;font-weight:800;letter-spacing:.5px;line-height:37px;margin-bottom:10px;margin-top:0;padding-top:15px;position:relative;text-transform:uppercase;width:100%}@media (min-width:760px){.TrendingNow-heading{padding-top:15px}}@media (min-width:1020px){.TrendingNow-heading{font-size:32px;line-height:40px;padding-top:20px}}.TrendingNow-heading:before{background-color:#2077b6;content:"";height:6px;left:0;position:absolute;top:-6px;width:110px}.TrendingNow-storyContainer{display:flex;flex-wrap:wrap}@media (min-width:1020px){.TrendingNow-storyContainer{flex-wrap:nowrap;justify-content:space-between}}
/*# sourceMappingURL=source-maps/5066-e8ae6197f9b2212f7bac.css.map*/
.TrendingNowItem-title{color:#000}.TrendingNowItem-title:hover{color:#000;text-decoration:underline}.TrendingNowItem-number{color:#cfd8e2;font-size:46px;font-weight:800;line-height:46px;margin-bottom:8px}.TrendingNowItem-storyItem{border-left:6px solid #f3f5f7;font-size:17px;font-weight:500;line-height:21px;list-style:none;margin:15px 0;padding:0 30px 5px 15px;width:50%}@media (min-width:760px){.TrendingNowItem-storyItem{font-size:16px;line-height:20px;width:33.33333%}}@media (min-width:1020px){.TrendingNowItem-storyItem{font-size:16px;padding-right:55px;width:100%}.TrendingNowItem-storyItem:last-child{padding-right:0}}
/*# sourceMappingURL=source-maps/658-a33feff76fcd3a71898b.css.map*/
.TwoColumnImageDense-containerFluidWidths{margin:0 auto;width:100%}@media (min-width:1020px){.TwoColumnImageDense-containerFluidWidths{max-width:960px}}@media (min-width:1340px){.TwoColumnImageDense-containerFluidWidths{max-width:1290px}}.TwoColumnImageDense-containerWidth100{width:100%}.TwoColumnImageDense-page{display:block;margin-bottom:25px;overflow:visible}@media (min-width:760px){.TwoColumnImageDense-page{margin-bottom:28px}}.TwoColumnImageDense-pageGrid{margin-left:auto;margin-right:auto;max-width:1290px;overflow:visible;width:100%}.TwoColumnImageDense-pageWrapper{margin:0 auto;max-width:100%}@media (min-width:760px){.TwoColumnImageDense-pageWrapper{max-width:678px}}@media (min-width:1020px){.TwoColumnImageDense-pageWrapper{max-width:960px}}@media (min-width:1340px){.TwoColumnImageDense-pageWrapper{max-width:1290px}}@media (min-width:760px){.TwoColumnImageDense-pageWrapper{max-width:100%!important}}.TwoColumnImageDense-pageRow{display:flex;flex-direction:row;flex-wrap:wrap;padding:0 20px}@media (min-width:760px){.TwoColumnImageDense-pageRow{padding-left:0;padding-right:0}}@media (min-width:1020px){.TwoColumnImageDense-pageRow{display:flex;flex-direction:row;flex-wrap:wrap;padding:0 20px}}@media (min-width:1020px) and (min-width:760px){.TwoColumnImageDense-pageRow{padding-left:0;padding-right:0}}@media (max-width:1019px){.TwoColumnImageDense-pageRow{margin:0;padding:0}}@media (min-width:360px) and (max-width:759px){.TwoColumnImageDense-pageRow.TwoColumnImageDense-containerFluidWidths{padding:0 21px}}@media (min-width:760px) and (max-width:1019px){.TwoColumnImageDense-pageRow.TwoColumnImageDense-containerFluidWidths{padding:0 45px}}.TwoColumnImageDense-pageRowFlex{display:flex}.TwoColumnImageDense-rowUnderAd{margin-top:-29px}@media (min-width:1020px){.TwoColumnImageDense-rowUnderAd{margin-top:-50px}}@media (min-width:1340px){.TwoColumnImageDense-rowUnderAd{margin-top:-44px}}.TwoColumnImageDense-rowWithBackground{background:#cfd8e2;position:relative}.TwoColumnImageDense-rowWithBackground:after,.TwoColumnImageDense-rowWithBackground:before{background:#cfd8e2;content:"";display:block;height:100%;position:absolute;width:25vw}.TwoColumnImageDense-rowWithBackground:before{right:100%;top:0}.TwoColumnImageDense-rowWithBackground:after{left:100%;top:0}.TwoColumnImageDense-flipRowOrder .TwoColumnImageDense-col:first-child{order:2}@media (min-width:1020px){.TwoColumnImageDense-flipRowOrder .TwoColumnImageDense-col:first-child{order:1}}.TwoColumnImageDense-flipRowOrder .TwoColumnImageDense-col:last-child{order:1}@media (min-width:1020px){.TwoColumnImageDense-flipRowOrder .TwoColumnImageDense-col:last-child{order:2}}.TwoColumnImageDense-col{display:flex;flex-direction:column;flex-grow:0;flex-shrink:0;margin-right:30px;max-width:calc(100% - 30px);min-width:calc(100% - 30px)}@media (min-width:760px){.TwoColumnImageDense-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.TwoColumnImageDense-col{max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media screen and (min-width:1020px) and (-ms-high-contrast:none){.TwoColumnImageDense-col{max-width:100%;min-width:100%}}@media (min-width:1340px){.TwoColumnImageDense-col{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}.TwoColumnImageDense-col:last-child{margin-right:0}@media (min-width:360px) and (max-width:759px){.TwoColumnImageDense-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}}@media (min-width:760px) and (max-width:1019px){.TwoColumnImageDense-col{margin-left:auto!important;margin-right:auto!important;max-width:100%!important;min-width:100%!important}.TwoColumnImageDense-containerFluidWidths .TwoColumnImageDense-col{max-width:678px!important;min-width:678px}}@media (min-width:760px){.TwoColumnImageDense-col-3{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.TwoColumnImageDense-col-3{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.TwoColumnImageDense-col-3{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.TwoColumnImageDense-col-3{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.TwoColumnImageDense-col-3{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.TwoColumnImageDense-col-3{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(33.33333% - 20px);min-width:calc(33.33333% - 20px)}.TwoColumnImageDense-col-3:first-child{margin-left:0;margin-right:30px}}@media (min-width:1340px){.TwoColumnImageDense-col-3{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(25% - 22.5px);min-width:calc(25% - 22.5px)}}@media (min-width:760px){.TwoColumnImageDense-col-6{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.TwoColumnImageDense-col-6{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.TwoColumnImageDense-col-6{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.TwoColumnImageDense-col-6{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.TwoColumnImageDense-col-6{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.TwoColumnImageDense-col-6{flex-grow:0;flex-shrink:0;margin-left:0;margin-right:0;max-width:calc(44.44444% - 16.66667px);min-width:calc(44.44444% - 16.66667px)}.TwoColumnImageDense-col-6:first-child{margin-left:0;margin-right:30px}}@media (min-width:1340px){.TwoColumnImageDense-col-6{flex-grow:0;flex-shrink:0;margin-left:0;max-width:calc(50% - 15px);min-width:calc(50% - 15px)}}.TwoColumnImageDense-col-9 .BrandBanner-container{margin-bottom:30px;z-index:99}@media (min-width:1340px){.TwoColumnImageDense-col-9 .BrandBanner-container{margin-left:calc(-50vw - -538.5px)}}@media (min-width:760px){.TwoColumnImageDense-col-9 .BrandBanner-container{margin-bottom:-100px;margin-top:50px}.TwoColumnImageDense-col-9{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.TwoColumnImageDense-col-9{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.TwoColumnImageDense-col-9{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.TwoColumnImageDense-col-9{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.TwoColumnImageDense-col-9{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.TwoColumnImageDense-col-9{flex-grow:0;flex-shrink:0;margin-right:0;max-width:calc(66.66667% - 10px);min-width:calc(66.66667% - 10px)}.TwoColumnImageDense-col-9:last-child{margin-right:0}}@media (min-width:1340px){.TwoColumnImageDense-col-9{flex-grow:0;flex-shrink:0;max-width:calc(75% - 7.5px);min-width:calc(75% - 7.5px)}.TwoColumnImageDense-col-9.TwoColumnImageDense-article{flex-grow:0;flex-shrink:0;margin-left:calc(8.33333% + 2.5px);max-width:calc(58.33333% - 12.5px);min-width:calc(58.33333% - 12.5px)}}@media (min-width:760px){.TwoColumnImageDense-col-12{flex-grow:0;flex-shrink:0;max-width:calc(300% - 30px);min-width:calc(300% - 30px)}}@media (min-width:760px) and (min-width:760px){.TwoColumnImageDense-col-12{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:760px) and (min-width:1020px){.TwoColumnImageDense-col-12{max-width:calc(133.33333% - 30px);min-width:calc(133.33333% - 30px)}}@media screen and (min-width:760px) and (min-width:1020px) and (-ms-high-contrast:none){.TwoColumnImageDense-col-12{max-width:100%;min-width:100%}}@media (min-width:760px) and (min-width:1340px){.TwoColumnImageDense-col-12{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media (min-width:1020px){.TwoColumnImageDense-col-12{flex-grow:0;flex-shrink:0;margin-right:0;max-width:100%;min-width:100%}.TwoColumnImageDense-col-12:last-child{margin-right:0}}@media (min-width:1340px){.TwoColumnImageDense-col-12{flex-grow:0;flex-shrink:0;max-width:100%;min-width:100%}}.TwoColumnImageDense-col-full{flex-grow:0;flex-shrink:0;margin-right:0;max-width:100%;min-width:100%}.TwoColumnImageDense-col-full .MyComponentName-container{width:100vw}@media (min-width:1340px){.TwoColumnImageDense-col-full .MyComponentName-container{max-width:none}}.TwoColumnImageDense-col-full:last-child{margin-right:0}.TwoColumnImageDense-clear-col-padding{padding-bottom:0;padding-top:0}.TwoColumnImageDense-paddedWrapper{padding-bottom:15px;padding-top:15px}@media (min-width:1020px){.TwoColumnImageDense-paddedWrapper{padding-bottom:20px;padding-top:25px}.TwoColumnImageDense-hasBanner{margin-bottom:130px}}.TwoColumnImageDense-sidebar{flex-grow:0;flex-shrink:0;max-width:calc(100% - 30px);min-width:calc(100% - 30px)}@media (min-width:760px){.TwoColumnImageDense-sidebar{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.TwoColumnImageDense-sidebar{max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media screen and (min-width:1020px) and (-ms-high-contrast:none){.TwoColumnImageDense-sidebar{max-width:100%;min-width:100%}}@media (min-width:1340px){.TwoColumnImageDense-sidebar{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:360px){.TwoColumnImageDense-sidebar{min-width:100%}}@media (min-width:760px){.TwoColumnImageDense-sidebar{flex-grow:0;flex-shrink:0;max-width:100%;min-width:100%}}@media (min-width:1020px){.TwoColumnImageDense-sidebar{flex-grow:0;flex-shrink:0;margin-bottom:40px;margin-left:30px;max-width:calc(33.33333% - 20px);min-width:calc(33.33333% - 20px)}}@media (min-width:1340px){.TwoColumnImageDense-sidebar{flex-grow:0;flex-shrink:0;margin-left:30px;max-width:calc(25% - 22.5px);min-width:calc(25% - 22.5px)}}.TwoColumnImageDense-sidebarLeft{flex-grow:0;flex-shrink:0;max-width:calc(100% - 30px);min-width:calc(100% - 30px)}@media (min-width:760px){.TwoColumnImageDense-sidebarLeft{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.TwoColumnImageDense-sidebarLeft{max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media screen and (min-width:1020px) and (-ms-high-contrast:none){.TwoColumnImageDense-sidebarLeft{max-width:100%;min-width:100%}}@media (min-width:1340px){.TwoColumnImageDense-sidebarLeft{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:360px){.TwoColumnImageDense-sidebarLeft{min-width:100%}}@media (min-width:760px){.TwoColumnImageDense-sidebarLeft{flex-grow:0;flex-shrink:0;max-width:100%;min-width:100%}}@media (min-width:1020px){.TwoColumnImageDense-sidebarLeft{flex-grow:0;flex-shrink:0;margin-bottom:40px;margin-left:0;margin-right:30px;max-width:calc(22.22222% - 23.33333px);min-width:calc(22.22222% - 23.33333px);z-index:1}}@media (min-width:1340px){.TwoColumnImageDense-sidebarLeft{flex-grow:0;flex-shrink:0;margin-left:0;max-width:calc(25% - 22.5px);min-width:calc(25% - 22.5px)}}.TwoColumnImageDense-sidebarLeftNav{max-width:none}.TwoColumnImageDense-sidebarPro{margin-left:0;margin-right:30px}.TwoColumnImageDense-col{padding-bottom:15px;padding-top:15px}@media (min-width:1020px){.TwoColumnImageDense-col{padding-bottom:20px;padding-top:25px}}@media (min-width:760px){.TwoColumnImageDense-col-9{padding-bottom:5px}}@media (min-width:1020px){.TwoColumnImageDense-col-9{padding-bottom:20px}}@media (min-width:1340px){.TwoColumnImageDense-col-9{flex-grow:0;flex-shrink:0;margin-left:0;max-width:calc(75% - 7.5px);min-width:calc(75% - 7.5px)}}.TwoColumnImageDense-imageDense{margin-right:0;padding:0 0 32px}@media (min-width:360px){.TwoColumnImageDense-imageDense{padding-bottom:10px}}@media (min-width:760px){.TwoColumnImageDense-imageDense{padding-bottom:24px}}@media (min-width:760px) and (max-width:1019px){.TwoColumnImageDense-imageDense{margin:0 auto;width:678px}}@media (max-width:359px){.TwoColumnImageDense-imageDense{padding:0}}
/*# sourceMappingURL=source-maps/1260-a6a1b4ff584c91fa5d7d.css.map*/
.SectionWrapper-container{display:flex;flex-direction:column;padding-top:5px;position:relative;width:100%}.SectionWrapper-container .SectionHeader-container{display:none}.SectionWrapper-container .MustWatchVideo-container{flex-grow:1;margin-right:-30px;max-width:none}@media (min-width:760px){.SectionWrapper-container{flex-direction:row;flex-wrap:wrap}}@media (min-width:1020px){.SectionWrapper-twoThirds{flex-grow:0;flex-shrink:0;max-width:calc(150% - 30px);min-width:calc(150% - 30px)}}@media (min-width:1020px) and (min-width:760px){.SectionWrapper-twoThirds{max-width:calc(50% - 30px);min-width:calc(50% - 30px)}}@media (min-width:1020px) and (min-width:1020px){.SectionWrapper-twoThirds{max-width:calc(66.66667% - 30px);min-width:calc(66.66667% - 30px)}}@media screen and (min-width:1020px) and (min-width:1020px) and (-ms-high-contrast:none){.SectionWrapper-twoThirds{max-width:100%;min-width:100%}}@media (min-width:1020px) and (min-width:1340px){.SectionWrapper-twoThirds{max-width:calc(50% - 30px);min-width:calc(50% - 30px)}}@media (min-width:1340px){.SectionWrapper-twoThirds{flex-grow:0;flex-shrink:0;max-width:calc(225% - 30px);min-width:calc(225% - 30px)}}@media (min-width:1340px) and (min-width:760px){.SectionWrapper-twoThirds{max-width:calc(75% - 30px);min-width:calc(75% - 30px)}}@media (min-width:1340px) and (min-width:1020px){.SectionWrapper-twoThirds{max-width:calc(100% - 30px);min-width:calc(100% - 30px)}}@media screen and (min-width:1340px) and (min-width:1020px) and (-ms-high-contrast:none){.SectionWrapper-twoThirds{max-width:100%;min-width:100%}}@media (min-width:1340px) and (min-width:1340px){.SectionWrapper-twoThirds{max-width:calc(75% - 30px);min-width:calc(75% - 30px)}}.SectionWrapper-header{border-top:1px solid #747474;order:1;position:relative}@media (min-width:760px){.SectionWrapper-header{flex-grow:1}}.SectionWrapper-decoration{background-color:#fcb700;display:block;height:6px;left:0;position:absolute;top:-6px;width:80px}@media (min-width:760px){.SectionWrapper-decoration{width:110px}}.SectionWrapper-title{color:#002f6c;font-size:30px;font-weight:800;letter-spacing:.5px;line-height:1;margin:15px 0;text-transform:uppercase}.SectionWrapper-title a{color:inherit}.SectionWrapper-title a:focus,.SectionWrapper-title a:hover{color:#2077b6}@media (min-width:1020px){.SectionWrapper-title{font-size:32px;margin-top:20px}}.SectionWrapper-titleImage{height:30px;margin:15px 0;max-width:100%;width:auto}@media (min-width:1020px){.SectionWrapper-titleImage{height:40px;margin-top:20px}}.SectionWrapper-sponsorIcon{display:none}@media (min-width:1020px){.SectionWrapper-sponsorIcon{bottom:0;display:block;height:31px;margin:auto;position:absolute;right:0;top:0}}.SectionWrapper-link{border:1px solid #002f6c;color:#002f6c;display:flex;flex-direction:column;flex-direction:center;font-size:12px;font-weight:600;height:40px;justify-content:center;letter-spacing:1px;line-height:12px;order:3;text-align:center;text-transform:uppercase;transition:all .15s ease-out;width:100%}.SectionWrapper-link:focus,.SectionWrapper-link:hover{background-color:#fcb700;border-color:#fcb700;color:#002f6c}@media (min-width:760px){.SectionWrapper-link{margin-left:30px;max-width:168px;min-width:168px;order:2}}@media (min-width:1020px){.SectionWrapper-link{margin-left:25px}}@media (min-width:1340px){.SectionWrapper-link{margin-left:30px}}.SectionWrapper-content{display:block;flex-grow:1;order:2;width:100%}.SectionWrapper-content.SectionWrapper-latestContent{margin-bottom:30px}@media (min-width:1020px){.SectionWrapper-content.SectionWrapper-latestContent{height:-webkit-fill-available;height:-moz-available;height:stretch}}@media (min-width:760px){.SectionWrapper-content{order:3}}@media screen and (max-width:1020px){.SectionWrapper-latestNews{max-height:none}}@media screen and (min-width:1019px){.SectionWrapper-latestNews{height:604px}}@-moz-document url-prefix(){.SectionWrapper-latestNews:hover{overflow-y:scroll;padding-right:0}}@media (prefers-color-scheme:dark){.webview .SectionWrapper-title,.webview .SectionWrapper-title a{color:#dce0e4}}
/*# sourceMappingURL=source-maps/6346-141d8082f58902a5661a.css.map*/
.Column-cardRow{display:flex;flex-direction:row;flex-wrap:wrap;padding:0 20px}@media (min-width:760px){.Column-cardRow{padding-left:0;padding-right:0}}.Column-dualLeadLeft{margin-right:30px}.Column-dualLeadLeft:after{clear:both;content:"";display:block}@media (min-width:760px){.Column-dualLeadLeft{margin-right:30px}.Column-dualLeadLeft:last-child{margin-right:0}.Column-dualLeadLeft{flex-grow:0;flex-shrink:0;max-width:calc(58.33333% - 30px);min-width:calc(58.33333% - 30px)}}@media (min-width:1020px){.Column-dualLeadLeft{flex-grow:0;flex-shrink:0;max-width:calc(50% - 30px);min-width:calc(50% - 30px)}}@media (min-width:1340px){.Column-dualLeadLeft{flex-grow:0;flex-shrink:0;max-width:calc(55.55556% - 30px);min-width:calc(55.55556% - 30px)}}.Column-dualLeadLeftPackage{background-color:#071d39;display:table;display:block;margin-left:-20px;margin-right:10px;padding:0 20px}.Column-dualLeadLeftPackage:after{clear:both;content:"";display:block}@media (min-width:760px){.Column-dualLeadLeftPackage{margin-right:30px}.Column-dualLeadLeftPackage:last-child{margin-right:0}.Column-dualLeadLeftPackage{flex-grow:0;flex-shrink:0;max-width:calc(58.33333% - 30px);min-width:calc(58.33333% - 30px)}}@media (min-width:1020px){.Column-dualLeadLeftPackage{flex-grow:0;flex-shrink:0;max-width:calc(50% - 30px);min-width:calc(50% - 30px)}}@media (min-width:1340px){.Column-dualLeadLeftPackage{flex-grow:0;flex-shrink:0;max-width:calc(55.55556% - 30px);min-width:calc(55.55556% - 30px)}}@media (min-width:760px){.Column-dualLeadLeftPackage{margin-left:0;margin-right:30px}}.Column-dualLeadRight{margin-right:30px}.Column-dualLeadRight:after{clear:both;content:"";display:block}@media (min-width:760px){.Column-dualLeadRight{margin-right:30px}.Column-dualLeadRight:last-child{margin-right:0}.Column-dualLeadRight{flex-grow:0;flex-shrink:0;max-width:calc(41.66667% - 30px);min-width:calc(41.66667% - 30px)}}@media (min-width:1020px){.Column-dualLeadRight{flex-grow:0;flex-shrink:0;max-width:calc(50% - 30px);min-width:calc(50% - 30px)}}@media (min-width:1340px){.Column-dualLeadRight{flex-grow:0;flex-shrink:0;max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}.Column-dualLeadRightPackage{background-color:#071d39;display:table;display:block;margin-left:-20px;margin-right:10px;padding:0 20px}.Column-dualLeadRightPackage:after{clear:both;content:"";display:block}@media (min-width:760px){.Column-dualLeadRightPackage{margin-right:30px}.Column-dualLeadRightPackage:last-child{margin-right:0}.Column-dualLeadRightPackage{flex-grow:0;flex-shrink:0;max-width:calc(41.66667% - 30px);min-width:calc(41.66667% - 30px)}}@media (min-width:1020px){.Column-dualLeadRightPackage{flex-grow:0;flex-shrink:0;max-width:calc(50% - 30px);min-width:calc(50% - 30px)}}@media (min-width:1340px){.Column-dualLeadRightPackage{flex-grow:0;flex-shrink:0;max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media (min-width:760px){.Column-dualLeadRightPackage{margin-left:0;margin-right:30px}}.Column-dynamicContentLeft{margin-right:30px}.Column-dynamicContentLeft:after{clear:both;content:"";display:block}@media (min-width:760px){.Column-dynamicContentLeft{margin-right:30px}.Column-dynamicContentLeft:last-child{margin-right:0}.Column-dynamicContentLeft{flex-grow:0;flex-shrink:0;max-width:calc(50% - 30px);min-width:calc(50% - 30px)}}@media (min-width:1020px){.Column-dynamicContentLeft{flex-grow:0;flex-shrink:0;max-width:calc(50% - 30px);min-width:calc(50% - 30px)}}@media (min-width:1340px){.Column-dynamicContentLeft{flex-grow:0;flex-shrink:0;max-width:calc(55.55556% - 30px);min-width:calc(55.55556% - 30px)}}.Column-dynamicContentRight{margin-right:30px}.Column-dynamicContentRight:after{clear:both;content:"";display:block}@media (min-width:760px){.Column-dynamicContentRight{margin-right:30px}.Column-dynamicContentRight:last-child{margin-right:0}.Column-dynamicContentRight{flex-grow:0;flex-shrink:0;max-width:calc(50% - 30px);min-width:calc(50% - 30px)}.Column-dynamicContentRight:last-child{margin-left:auto}}@media (min-width:1020px){.Column-dynamicContentRight{flex-grow:0;flex-shrink:0;max-width:calc(50% - 30px);min-width:calc(50% - 30px)}}@media (min-width:1340px){.Column-dynamicContentRight{flex-grow:0;flex-shrink:0;max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}.Column-singleLeadLeft{margin-right:30px}.Column-singleLeadLeft:after{clear:both;content:"";display:block}@media (min-width:760px){.Column-singleLeadLeft{margin-right:30px}.Column-singleLeadLeft:last-child{margin-right:0}.Column-singleLeadLeft{flex-grow:0;flex-shrink:0;max-width:calc(66.66667% - 30px);min-width:calc(66.66667% - 30px)}}@media (min-width:1020px){.Column-singleLeadLeft{flex-grow:0;flex-shrink:0;max-width:calc(66.66667% - 30px);min-width:calc(66.66667% - 30px)}}@media (min-width:1340px){.Column-singleLeadLeft{flex-grow:0;flex-shrink:0;max-width:calc(66.66667% - 30px);min-width:calc(66.66667% - 30px)}}.Column-imageDenseModRight{margin-right:30px}.Column-imageDenseModRight:after{clear:both;content:"";display:block}@media (min-width:760px){.Column-imageDenseModRight{margin-right:30px}.Column-imageDenseModRight:last-child{margin-right:0}}@media (min-width:360px) and (max-width:759px){.Column-imageDenseModRight{margin-right:0}}@media (min-width:760px){.Column-imageDenseModRight{flex-grow:0;flex-shrink:0;margin-bottom:35px;max-width:unset;min-width:unset;width:calc(66.66667% - 20px)}}.Column-imageDenseModRight .Column-featuredRectangleMedia{height:476px}.Column-singleLeadLeftPackage{background-color:#071d39;display:table;display:block;margin-left:-20px;margin-right:10px;padding:0 20px}.Column-singleLeadLeftPackage:after{clear:both;content:"";display:block}@media (min-width:760px){.Column-singleLeadLeftPackage{margin-right:30px}.Column-singleLeadLeftPackage:last-child{margin-right:0}.Column-singleLeadLeftPackage{flex-grow:0;flex-shrink:0;max-width:calc(66.66667% - 30px);min-width:calc(66.66667% - 30px)}}@media (min-width:1020px){.Column-singleLeadLeftPackage{flex-grow:0;flex-shrink:0;max-width:calc(66.66667% - 30px);min-width:calc(66.66667% - 30px)}}@media (min-width:1340px){.Column-singleLeadLeftPackage{flex-grow:0;flex-shrink:0;max-width:calc(66.66667% - 30px);min-width:calc(66.66667% - 30px)}}@media (min-width:760px){.Column-singleLeadLeftPackage{margin-left:0;margin-right:30px}}.Column-singleLeadRight{margin-right:30px}.Column-singleLeadRight:after{clear:both;content:"";display:block}@media (min-width:760px){.Column-singleLeadRight{margin-right:30px}.Column-singleLeadRight:last-child{margin-right:0}.Column-singleLeadRight{flex-grow:0;flex-shrink:0;max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.Column-singleLeadRight{flex-grow:0;flex-shrink:0;max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1340px){.Column-singleLeadRight{flex-grow:0;flex-shrink:0;max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}.Column-imageDenseModLeft{margin-right:30px}.Column-imageDenseModLeft:after{clear:both;content:"";display:block}@media (min-width:760px){.Column-imageDenseModLeft{margin-right:30px}.Column-imageDenseModLeft:last-child{margin-right:0}}@media (min-width:360px) and (max-width:759px){.Column-imageDenseModLeft{margin-right:0}}@media (min-width:760px){.Column-imageDenseModLeft{flex-grow:0;flex-shrink:0;margin-bottom:35px;max-width:unset;min-width:unset;width:calc(33.33333% - 10px)}}.Column-imageDenseModLeft .Column-standardBreakerCard .Column-squareMedia .Column-card{height:451px}.Column-singleLeadRightPackage{background-color:#071d39;display:table;display:block;margin-left:-20px;margin-right:10px;padding:0 20px}.Column-singleLeadRightPackage:after{clear:both;content:"";display:block}@media (min-width:760px){.Column-singleLeadRightPackage{margin-right:30px}.Column-singleLeadRightPackage:last-child{margin-right:0}.Column-singleLeadRightPackage{flex-grow:0;flex-shrink:0;max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.Column-singleLeadRightPackage{flex-grow:0;flex-shrink:0;max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1340px){.Column-singleLeadRightPackage{flex-grow:0;flex-shrink:0;max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:760px){.Column-singleLeadRightPackage{margin-left:0;margin-right:30px}}.Column-miniHeroLeft{margin-right:30px}.Column-miniHeroLeft:after{clear:both;content:"";display:block}@media (min-width:760px){.Column-miniHeroLeft{margin-right:30px}.Column-miniHeroLeft:last-child{margin-right:0}.Column-miniHeroLeft{flex-grow:0;flex-shrink:0;max-width:calc(66.66667% - 30px);min-width:calc(66.66667% - 30px)}}@media (min-width:1020px){.Column-miniHeroLeft{flex-grow:0;flex-shrink:0;max-width:calc(66.66667% - 30px);min-width:calc(66.66667% - 30px)}}@media (min-width:1340px){.Column-miniHeroLeft{flex-grow:0;flex-shrink:0;max-width:calc(66.66667% - 30px);min-width:calc(66.66667% - 30px)}}.Column-miniHeroRight{margin-right:30px}.Column-miniHeroRight:after{clear:both;content:"";display:block}@media (min-width:760px){.Column-miniHeroRight{margin-right:30px}.Column-miniHeroRight:last-child{margin-right:0}.Column-miniHeroRight{flex-grow:0;flex-shrink:0;max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.Column-miniHeroRight{flex-grow:0;flex-shrink:0;max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1340px){.Column-miniHeroRight{flex-grow:0;flex-shrink:0;max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}.Column-squareLeadLeft{margin-right:0}.Column-squareLeadLeft:after{clear:both;content:"";display:block}@media (min-width:760px){.Column-squareLeadLeft{margin-right:30px}.Column-squareLeadLeft:last-child{margin-right:0}.Column-squareLeadLeft{flex-grow:0;flex-shrink:0;max-width:calc(66.66667% - 30px);min-width:calc(66.66667% - 30px)}}@media (min-width:1020px){.Column-squareLeadLeft{flex-grow:0;flex-shrink:0;max-width:calc(66.66667% - 30px);min-width:calc(66.66667% - 30px)}}@media (min-width:1340px){.Column-squareLeadLeft{flex-grow:0;flex-shrink:0;max-width:unset;min-width:unset;width:calc(66.66667% - 20px)}}.Column-squareImageDenseLeft{margin-right:0}.Column-squareImageDenseLeft:after{clear:both;content:"";display:block}@media (min-width:760px){.Column-squareImageDenseLeft{margin-right:30px}.Column-squareImageDenseLeft:last-child{margin-right:0}.Column-squareImageDenseLeft{flex-grow:0;flex-shrink:0;margin-bottom:10px;max-width:unset;min-width:unset;width:calc(66.66667% - 10px)}}@media (min-width:1020px){.Column-squareImageDenseLeft{flex-grow:0;flex-shrink:0;margin-bottom:0;max-width:unset;min-width:unset;width:calc(66.66667% - 10px)}}@media (min-width:1340px){.Column-squareImageDenseLeft{flex-grow:0;flex-shrink:0;margin-bottom:0;max-width:unset;min-width:unset;width:calc(66.66667% - 10px)}}.Column-squareLeadLeftPackage{background-color:#071d39;display:table;display:block;margin-left:-20px;margin-right:10px;padding:0 20px}.Column-squareLeadLeftPackage:after{clear:both;content:"";display:block}@media (min-width:760px){.Column-squareLeadLeftPackage{margin-right:30px}.Column-squareLeadLeftPackage:last-child{margin-right:0}.Column-squareLeadLeftPackage{flex-grow:0;flex-shrink:0;max-width:calc(66.66667% - 30px);min-width:calc(66.66667% - 30px)}}@media (min-width:1020px){.Column-squareLeadLeftPackage{flex-grow:0;flex-shrink:0;max-width:calc(66.66667% - 30px);min-width:calc(66.66667% - 30px)}}@media (min-width:1340px){.Column-squareLeadLeftPackage{flex-grow:0;flex-shrink:0;max-width:calc(55.55556% - 30px);min-width:calc(55.55556% - 30px)}}@media (min-width:760px){.Column-squareLeadLeftPackage{margin-left:0;margin-right:30px}}.Column-squareLeadRight{margin-right:0}.Column-squareLeadRight:after{clear:both;content:"";display:block}@media (min-width:760px){.Column-squareLeadRight{margin-right:30px}.Column-squareLeadRight:last-child{margin-right:0}.Column-squareLeadRight{flex-grow:0;flex-shrink:0;max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.Column-squareLeadRight{flex-grow:0;flex-shrink:0;max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1340px){.Column-squareLeadRight{flex-grow:0;flex-shrink:0;max-width:unset;min-width:unset;width:calc(33.33333% - 10px)}}.Column-squareImageDenseRight{margin-right:0}.Column-squareImageDenseRight:after{clear:both;content:"";display:block}@media (min-width:760px){.Column-squareImageDenseRight{margin-right:30px}.Column-squareImageDenseRight:last-child{margin-right:0}.Column-squareImageDenseRight{flex-grow:0;flex-shrink:0;margin-bottom:10px;max-width:unset;min-width:unset;width:calc(33.33333% - 20px)}}@media (min-width:1020px){.Column-squareImageDenseRight{flex-grow:0;flex-shrink:0;margin-bottom:0;max-width:unset;min-width:unset;width:calc(33.33333% - 20px)}}@media (min-width:1340px){.Column-squareImageDenseRight{flex-grow:0;flex-shrink:0;margin-bottom:0;max-width:unset;min-width:unset;width:calc(33.33333% - 20px)}}.Column-squareLeadRightPackage{background-color:#071d39;display:table;display:block;margin-left:-20px;margin-right:10px;padding:0 20px}.Column-squareLeadRightPackage:after{clear:both;content:"";display:block}@media (min-width:760px){.Column-squareLeadRightPackage{margin-right:30px}.Column-squareLeadRightPackage:last-child{margin-right:0}.Column-squareLeadRightPackage{flex-grow:0;flex-shrink:0;max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.Column-squareLeadRightPackage{flex-grow:0;flex-shrink:0;max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1340px){.Column-squareLeadRightPackage{flex-grow:0;flex-shrink:0;max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}@media (min-width:760px){.Column-squareLeadRightPackage{margin-left:0;margin-right:30px}}.Column-threeUpUltraDense{border-bottom:1px dashed hsla(0,0%,55%,.5);margin:0}.Column-threeUpUltraDense:after{clear:both;content:"";display:block}@media (min-width:760px){.Column-threeUpUltraDense{margin-right:30px}.Column-threeUpUltraDense:last-child{margin-right:0}}.Column-threeUpUltraDense:nth-child(3n+3){border-bottom:none}@media (min-width:760px){.Column-threeUpUltraDense{border-bottom:none;flex-grow:0;flex-shrink:0;margin-right:30px;max-width:unset;min-width:unset;width:calc(33.33333% - 20px)}}.Column-dense,.Column-threeUp{border-bottom:1px dashed hsla(0,0%,55%,.5);margin:initial}.Column-dense:after,.Column-threeUp:after{clear:both;content:"";display:block}@media (min-width:760px){.Column-dense,.Column-threeUp{margin-right:30px}.Column-dense:last-child,.Column-threeUp:last-child{margin-right:0}}.Column-dense:last-child,.Column-threeUp:last-child{border-bottom:none}@media (min-width:760px){.Column-dense,.Column-threeUp{border-bottom:none;flex-grow:0;flex-shrink:0;margin-right:30px;max-width:unset;min-width:unset;width:calc(33.33333% - 20px)}}.Column-fourUp{margin-right:0}.Column-fourUp:after{clear:both;content:"";display:block}@media (min-width:760px){.Column-fourUp{margin-right:30px}.Column-fourUp:last-child{margin-right:0}.Column-fourUp{flex-grow:0;flex-shrink:0;max-width:unset;min-width:unset;width:100%}}@media (min-width:1020px){.Column-fourUp{flex-grow:0;flex-shrink:0;margin-right:27px;max-width:unset;min-width:unset;width:calc(25% - 20.25px)}}@media (min-width:1340px){.Column-fourUp{flex-grow:0;flex-shrink:0;margin-right:30px;max-width:unset;min-width:unset;width:calc(25% - 22.5px)}}.Column-threeUpStack{display:flex;flex-wrap:wrap;margin:0}.Column-threeUpStack:after{clear:both;content:"";display:block}@media (min-width:760px){.Column-threeUpStack{margin-right:30px}.Column-threeUpStack:last-child{margin-right:0}}@media (min-width:360px) and (max-width:759px){.Column-threeUpStack{padding-bottom:10px}}@media (min-width:760px){.Column-threeUpStack{border-bottom:none}}.Column-dense{margin-right:20px}@media only screen and (max-width:759px){.Column-dense:last-child{border-bottom:1px dashed hsla(0,0%,55%,.5)}}@media (min-width:760px){.Column-dense{max-width:calc(33.33333% - 14px)}}@media (min-width:1020px){.Column-dense{max-width:calc(33.33333% - 20px);min-width:calc(33.33333% - 20px);padding-bottom:30px}}@media (min-width:1340px){.Column-dense{max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}.Column-twoUp{margin-right:30px}.Column-twoUp:after{clear:both;content:"";display:block}@media (min-width:760px){.Column-twoUp{margin-right:30px}.Column-twoUp:last-child{margin-right:0}.Column-twoUp{flex-grow:0;flex-shrink:0;max-width:calc(50% - 30px);min-width:calc(50% - 30px)}}@media (min-width:1020px){.Column-twoUp{flex-grow:0;flex-shrink:0;max-width:calc(50% - 30px);min-width:calc(50% - 30px)}}@media (min-width:1340px){.Column-twoUp{flex-grow:0;flex-shrink:0;max-width:calc(44.44444% - 30px);min-width:calc(44.44444% - 30px)}}.Column-imageDenseLeft{margin-right:30px}.Column-imageDenseLeft:after{clear:both;content:"";display:block}@media (min-width:760px){.Column-imageDenseLeft{margin-right:30px}.Column-imageDenseLeft:last-child{margin-right:0}.Column-imageDenseLeft{flex-grow:0;flex-shrink:0;max-width:calc(66.66667% - 30px);min-width:calc(66.66667% - 30px)}}@media (min-width:1020px){.Column-imageDenseLeft{flex-grow:0;flex-shrink:0;max-width:calc(66.66667% - 30px);min-width:calc(66.66667% - 30px)}}@media (min-width:1340px){.Column-imageDenseLeft{flex-grow:0;flex-shrink:0;max-width:calc(66.66667% - 30px);min-width:calc(66.66667% - 30px)}}@media only screen and (max-width:759px){.Column-imageDenseLeft .Card-card{margin-bottom:22px}.Column-imageDenseLeft .Card-card:last-child{margin-bottom:0}}.Column-imageDenseRight{margin-right:30px}.Column-imageDenseRight .Card-card .Card-title{font-weight:500}@media (max-width:759px){.Column-imageDenseRight .Card-card .Card-title{font-size:17px}}.Column-imageDenseRight:after{clear:both;content:"";display:block}@media (min-width:760px){.Column-imageDenseRight{margin-right:30px}.Column-imageDenseRight:last-child{margin-right:0}.Column-imageDenseRight{flex-grow:0;flex-shrink:0;max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1020px){.Column-imageDenseRight{flex-grow:0;flex-shrink:0;max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1340px){.Column-imageDenseRight{flex-grow:0;flex-shrink:0;max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}.Column-dynamicContentMobile{display:flex;flex-wrap:wrap;justify-content:space-between;margin-right:0}.Column-dynamicContentMobile:after{clear:both;content:"";display:block}@media (min-width:760px){.Column-dynamicContentMobile{margin-right:30px}.Column-dynamicContentMobile:last-child{margin-right:0}}.Column-dynamicContentMobile>div:nth-child(2n){margin-left:30px}.Column-oneImageDense{display:flex;flex-wrap:wrap;justify-content:space-between;margin-right:0}.Column-oneImageDense:after{clear:both;content:"";display:block}@media (min-width:760px){.Column-oneImageDense{margin-right:30px}.Column-oneImageDense:last-child{margin-right:0}.Column-oneImageDense{flex-grow:0;flex-shrink:0;max-width:unset;min-width:unset;width:100%}}.Column-oneImageDense>div:nth-child(2n){margin-left:30px}.Column-flexibleLabel{border-top:5px solid #002f6c;color:#002f6c;display:block;font-size:16px;font-weight:800;line-height:19px;padding:10px 0 0;text-transform:uppercase}.Column-flexibleLabel:hover{color:#2077b6}@media (min-width:760px){.Column-flexibleLabel{padding-bottom:10px}}@media (min-width:1020px){.Column-flexibleLabel{padding-bottom:10px}}@media (min-width:1340px){.Column-flexibleLabel{font-size:18px;padding-bottom:20px}}.Column-topBorder{border-top:1px dashed hsla(0,0%,55%,.5);padding-top:15px}@media (min-width:760px){.Column-topBorder{border-top:none;padding-top:0}}.Column-topMargin{margin-top:20px}@media (min-width:760px){.Column-topMargin{margin-top:0}}.Column-videoFeatured{margin-right:0}.Column-videoFeatured:after{clear:both;content:"";display:block}@media (min-width:760px){.Column-videoFeatured{margin-right:30px}.Column-videoFeatured:last-child{margin-right:0}.Column-videoFeatured{flex-grow:0;flex-shrink:0;max-width:unset;min-width:unset;width:100%}}@media (min-width:1020px){.Column-videoFeatured{flex-grow:0;flex-shrink:0;margin-top:-20px;max-width:calc(33.33333% - 30px);min-width:calc(33.33333% - 30px)}}@media (min-width:1340px){.Column-videoFeatured{flex-grow:0;flex-shrink:0;max-width:unset;min-width:unset;width:calc(33.33333% - 10px)}}
/*# sourceMappingURL=source-maps/2554-b7b3a1f0be0c8c16b73c.css.map*/
.PlayButton-container{border-top:6px solid #fcb700;height:100%;left:0;position:absolute;top:0;width:100%;z-index:1}.PlayButton-base{align-items:center;background-color:#fcb700;color:#fff;display:flex;font-size:12px;height:40px;justify-content:center;position:absolute;right:0;top:-5px;transition:all .15s linear;width:40px;z-index:1}@media (min-width:760px){.PlayButton-base{font-size:14px;height:50px;width:50px}}@media (min-width:760px){.PlayButton-featured{font-size:22px;height:80px;width:80px}}@media (min-width:1340px){.PlayButton-featuredMediaPlaybutton{height:100px;width:100px}}[data-type=playlist]{box-shadow:inset 10 2px 10px #dcffa6,10 2px 15px #000}.PlayButton-icon{align-items:center;border:2px solid #fcb700;display:flex;height:30px;justify-content:center;transition:border .15s linear;width:30px;z-index:2}.PlayButton-base:hover .PlayButton-icon,a:focus .PlayButton-icon,a:hover .PlayButton-icon,button:focus .PlayButton-icon,button:hover .PlayButton-icon{border:2px solid #fff}@media (min-width:760px){.PlayButton-icon{height:40px;width:40px}.PlayButton-featured .PlayButton-icon{border:2px solid #fcb700;height:60px;width:60px}}.PlayButton-flyout{align-items:center;background-color:#fcb700;color:rgba(7,29,57,0);display:flex;font-size:9px;font-weight:800;height:100%;justify-content:center;letter-spacing:1px;line-height:1;position:absolute;right:35px;text-align:left;text-transform:uppercase;top:0;transform:scaleX(0);transform-origin:center right;transition:color .15s linear,transform .15s linear .15s;width:90px;z-index:1}.PlayButton-base:hover .PlayButton-flyout,a:focus .PlayButton-flyout,a:hover .PlayButton-flyout,button:focus .PlayButton-flyout,button:hover .PlayButton-flyout{color:#071d39;transform:scaleX(1);transition:color .15s linear .15s,transform .15s linear}@media (min-width:760px){.PlayButton-flyout{font-size:12px;letter-spacing:2.2px;text-align:center;width:130px}.PlayButton-featured .PlayButton-flyout{font-size:20px;right:80px;width:200px}}@media (max-width:1019px){.PlayButton-base:hover .PlayButton-flyout.PlayButton-suppressFlyout,a:focus .PlayButton-flyout.PlayButton-suppressFlyout,a:hover .PlayButton-flyout.PlayButton-suppressFlyout,button:focus .PlayButton-flyout.PlayButton-suppressFlyout,button:hover .PlayButton-flyout.PlayButton-suppressFlyout{transform:scaleX(0)}}@media (min-width:1340px){.PlayButton-flyout{right:35px}}@media (max-width:759px){.FeaturedVideoModule-videoPlayerContainer .PlayButton-base{font-size:18px;height:60px;width:60px}.Card-featuredRectangleMediaImagedense .PlayButton-flyout,.InlineVideo-wrapper .PlayButton-flyout{justify-content:center;right:30px}.FeaturedVideoModule-videoPlayerContainer .PlayButton-featured .PlayButton-flyout{font-size:20px;right:40px;width:200px}}.FeaturedVideoModule-videoPlayerContainer .PlayButton-flyout{justify-content:center}.PlayButton-hover{color:#071d39;transform:scaleX(1);transition:color .15s linear .15s,transform .15s linear}@media (max-width:759px){.PlayButton-hover.PlayButton-suppressFlyout{transform:scaleX(0)}}.PlayButton-featured .PlayButton-iconHover{border:2px solid #fff;transition:border .15s linear}.PlayButton-playlistWrapper{position:relative}.PlayButton-playlist{background-color:#fff;box-shadow:-5px 5px 0 0 #fcb700;height:35px;position:absolute;right:5px;top:5px;width:40px}.PlayButton-playlist:hover,a:focus .PlayButton-playlist,a:hover .PlayButton-playlist,button:focus .PlayButton-playlist,button:hover .PlayButton-playlist{visibility:hidden}@media (min-width:760px){.PlayButton-playlist{height:45px;width:50px}}@media (min-width:760px){.PlayButton-featuredPlaylist{height:75px;width:80px}}.PlayButton-sizeVariationOne.PlayButton-container{border-top:4px solid #fcb700}.PlayButton-sizeVariationOne .PlayButton-base{height:40px;top:-4px;width:40px}@media (min-width:760px){.PlayButton-sizeVariationOne .PlayButton-base{height:25px;width:25px}}@media (min-width:1340px){.PlayButton-sizeVariationOne .PlayButton-base{height:40px;width:40px}}.PlayButton-sizeVariationOne .PlayButton-icon{font-size:14px;height:40px;width:40px}@media (min-width:760px){.PlayButton-sizeVariationOne .PlayButton-icon{font-size:10px;height:25px;width:25px}}@media (min-width:1340px){.PlayButton-sizeVariationOne .PlayButton-icon{font-size:14px;height:40px;width:40px}}.PlayButton-base:hover .PlayButton-sizeVariationOne .PlayButton-icon,a:focus .PlayButton-sizeVariationOne .PlayButton-icon,a:hover .PlayButton-sizeVariationOne .PlayButton-icon,button:focus .PlayButton-sizeVariationOne .PlayButton-icon,button:hover .PlayButton-sizeVariationOne .PlayButton-icon{border:2px solid #fcb700}@media (min-width:760px){.PlayButton-sizeVariationOne .PlayButton-flyout{right:10px}}@media (min-width:1340px){.PlayButton-sizeVariationOne .PlayButton-flyout{right:35px}}.PlayButton-sizeVariationFive.PlayButton-container{border-top:6px solid #fcb700}.PlayButton-sizeVariationFive .PlayButton-base{font-size:11px;height:38px;width:38px}.PlayButton-sizeVariationFive .PlayButton-icon{font-size:14px;height:26px;width:26px}.PlayButton-base:hover .PlayButton-sizeVariationFive .PlayButton-icon,a:focus .PlayButton-sizeVariationFive .PlayButton-icon,a:hover .PlayButton-sizeVariationFive .PlayButton-icon,button:focus .PlayButton-sizeVariationFive .PlayButton-icon,button:hover .PlayButton-sizeVariationFive .PlayButton-icon{border:1px solid #fff}.PlayButton-sizeVariationFive .PlayButton-flyout{font-size:10px;font-weight:900;height:38px;letter-spacing:1px;line-height:12px;width:84px}.PlayButton-smallVersion .PlayButton-base{height:29px;top:-4px;width:29px}@media (min-width:760px){.PlayButton-smallVersion .PlayButton-base{height:38px;width:38px}}.PlayButton-smallVersion .PlayButton-flyout{font-size:8px;right:29px;width:71px}@media (min-width:760px){.PlayButton-smallVersion .PlayButton-flyout{font-size:12px;right:35px;width:85px}}@media (min-width:1020px){.PlayButton-smallVersion .PlayButton-flyout{width:77px}}@media (min-width:1340px){.PlayButton-smallVersion .PlayButton-flyout{width:85px}}.PlayButton-smallVersion .PlayButton-icon{font-size:12px;height:29px;width:29px}@media (min-width:760px){.PlayButton-smallVersion .PlayButton-icon{font-size:13px;height:38px;width:38px}}.PlayButton-base:hover .PlayButton-smallVersion .PlayButton-icon,a:focus .PlayButton-smallVersion .PlayButton-icon,a:hover .PlayButton-smallVersion .PlayButton-icon,button:focus .PlayButton-smallVersion .PlayButton-icon,button:hover .PlayButton-smallVersion .PlayButton-icon{border:2px solid #fcb700}
/*# sourceMappingURL=source-maps/9275-87526dd3dd902e252cba.css.map*/</style><script type="text/javascript">
;window.NREUM||(NREUM={});NREUM.init={privacy:{cookies_enabled:true}};
window.NREUM||(NREUM={}),__nr_require=function(t,e,n){function r(n){if(!e[n]){var i=e[n]={exports:{}};t[n][0].call(i.exports,function(e){var i=t[n][1][e];return r(i||e)},i,i.exports)}return e[n].exports}if("function"==typeof __nr_require)return __nr_require;for(var i=0;i<n.length;i++)r(n[i]);return r}({1:[function(t,e,n){function r(t){try{c.console&&console.log(t)}catch(e){}}var i,o=t("ee"),a=t(23),c={};try{i=localStorage.getItem("__nr_flags").split(","),console&&"function"==typeof console.log&&(c.console=!0,i.indexOf("dev")!==-1&&(c.dev=!0),i.indexOf("nr_dev")!==-1&&(c.nrDev=!0))}catch(s){}c.nrDev&&o.on("internal-error",function(t){r(t.stack)}),c.dev&&o.on("fn-err",function(t,e,n){r(n.stack)}),c.dev&&(r("NR AGENT IN DEVELOPMENT MODE"),r("flags: "+a(c,function(t,e){return t}).join(", ")))},{}],2:[function(t,e,n){function r(t,e,n,r,c){try{p?p-=1:i(c||new UncaughtException(t,e,n),!0)}catch(f){try{o("ierr",[f,s.now(),!0])}catch(d){}}return"function"==typeof u&&u.apply(this,a(arguments))}function UncaughtException(t,e,n){this.message=t||"Uncaught error with no additional information",this.sourceURL=e,this.line=n}function i(t,e){var n=e?null:s.now();o("err",[t,n])}var o=t("handle"),a=t(24),c=t("ee"),s=t("loader"),f=t("gos"),u=window.onerror,d=!1,l="nr@seenError",p=0;s.features.err=!0,t(1),window.onerror=r;try{throw new Error}catch(h){"stack"in h&&(t(9),t(8),"addEventListener"in window&&t(5),s.xhrWrappable&&t(10),d=!0)}c.on("fn-start",function(t,e,n){d&&(p+=1)}),c.on("fn-err",function(t,e,n){d&&!n[l]&&(f(n,l,function(){return!0}),this.thrown=!0,i(n))}),c.on("fn-end",function(){d&&!this.thrown&&p>0&&(p-=1)}),c.on("internal-error",function(t){o("ierr",[t,s.now(),!0])})},{}],3:[function(t,e,n){t("loader").features.ins=!0},{}],4:[function(t,e,n){function r(t){}if(window.performance&&window.performance.timing&&window.performance.getEntriesByType){var i=t("ee"),o=t("handle"),a=t(9),c=t(8),s="learResourceTimings",f="addEventListener",u="resourcetimingbufferfull",d="bstResource",l="resource",p="-start",h="-end",m="fn"+p,w="fn"+h,v="bstTimer",g="pushState",y=t("loader");y.features.stn=!0,t(7),"addEventListener"in window&&t(5);var x=NREUM.o.EV;i.on(m,function(t,e){var n=t[0];n instanceof x&&(this.bstStart=y.now())}),i.on(w,function(t,e){var n=t[0];n instanceof x&&o("bst",[n,e,this.bstStart,y.now()])}),a.on(m,function(t,e,n){this.bstStart=y.now(),this.bstType=n}),a.on(w,function(t,e){o(v,[e,this.bstStart,y.now(),this.bstType])}),c.on(m,function(){this.bstStart=y.now()}),c.on(w,function(t,e){o(v,[e,this.bstStart,y.now(),"requestAnimationFrame"])}),i.on(g+p,function(t){this.time=y.now(),this.startPath=location.pathname+location.hash}),i.on(g+h,function(t){o("bstHist",[location.pathname+location.hash,this.startPath,this.time])}),f in window.performance&&(window.performance["c"+s]?window.performance[f](u,function(t){o(d,[window.performance.getEntriesByType(l)]),window.performance["c"+s]()},!1):window.performance[f]("webkit"+u,function(t){o(d,[window.performance.getEntriesByType(l)]),window.performance["webkitC"+s]()},!1)),document[f]("scroll",r,{passive:!0}),document[f]("keypress",r,!1),document[f]("click",r,!1)}},{}],5:[function(t,e,n){function r(t){for(var e=t;e&&!e.hasOwnProperty(u);)e=Object.getPrototypeOf(e);e&&i(e)}function i(t){c.inPlace(t,[u,d],"-",o)}function o(t,e){return t[1]}var a=t("ee").get("events"),c=t("wrap-function")(a,!0),s=t("gos"),f=XMLHttpRequest,u="addEventListener",d="removeEventListener";e.exports=a,"getPrototypeOf"in Object?(r(document),r(window),r(f.prototype)):f.prototype.hasOwnProperty(u)&&(i(window),i(f.prototype)),a.on(u+"-start",function(t,e){var n=t[1],r=s(n,"nr@wrapped",function(){function t(){if("function"==typeof n.handleEvent)return n.handleEvent.apply(n,arguments)}var e={object:t,"function":n}[typeof n];return e?c(e,"fn-",null,e.name||"anonymous"):n});this.wrapped=t[1]=r}),a.on(d+"-start",function(t){t[1]=this.wrapped||t[1]})},{}],6:[function(t,e,n){function r(t,e,n){var r=t[e];"function"==typeof r&&(t[e]=function(){var t=o(arguments),e={};i.emit(n+"before-start",[t],e);var a;e[m]&&e[m].dt&&(a=e[m].dt);var c=r.apply(this,t);return i.emit(n+"start",[t,a],c),c.then(function(t){return i.emit(n+"end",[null,t],c),t},function(t){throw i.emit(n+"end",[t],c),t})})}var i=t("ee").get("fetch"),o=t(24),a=t(23);e.exports=i;var c=window,s="fetch-",f=s+"body-",u=["arrayBuffer","blob","json","text","formData"],d=c.Request,l=c.Response,p=c.fetch,h="prototype",m="nr@context";d&&l&&p&&(a(u,function(t,e){r(d[h],e,f),r(l[h],e,f)}),r(c,"fetch",s),i.on(s+"end",function(t,e){var n=this;if(e){var r=e.headers.get("content-length");null!==r&&(n.rxSize=r),i.emit(s+"done",[null,e],n)}else i.emit(s+"done",[t],n)}))},{}],7:[function(t,e,n){var r=t("ee").get("history"),i=t("wrap-function")(r);e.exports=r;var o=window.history&&window.history.constructor&&window.history.constructor.prototype,a=window.history;o&&o.pushState&&o.replaceState&&(a=o),i.inPlace(a,["pushState","replaceState"],"-")},{}],8:[function(t,e,n){var r=t("ee").get("raf"),i=t("wrap-function")(r),o="equestAnimationFrame";e.exports=r,i.inPlace(window,["r"+o,"mozR"+o,"webkitR"+o,"msR"+o],"raf-"),r.on("raf-start",function(t){t[0]=i(t[0],"fn-")})},{}],9:[function(t,e,n){function r(t,e,n){t[0]=a(t[0],"fn-",null,n)}function i(t,e,n){this.method=n,this.timerDuration=isNaN(t[1])?0:+t[1],t[0]=a(t[0],"fn-",this,n)}var o=t("ee").get("timer"),a=t("wrap-function")(o),c="setTimeout",s="setInterval",f="clearTimeout",u="-start",d="-";e.exports=o,a.inPlace(window,[c,"setImmediate"],c+d),a.inPlace(window,[s],s+d),a.inPlace(window,[f,"clearImmediate"],f+d),o.on(s+u,r),o.on(c+u,i)},{}],10:[function(t,e,n){function r(t,e){d.inPlace(e,["onreadystatechange"],"fn-",c)}function i(){var t=this,e=u.context(t);t.readyState>3&&!e.resolved&&(e.resolved=!0,u.emit("xhr-resolved",[],t)),d.inPlace(t,g,"fn-",c)}function o(t){y.push(t),h&&(b?b.then(a):w?w(a):(E=-E,R.data=E))}function a(){for(var t=0;t<y.length;t++)r([],y[t]);y.length&&(y=[])}function c(t,e){return e}function s(t,e){for(var n in t)e[n]=t[n];return e}t(5);var f=t("ee"),u=f.get("xhr"),d=t("wrap-function")(u),l=NREUM.o,p=l.XHR,h=l.MO,m=l.PR,w=l.SI,v="readystatechange",g=["onload","onerror","onabort","onloadstart","onloadend","onprogress","ontimeout"],y=[];e.exports=u;var x=window.XMLHttpRequest=function(t){var e=new p(t);try{u.emit("new-xhr",[e],e),e.addEventListener(v,i,!1)}catch(n){try{u.emit("internal-error",[n])}catch(r){}}return e};if(s(p,x),x.prototype=p.prototype,d.inPlace(x.prototype,["open","send"],"-xhr-",c),u.on("send-xhr-start",function(t,e){r(t,e),o(e)}),u.on("open-xhr-start",r),h){var b=m&&m.resolve();if(!w&&!m){var E=1,R=document.createTextNode(E);new h(a).observe(R,{characterData:!0})}}else f.on("fn-end",function(t){t[0]&&t[0].type===v||a()})},{}],11:[function(t,e,n){function r(t){if(!c(t))return null;var e=window.NREUM;if(!e.loader_config)return null;var n=(e.loader_config.accountID||"").toString()||null,r=(e.loader_config.agentID||"").toString()||null,f=(e.loader_config.trustKey||"").toString()||null;if(!n||!r)return null;var h=p.generateSpanId(),m=p.generateTraceId(),w=Date.now(),v={spanId:h,traceId:m,timestamp:w};return(t.sameOrigin||s(t)&&l())&&(v.traceContextParentHeader=i(h,m),v.traceContextStateHeader=o(h,w,n,r,f)),(t.sameOrigin&&!u()||!t.sameOrigin&&s(t)&&d())&&(v.newrelicHeader=a(h,m,w,n,r,f)),v}function i(t,e){return"00-"+e+"-"+t+"-01"}function o(t,e,n,r,i){var o=0,a="",c=1,s="",f="";return i+"@nr="+o+"-"+c+"-"+n+"-"+r+"-"+t+"-"+a+"-"+s+"-"+f+"-"+e}function a(t,e,n,r,i,o){var a="btoa"in window&&"function"==typeof window.btoa;if(!a)return null;var c={v:[0,1],d:{ty:"Browser",ac:r,ap:i,id:t,tr:e,ti:n}};return o&&r!==o&&(c.d.tk=o),btoa(JSON.stringify(c))}function c(t){return f()&&s(t)}function s(t){var e=!1,n={};if("init"in NREUM&&"distributed_tracing"in NREUM.init&&(n=NREUM.init.distributed_tracing),t.sameOrigin)e=!0;else if(n.allowed_origins instanceof Array)for(var r=0;r<n.allowed_origins.length;r++){var i=h(n.allowed_origins[r]);if(t.hostname===i.hostname&&t.protocol===i.protocol&&t.port===i.port){e=!0;break}}return e}function f(){return"init"in NREUM&&"distributed_tracing"in NREUM.init&&!!NREUM.init.distributed_tracing.enabled}function u(){return"init"in NREUM&&"distributed_tracing"in NREUM.init&&!!NREUM.init.distributed_tracing.exclude_newrelic_header}function d(){return"init"in NREUM&&"distributed_tracing"in NREUM.init&&NREUM.init.distributed_tracing.cors_use_newrelic_header!==!1}function l(){return"init"in NREUM&&"distributed_tracing"in NREUM.init&&!!NREUM.init.distributed_tracing.cors_use_tracecontext_headers}var p=t(20),h=t(13);e.exports={generateTracePayload:r,shouldGenerateTrace:c}},{}],12:[function(t,e,n){function r(t){var e=this.params,n=this.metrics;if(!this.ended){this.ended=!0;for(var r=0;r<l;r++)t.removeEventListener(d[r],this.listener,!1);e.aborted||(n.duration=a.now()-this.startTime,this.loadCaptureCalled||4!==t.readyState?null==e.status&&(e.status=0):o(this,t),n.cbTime=this.cbTime,u.emit("xhr-done",[t],t),c("xhr",[e,n,this.startTime]))}}function i(t,e){var n=s(e),r=t.params;r.host=n.hostname+":"+n.port,r.pathname=n.pathname,t.parsedOrigin=s(e),t.sameOrigin=t.parsedOrigin.sameOrigin}function o(t,e){t.params.status=e.status;var n=w(e,t.lastSize);if(n&&(t.metrics.rxSize=n),t.sameOrigin){var r=e.getResponseHeader("X-NewRelic-App-Data");r&&(t.params.cat=r.split(", ").pop())}t.loadCaptureCalled=!0}var a=t("loader");if(a.xhrWrappable){var c=t("handle"),s=t(13),f=t(11).generateTracePayload,u=t("ee"),d=["load","error","abort","timeout"],l=d.length,p=t("id"),h=t(17),m=t(16),w=t(14),v=window.XMLHttpRequest;a.features.xhr=!0,t(10),t(6),u.on("new-xhr",function(t){var e=this;e.totalCbs=0,e.called=0,e.cbTime=0,e.end=r,e.ended=!1,e.xhrGuids={},e.lastSize=null,e.loadCaptureCalled=!1,t.addEventListener("load",function(n){o(e,t)},!1),h&&(h>34||h<10)||window.opera||t.addEventListener("progress",function(t){e.lastSize=t.loaded},!1)}),u.on("open-xhr-start",function(t){this.params={method:t[0]},i(this,t[1]),this.metrics={}}),u.on("open-xhr-end",function(t,e){"loader_config"in NREUM&&"xpid"in NREUM.loader_config&&this.sameOrigin&&e.setRequestHeader("X-NewRelic-ID",NREUM.loader_config.xpid);var n=f(this.parsedOrigin);if(n){var r=!1;n.newrelicHeader&&(e.setRequestHeader("newrelic",n.newrelicHeader),r=!0),n.traceContextParentHeader&&(e.setRequestHeader("traceparent",n.traceContextParentHeader),n.traceContextStateHeader&&e.setRequestHeader("tracestate",n.traceContextStateHeader),r=!0),r&&(this.dt=n)}}),u.on("send-xhr-start",function(t,e){var n=this.metrics,r=t[0],i=this;if(n&&r){var o=m(r);o&&(n.txSize=o)}this.startTime=a.now(),this.listener=function(t){try{"abort"!==t.type||i.loadCaptureCalled||(i.params.aborted=!0),("load"!==t.type||i.called===i.totalCbs&&(i.onloadCalled||"function"!=typeof e.onload))&&i.end(e)}catch(n){try{u.emit("internal-error",[n])}catch(r){}}};for(var c=0;c<l;c++)e.addEventListener(d[c],this.listener,!1)}),u.on("xhr-cb-time",function(t,e,n){this.cbTime+=t,e?this.onloadCalled=!0:this.called+=1,this.called!==this.totalCbs||!this.onloadCalled&&"function"==typeof n.onload||this.end(n)}),u.on("xhr-load-added",function(t,e){var n=""+p(t)+!!e;this.xhrGuids&&!this.xhrGuids[n]&&(this.xhrGuids[n]=!0,this.totalCbs+=1)}),u.on("xhr-load-removed",function(t,e){var n=""+p(t)+!!e;this.xhrGuids&&this.xhrGuids[n]&&(delete this.xhrGuids[n],this.totalCbs-=1)}),u.on("addEventListener-end",function(t,e){e instanceof v&&"load"===t[0]&&u.emit("xhr-load-added",[t[1],t[2]],e)}),u.on("removeEventListener-end",function(t,e){e instanceof v&&"load"===t[0]&&u.emit("xhr-load-removed",[t[1],t[2]],e)}),u.on("fn-start",function(t,e,n){e instanceof v&&("onload"===n&&(this.onload=!0),("load"===(t[0]&&t[0].type)||this.onload)&&(this.xhrCbStart=a.now()))}),u.on("fn-end",function(t,e){this.xhrCbStart&&u.emit("xhr-cb-time",[a.now()-this.xhrCbStart,this.onload,e],e)}),u.on("fetch-before-start",function(t){function e(t,e){var n=!1;return e.newrelicHeader&&(t.set("newrelic",e.newrelicHeader),n=!0),e.traceContextParentHeader&&(t.set("traceparent",e.traceContextParentHeader),e.traceContextStateHeader&&t.set("tracestate",e.traceContextStateHeader),n=!0),n}var n,r=t[1]||{};"string"==typeof t[0]?n=t[0]:t[0]&&t[0].url?n=t[0].url:window.URL&&t[0]&&t[0]instanceof URL&&(n=t[0].href),n&&(this.parsedOrigin=s(n),this.sameOrigin=this.parsedOrigin.sameOrigin);var i=f(this.parsedOrigin);if(i&&(i.newrelicHeader||i.traceContextParentHeader))if("string"==typeof t[0]||window.URL&&t[0]&&t[0]instanceof URL){var o={};for(var a in r)o[a]=r[a];o.headers=new Headers(r.headers||{}),e(o.headers,i)&&(this.dt=i),t.length>1?t[1]=o:t.push(o)}else t[0]&&t[0].headers&&e(t[0].headers,i)&&(this.dt=i)})}},{}],13:[function(t,e,n){var r={};e.exports=function(t){if(t in r)return r[t];var e=document.createElement("a"),n=window.location,i={};e.href=t,i.port=e.port;var o=e.href.split("://");!i.port&&o[1]&&(i.port=o[1].split("/")[0].split("@").pop().split(":")[1]),i.port&&"0"!==i.port||(i.port="https"===o[0]?"443":"80"),i.hostname=e.hostname||n.hostname,i.pathname=e.pathname,i.protocol=o[0],"/"!==i.pathname.charAt(0)&&(i.pathname="/"+i.pathname);var a=!e.protocol||":"===e.protocol||e.protocol===n.protocol,c=e.hostname===document.domain&&e.port===n.port;return i.sameOrigin=a&&(!e.hostname||c),"/"===i.pathname&&(r[t]=i),i}},{}],14:[function(t,e,n){function r(t,e){var n=t.responseType;return"json"===n&&null!==e?e:"arraybuffer"===n||"blob"===n||"json"===n?i(t.response):"text"===n||""===n||void 0===n?i(t.responseText):void 0}var i=t(16);e.exports=r},{}],15:[function(t,e,n){function r(){}function i(t,e,n){return function(){return o(t,[f.now()].concat(c(arguments)),e?null:this,n),e?void 0:this}}var o=t("handle"),a=t(23),c=t(24),s=t("ee").get("tracer"),f=t("loader"),u=NREUM;"undefined"==typeof window.newrelic&&(newrelic=u);var d=["setPageViewName","setCustomAttribute","setErrorHandler","finished","addToTrace","inlineHit","addRelease"],l="api-",p=l+"ixn-";a(d,function(t,e){u[e]=i(l+e,!0,"api")}),u.addPageAction=i(l+"addPageAction",!0),u.setCurrentRouteName=i(l+"routeName",!0),e.exports=newrelic,u.interaction=function(){return(new r).get()};var h=r.prototype={createTracer:function(t,e){var n={},r=this,i="function"==typeof e;return o(p+"tracer",[f.now(),t,n],r),function(){if(s.emit((i?"":"no-")+"fn-start",[f.now(),r,i],n),i)try{return e.apply(this,arguments)}catch(t){throw s.emit("fn-err",[arguments,this,t],n),t}finally{s.emit("fn-end",[f.now()],n)}}}};a("actionText,setName,setAttribute,save,ignore,onEnd,getContext,end,get".split(","),function(t,e){h[e]=i(p+e)}),newrelic.noticeError=function(t,e){"string"==typeof t&&(t=new Error(t)),o("err",[t,f.now(),!1,e])}},{}],16:[function(t,e,n){e.exports=function(t){if("string"==typeof t&&t.length)return t.length;if("object"==typeof t){if("undefined"!=typeof ArrayBuffer&&t instanceof ArrayBuffer&&t.byteLength)return t.byteLength;if("undefined"!=typeof Blob&&t instanceof Blob&&t.size)return t.size;if(!("undefined"!=typeof FormData&&t instanceof FormData))try{return JSON.stringify(t).length}catch(e){return}}}},{}],17:[function(t,e,n){var r=0,i=navigator.userAgent.match(/Firefox[\/\s](\d+\.\d+)/);i&&(r=+i[1]),e.exports=r},{}],18:[function(t,e,n){function r(){return c.exists&&performance.now?Math.round(performance.now()):(o=Math.max((new Date).getTime(),o))-a}function i(){return o}var o=(new Date).getTime(),a=o,c=t(25);e.exports=r,e.exports.offset=a,e.exports.getLastTimestamp=i},{}],19:[function(t,e,n){function r(t,e){var n=t.getEntries();n.forEach(function(t){"first-paint"===t.name?d("timing",["fp",Math.floor(t.startTime)]):"first-contentful-paint"===t.name&&d("timing",["fcp",Math.floor(t.startTime)])})}function i(t,e){var n=t.getEntries();n.length>0&&d("lcp",[n[n.length-1]])}function o(t){t.getEntries().forEach(function(t){t.hadRecentInput||d("cls",[t])})}function a(t){if(t instanceof h&&!w){var e=Math.round(t.timeStamp),n={type:t.type};e<=l.now()?n.fid=l.now()-e:e>l.offset&&e<=Date.now()?(e-=l.offset,n.fid=l.now()-e):e=l.now(),w=!0,d("timing",["fi",e,n])}}function c(t){d("pageHide",[l.now(),t])}if(!("init"in NREUM&&"page_view_timing"in NREUM.init&&"enabled"in NREUM.init.page_view_timing&&NREUM.init.page_view_timing.enabled===!1)){var s,f,u,d=t("handle"),l=t("loader"),p=t(22),h=NREUM.o.EV;if("PerformanceObserver"in window&&"function"==typeof window.PerformanceObserver){s=new PerformanceObserver(r);try{s.observe({entryTypes:["paint"]})}catch(m){}f=new PerformanceObserver(i);try{f.observe({entryTypes:["largest-contentful-paint"]})}catch(m){}u=new PerformanceObserver(o);try{u.observe({type:"layout-shift",buffered:!0})}catch(m){}}if("addEventListener"in document){var w=!1,v=["click","keydown","mousedown","pointerdown","touchstart"];v.forEach(function(t){document.addEventListener(t,a,!1)})}p(c)}},{}],20:[function(t,e,n){function r(){function t(){return e?15&e[n++]:16*Math.random()|0}var e=null,n=0,r=window.crypto||window.msCrypto;r&&r.getRandomValues&&(e=r.getRandomValues(new Uint8Array(31)));for(var i,o="xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx",a="",c=0;c<o.length;c++)i=o[c],"x"===i?a+=t().toString(16):"y"===i?(i=3&t()|8,a+=i.toString(16)):a+=i;return a}function i(){return a(16)}function o(){return a(32)}function a(t){function e(){return n?15&n[r++]:16*Math.random()|0}var n=null,r=0,i=window.crypto||window.msCrypto;i&&i.getRandomValues&&Uint8Array&&(n=i.getRandomValues(new Uint8Array(31)));for(var o=[],a=0;a<t;a++)o.push(e().toString(16));return o.join("")}e.exports={generateUuid:r,generateSpanId:i,generateTraceId:o}},{}],21:[function(t,e,n){function r(t,e){if(!i)return!1;if(t!==i)return!1;if(!e)return!0;if(!o)return!1;for(var n=o.split("."),r=e.split("."),a=0;a<r.length;a++)if(r[a]!==n[a])return!1;return!0}var i=null,o=null,a=/Version\/(\S+)\s+Safari/;if(navigator.userAgent){var c=navigator.userAgent,s=c.match(a);s&&c.indexOf("Chrome")===-1&&c.indexOf("Chromium")===-1&&(i="Safari",o=s[1])}e.exports={agent:i,version:o,match:r}},{}],22:[function(t,e,n){function r(t){function e(){t(a&&document[a]?document[a]:document[i]?"hidden":"visible")}"addEventListener"in document&&o&&document.addEventListener(o,e,!1)}e.exports=r;var i,o,a;"undefined"!=typeof document.hidden?(i="hidden",o="visibilitychange",a="visibilityState"):"undefined"!=typeof document.msHidden?(i="msHidden",o="msvisibilitychange"):"undefined"!=typeof document.webkitHidden&&(i="webkitHidden",o="webkitvisibilitychange",a="webkitVisibilityState")},{}],23:[function(t,e,n){function r(t,e){var n=[],r="",o=0;for(r in t)i.call(t,r)&&(n[o]=e(r,t[r]),o+=1);return n}var i=Object.prototype.hasOwnProperty;e.exports=r},{}],24:[function(t,e,n){function r(t,e,n){e||(e=0),"undefined"==typeof n&&(n=t?t.length:0);for(var r=-1,i=n-e||0,o=Array(i<0?0:i);++r<i;)o[r]=t[e+r];return o}e.exports=r},{}],25:[function(t,e,n){e.exports={exists:"undefined"!=typeof window.performance&&window.performance.timing&&"undefined"!=typeof window.performance.timing.navigationStart}},{}],ee:[function(t,e,n){function r(){}function i(t){function e(t){return t&&t instanceof r?t:t?f(t,s,a):a()}function n(n,r,i,o,a){if(a!==!1&&(a=!0),!p.aborted||o){t&&a&&t(n,r,i);for(var c=e(i),s=m(n),f=s.length,u=0;u<f;u++)s[u].apply(c,r);var l=d[y[n]];return l&&l.push([x,n,r,c]),c}}function o(t,e){g[t]=m(t).concat(e)}function h(t,e){var n=g[t];if(n)for(var r=0;r<n.length;r++)n[r]===e&&n.splice(r,1)}function m(t){return g[t]||[]}function w(t){return l[t]=l[t]||i(n)}function v(t,e){u(t,function(t,n){e=e||"feature",y[n]=e,e in d||(d[e]=[])})}var g={},y={},x={on:o,addEventListener:o,removeEventListener:h,emit:n,get:w,listeners:m,context:e,buffer:v,abort:c,aborted:!1};return x}function o(t){return f(t,s,a)}function a(){return new r}function c(){(d.api||d.feature)&&(p.aborted=!0,d=p.backlog={})}var s="nr@context",f=t("gos"),u=t(23),d={},l={},p=e.exports=i();e.exports.getOrSetContext=o,p.backlog=d},{}],gos:[function(t,e,n){function r(t,e,n){if(i.call(t,e))return t[e];var r=n();if(Object.defineProperty&&Object.keys)try{return Object.defineProperty(t,e,{value:r,writable:!0,enumerable:!1}),r}catch(o){}return t[e]=r,r}var i=Object.prototype.hasOwnProperty;e.exports=r},{}],handle:[function(t,e,n){function r(t,e,n,r){i.buffer([t],r),i.emit(t,e,n)}var i=t("ee").get("handle");e.exports=r,r.ee=i},{}],id:[function(t,e,n){function r(t){var e=typeof t;return!t||"object"!==e&&"function"!==e?-1:t===window?0:a(t,o,function(){return i++})}var i=1,o="nr@id",a=t("gos");e.exports=r},{}],loader:[function(t,e,n){function r(){if(!b++){var t=x.info=NREUM.info,e=l.getElementsByTagName("script")[0];if(setTimeout(f.abort,3e4),!(t&&t.licenseKey&&t.applicationID&&e))return f.abort();s(g,function(e,n){t[e]||(t[e]=n)});var n=a();c("mark",["onload",n+x.offset],null,"api"),c("timing",["load",n]);var r=l.createElement("script");r.src="https://"+t.agent,e.parentNode.insertBefore(r,e)}}function i(){"complete"===l.readyState&&o()}function o(){c("mark",["domContent",a()+x.offset],null,"api")}var a=t(18),c=t("handle"),s=t(23),f=t("ee"),u=t(21),d=window,l=d.document,p="addEventListener",h="attachEvent",m=d.XMLHttpRequest,w=m&&m.prototype;NREUM.o={ST:setTimeout,SI:d.setImmediate,CT:clearTimeout,XHR:m,REQ:d.Request,EV:d.Event,PR:d.Promise,MO:d.MutationObserver};var v=""+location,g={beacon:"bam.nr-data.net",errorBeacon:"bam.nr-data.net",agent:"js-agent.newrelic.com/nr-1198.min.js"},y=m&&w&&w[p]&&!/CriOS/.test(navigator.userAgent),x=e.exports={offset:a.getLastTimestamp(),now:a,origin:v,features:{},xhrWrappable:y,userAgent:u};t(15),t(19),l[p]?(l[p]("DOMContentLoaded",o,!1),d[p]("load",r,!1)):(l[h]("onreadystatechange",i),d[h]("onload",r)),c("mark",["firstbyte",a.getLastTimestamp()],null,"api");var b=0},{}],"wrap-function":[function(t,e,n){function r(t,e){function n(e,n,r,s,f){function nrWrapper(){var o,a,u,l;try{a=this,o=d(arguments),u="function"==typeof r?r(o,a):r||{}}catch(p){i([p,"",[o,a,s],u],t)}c(n+"start",[o,a,s],u,f);try{return l=e.apply(a,o)}catch(h){throw c(n+"err",[o,a,h],u,f),h}finally{c(n+"end",[o,a,l],u,f)}}return a(e)?e:(n||(n=""),nrWrapper[l]=e,o(e,nrWrapper,t),nrWrapper)}function r(t,e,r,i,o){r||(r="");var c,s,f,u="-"===r.charAt(0);for(f=0;f<e.length;f++)s=e[f],c=t[s],a(c)||(t[s]=n(c,u?s+r:r,i,s,o))}function c(n,r,o,a){if(!h||e){var c=h;h=!0;try{t.emit(n,r,o,e,a)}catch(s){i([s,n,r,o],t)}h=c}}return t||(t=u),n.inPlace=r,n.flag=l,n}function i(t,e){e||(e=u);try{e.emit("internal-error",t)}catch(n){}}function o(t,e,n){if(Object.defineProperty&&Object.keys)try{var r=Object.keys(t);return r.forEach(function(n){Object.defineProperty(e,n,{get:function(){return t[n]},set:function(e){return t[n]=e,e}})}),e}catch(o){i([o],n)}for(var a in t)p.call(t,a)&&(e[a]=t[a]);return e}function a(t){return!(t&&t instanceof Function&&t.apply&&!t[l])}function c(t,e){var n=e(t);return n[l]=t,o(t,n,u),n}function s(t,e,n){var r=t[e];t[e]=c(r,n)}function f(){for(var t=arguments.length,e=new Array(t),n=0;n<t;++n)e[n]=arguments[n];return e}var u=t("ee"),d=t(24),l="nr@original",p=Object.prototype.hasOwnProperty,h=!1;e.exports=r,e.exports.wrapFunction=c,e.exports.wrapInPlace=s,e.exports.argsToArray=f},{}]},{},["loader",2,12,4,3]);
;NREUM.loader_config={accountID:"1397018",trustKey:"1468812",agentID:"614825553",licenseKey:"356631dc7f",applicationID:"614825553"}
;NREUM.info={beacon:"bam-cell.nr-data.net",errorBeacon:"bam-cell.nr-data.net",licenseKey:"356631dc7f",applicationID:"614825553",sa:1}
</script><link as="script" href="https://sb.scorecardresearch.com/beacon.js" rel="preload"/><title itemprop="name">International Business, World News & Global Stock Market Analysis</title><meta content="initial-scale=1.0, width=device-width" name="viewport"/><meta content="IE=Edge" http-equiv="X-UA-Compatible"/><meta content="franchise" property="AssetType"/><meta content="100727362" property="pageNodeId"/><meta content="CNBC International is the world leader for news on business, technology, China, trade, oil prices, the Middle East and markets." itemprop="description" name="description"/><link href="https://www.cnbc.com/world/" rel="canonical"/><link href="/favicon.ico" rel="icon" type="image/png"/><meta content="website" property="og:type"/><meta content="International: Top News And Analysis" property="og:title"/><meta content="CNBC International is the world leader for news on business, technology, China, trade, oil prices, the Middle East and markets." property="og:description"/><meta content="https://www.cnbc.com/world/" property="og:url"/><meta content="CNBC" property="og:site_name"/><meta content="2016-09-27T13:00:09+0000" itemprop="dateCreated"/><meta content="2022-09-25T02:46:19+0000" itemprop="dateModified"/><meta content="2022-09-25T02:46:19+0000" itemprop="lastReviewed"/><meta content="en-US" itemprop="inLanguage"/><meta content="https://sc.cnbcfm.com/applications/cnbc.com/staticcontent/img/cnbc_logo.gif?v=1524171804&w=1920&h=1080" itemprop="image" property="og:image"/><meta content="https://sc.cnbcfm.com/applications/cnbc.com/staticcontent/img/cnbc_logo.gif?v=1524171804&w=1920&h=1080" name="twitter:image:src"/><div itemprop="publisher" itemscope="" itemtype="https://schema.org/NewsMediaOrganization"><meta content="CNBC" itemprop="name"/><meta content="https://www.cnbc.com" itemprop="url"/><meta content="'1989-04-17'" itemprop="foundingDate"/></div><meta content="summary_large_image" name="twitter:card"/><meta content="@CNBC" name="twitter:site"/><meta content="https://www.cnbc.com/world/" name="twitter:url"/><meta content="International: Top News And Analysis" name="twitter:title"/><meta content="CNBC International is the world leader for news on business, technology, China, trade, oil prices, the Middle East and markets." name="twitter:description"/><meta content="@CNBC" name="twitter:creator"/><meta content="https://www.facebook.com/cnbc" property="article:publisher"/><meta content="2016-09-27T13:00:09+0000" property="article:published_time"/><meta content="2022-09-25T02:46:19+0000" property="article:modified_time"/><meta content="NR" itemprop="contentRating"/><meta content="CNBC Meets,Charting Asia,business news" name="news_keywords"/><meta content="CNBC Meets,Charting Asia,business news" itemprop="keywords" name="keywords"/><meta content="CNBC Meets,Charting Asia" itemprop="specialty"/><meta content="universal" name="tp:PreferredRuntimes"/><meta content="M3U,MPEG4" name="tp:PreferredFormats"/><meta content="false" name="tp:initialize"/><meta content="app-id=398018310" name="apple-itunes-app"/><meta content="CNBC Business News and Finance" property="al:ios:app_name"/><meta content="398018310" property="al:ios:app_store_id"/><meta content="https://sc.cnbcfm.com/applications/cnbc.com/staticcontent/img/cnbc_logo.gif?v=1524171804" itemprop="primaryImageOfPage"/><meta content='{"nodeid":100727362,"originalImage":"https://sc.cnbcfm.com/applications/cnbc.com/resources/img/editorial/2015/03/30/102546467-Most-Popular--Image-Placeholder-Large.jpg"}' name="parsely-metadata"/><meta content="max-image-preview:large" name="robots"/><script type="application/ld+json">{"@context":"https://schema.org","@type":"CollectionPage","description":"CNBC International is the world leader for news on business, technology, China, trade, oil prices, the Middle East and markets.","mainEntityOfPage":"https://www.cnbc.com/world/","url":"https://www.cnbc.com/world/","headline":"International: Top News And Analysis","dateCreated":"2016-09-27T13:00:09+0000","datePublished":"2016-09-27T13:00:09+0000","dateModified":"2022-09-25T02:46:19+0000","publisher":{"@type":"Organization","name":"CNBC","url":"https://www.cnbc.com/","logo":{"@type":"ImageObject","url":"https://sc.cnbcfm.com/applications/cnbc.com/staticcontent/img/cnbc-hdr-logo2.png","width":360,"height":60},"sameAs":["https://www.facebook.com/cnbc","https://www.instagram.com/cnbc","https://www.linkedin.com/company/cnbc","https://twitter.com/cnbc","https://en.wikipedia.org/wiki/CNBC","https://www.youtube.com/cnbc"]},"image":{"@type":"ImageObject","url":"https://sc.cnbcfm.com/applications/cnbc.com/staticcontent/img/cnbc_logo.gif?v=1524171804","width":"720","height":"405"},"thumbnailUrl":"https://sc.cnbcfm.com/applications/cnbc.com/staticcontent/img/cnbc_logo.gif?v=1524171804&w=720&h=405","keywords":["cnbc","CNBC Meets","Charting Asia","International: Top News And Analysis"]}</script><link as="script" href="https://static-redesign.cnbcfm.com/dist/main-10328a92c7b164509e08.js" rel="preload"/><link as="script" href="https://static-redesign.cnbcfm.com/dist/4746-7b62789dad0ba5e50955.js" rel="preload"/><link as="script" href="https://static-redesign.cnbcfm.com/dist/2143-9d7936f883ec331b4386.js" rel="preload"/><link as="script" href="https://static-redesign.cnbcfm.com/dist/4926-f9feb9c8ac69f5fca80c.js" rel="preload"/><link as="script" href="https://static-redesign.cnbcfm.com/dist/CNBCGlobalNav-575281ad8d264efbc303.js" rel="preload"/><link as="script" href="https://static-redesign.cnbcfm.com/dist/components-PcmModule-MarketsBanner-c7d8da93080b160b4d03.js" rel="preload"/><link as="script" href="https://static-redesign.cnbcfm.com/dist/components-PcmModule-QuickLinks-d75ce08e366a64559f4d.js" rel="preload"/><link as="script" href="https://static-redesign.cnbcfm.com/dist/9433-a9354524a62caa09f091.js" rel="preload"/><link as="script" href="https://static-redesign.cnbcfm.com/dist/components-PcmModule-LegacyPlayerContainer-04645e4097853b563fe3.js" rel="preload"/><link as="script" href="https://static-redesign.cnbcfm.com/dist/components-PcmModule-FeaturedNewsHero-ecd44de8999485226854.js" rel="preload"/><link as="script" href="https://static-redesign.cnbcfm.com/dist/components-PcmModule-QuoteFinder-4cf460eb003271a4e4e4.js" rel="preload"/><link as="script" href="https://static-redesign.cnbcfm.com/dist/components-PcmModule-MarketMoversPlus-c087c083d91f93c5aa96.js" rel="preload"/><link as="script" href="https://static-redesign.cnbcfm.com/dist/components-PcmModule-RiverPlus-35f2d4596653f9b05a83.js" rel="preload"/><link as="script" href="https://static-redesign.cnbcfm.com/dist/components-PcmModule-Ads-BoxRail-cf5aef0b5d78b4909e03.js" rel="preload"/><link as="script" href="https://static-redesign.cnbcfm.com/dist/4984-552f78132111f12b4397.js" rel="preload"/><link as="script" href="https://static-redesign.cnbcfm.com/dist/components-PcmModule-MarketsModule-fbbd5f7fd26ac9e83d45.js" rel="preload"/><link as="script" href="https://static-redesign.cnbcfm.com/dist/4856-b6420fe80cfd04ee5c46.js" rel="preload"/><link as="script" href="https://static-redesign.cnbcfm.com/dist/9181-3c88d3d341f2d754f2f3.js" rel="preload"/><link as="script" href="https://static-redesign.cnbcfm.com/dist/components-PcmModule-Ads-MidResponsive-1e9d3aec439e6d3a2a3b.js" rel="preload"/><link as="script" href="https://static-redesign.cnbcfm.com/dist/2532-26cd475307ef27c25f15.js" rel="preload"/><link as="script" href="https://static-redesign.cnbcfm.com/dist/3082-1421a96ec6b7cc7f02fc.js" rel="preload"/><link as="script" href="https://static-redesign.cnbcfm.com/dist/3241-56b0fa302216408859dd.js" rel="preload"/><link as="script" href="https://static-redesign.cnbcfm.com/dist/3014-3b3b11686f4ddd6a2552.js" rel="preload"/><link as="script" href="https://static-redesign.cnbcfm.com/dist/9815-26a445501e8410b82c01.js" rel="preload"/><link as="script" href="https://static-redesign.cnbcfm.com/dist/components-Column-c0478c9587f62eb06bc2.js" rel="preload"/><link as="script" href="https://static-redesign.cnbcfm.com/dist/components-PcmModule-LiveTV-caae409a260779766f29.js" rel="preload"/><link as="script" href="https://static-redesign.cnbcfm.com/dist/components-PcmModule-VideoBreakerFeatured-6bf4c76a1227042814c7.js" rel="preload"/><link as="script" href="https://static-redesign.cnbcfm.com/dist/components-PcmModule-Breakers-FeaturedBreaker-f9268a401f14a4e5e388.js" rel="preload"/><link as="script" href="https://static-redesign.cnbcfm.com/dist/components-PcmModule-TrendingNowBreaker-c9434dcfd09fa1a2c8c6.js" rel="preload"/><link as="script" href="https://static-redesign.cnbcfm.com/dist/7243-2a396da5f0b0cb4354f1.js" rel="preload"/><link as="script" href="https://static-redesign.cnbcfm.com/dist/components-PcmModule-TwoColumnImageDense-e041dcd9a23e058fdf4b.js" rel="preload"/><link as="script" href="https://static-redesign.cnbcfm.com/dist/components-Footer-CNBCFooter-f7b8cd3169eaf2ab11b4.js" rel="preload"/></head><body><div><!-- Comscore Identifier: comscorekw=International:_Top_News_And_Analysis --></div><div id="root"><div class="App-containerClick"><div class="cnbcBrand" id="BrandPageWrapper"><div class="JumpLink-container"><a class="JumpLink-link" href="#MainContent">Skip Navigation</a></div><header class="CNBCGlobalNav-container" data-analytics="HomePageInternational-GlobalNavigation" data-test="GlobalNavigation" id="GlobalNavigation"><div class="CountdownClock-countdownContainer"><div class="CountdownClock-container" data-module="mps-slot" id="GlobalNavigation-CountdownClock"></div></div><div class="CNBCGlobalNav-globalNavigation"><div class="CNBCGlobalNav-gridContainer"><div class="CNBCGlobalNav-wrapper"><div class="branding-menu-brandingMenu"><a class="branding-menu-logo" href="//www.cnbc.com/world/"><img alt="logo" class="branding-menu-logo" src="https://static-redesign.cnbcfm.com/dist/0dbbcac4aae29ae1ab0b.svg"/></a></div><div class="CNBCGlobalNav-desktopNavMenu"><div class="nav-menu-navMenu" id="nav-menu"><button aria-label="Open Navigation Menu" class="nav-menu-desktopHamburger nav-menu-button"><span class="icon-menu"></span></button><a class="nav-menu-logoContainer" href="/"><img alt="logo" class="nav-menu-logo" src="https://static-redesign.cnbcfm.com/dist/79ea413ac8a9ee99cad0.svg"/></a><div class="nav-menu-mainLinks"><div class="nav-menu-mainLinksWrapperStart nav-menu-mainLinksWrapper"><div class="nav-menu-navLinks"><div class="nav-menu-primaryLink markets"><a class="nav-menu-button" href="/markets/"><span class="icon-markets"></span><span class="nav-menu-buttonText">Markets</span></a><ul class="nav-menu-subLinks" style="display:none"><li data-text="Pre-Markets"><a class="nav-menu-subLink" href="/pre-markets/" tabindex="-1">Pre-Markets</a></li><li data-text="U.S. Markets"><a class="nav-menu-subLink" href="/us-markets/" tabindex="-1">U.S. Markets</a></li><li data-text="Europe Markets"><a class="nav-menu-subLink" href="/markets-europe/" tabindex="-1">Europe Markets</a></li><li data-text="China Markets"><a class="nav-menu-subLink" href="/china-markets/" tabindex="-1">China Markets</a></li><li data-text="Asia Markets"><a class="nav-menu-subLink" href="/markets-asia-pacific/" tabindex="-1">Asia Markets</a></li><li data-text="World Markets"><a class="nav-menu-subLink" href="/world-markets/" tabindex="-1">World Markets</a></li><li data-text="Currencies"><a class="nav-menu-subLink" href="/currencies/" tabindex="-1">Currencies</a></li><li data-text="Cryptocurrency"><a class="nav-menu-subLink" href="/cryptocurrency/" tabindex="-1">Cryptocurrency</a></li><li data-text="Futures & Commodities"><a class="nav-menu-subLink" href="/futures-and-commodities/" tabindex="-1">Futures & Commodities</a></li><li data-text="Bonds"><a class="nav-menu-subLink" href="/bonds/" tabindex="-1">Bonds</a></li><li data-text="Funds & ETFs"><a class="nav-menu-subLink" href="/funds-and-etfs/" tabindex="-1">Funds & ETFs</a></li></ul></div><div class="nav-menu-primaryLink business_news"><a class="nav-menu-button" href="/business/"><span class="icon-news"></span><span class="nav-menu-buttonText">Business</span></a><ul class="nav-menu-subLinks" style="display:none"><li data-text="Economy"><a class="nav-menu-subLink" href="/economy/" tabindex="-1">Economy</a></li><li data-text="Finance"><a class="nav-menu-subLink" href="/finance/" tabindex="-1">Finance</a></li><li data-text="Health & Science"><a class="nav-menu-subLink" href="/health-and-science/" tabindex="-1">Health & Science</a></li><li data-text="Media"><a class="nav-menu-subLink" href="/media/" tabindex="-1">Media</a></li><li data-text="Real Estate"><a class="nav-menu-subLink" href="/real-estate/" tabindex="-1">Real Estate</a></li><li data-text="Energy"><a class="nav-menu-subLink" href="/energy/" tabindex="-1">Energy</a></li><li data-text="Climate"><a class="nav-menu-subLink" href="/climate/" tabindex="-1">Climate</a></li><li data-text="Transportation"><a class="nav-menu-subLink" href="/transportation/" tabindex="-1">Transportation</a></li><li data-text="Industrials"><a class="nav-menu-subLink" href="/industrials/" tabindex="-1">Industrials</a></li><li data-text="Retail"><a class="nav-menu-subLink" href="/retail/" tabindex="-1">Retail</a></li><li data-text="Wealth"><a class="nav-menu-subLink" href="/wealth/" tabindex="-1">Wealth</a></li><li data-text="Life"><a class="nav-menu-subLink" href="/life/" tabindex="-1">Life</a></li><li data-text="Small Business"><a class="nav-menu-subLink" href="/small-business/" tabindex="-1">Small Business</a></li></ul></div><div class="nav-menu-primaryLink investing"><a class="nav-menu-button" href="/investing/"><span class="icon-investing"></span><span class="nav-menu-buttonText">Investing</span></a><ul class="nav-menu-subLinks" style="display:none"><li data-text="Personal Finance"><a class="nav-menu-subLink" href="/personal-finance/" tabindex="-1">Personal Finance</a></li><li data-text="Fintech"><a class="nav-menu-subLink" href="/fintech/" tabindex="-1">Fintech</a></li><li data-text="Financial Advisors"><a class="nav-menu-subLink" href="/financial-advisors/" tabindex="-1">Financial Advisors</a></li><li data-text="Options Action"><a class="nav-menu-subLink" href="/options-action/" tabindex="-1">Options Action</a></li><li data-text="ETF Street"><a class="nav-menu-subLink" href="/etf-street/" tabindex="-1">ETF Street</a></li><li data-text="Buffett Archive"><a class="nav-menu-subLink" href="https://buffett.cnbc.com" tabindex="-1" target="_blank">Buffett Archive</a></li><li data-text="Earnings"><a class="nav-menu-subLink" href="/earnings/" tabindex="-1">Earnings</a></li><li data-text="Trader Talk"><a class="nav-menu-subLink" href="/trader-talk/" tabindex="-1">Trader Talk</a></li></ul></div><div class="nav-menu-primaryLink tech"><a class="nav-menu-button" href="/technology/"><span class="icon-tech"></span><span class="nav-menu-buttonText">Tech</span></a><ul class="nav-menu-subLinks" style="display:none"><li data-text="Cybersecurity"><a class="nav-menu-subLink" href="/cybersecurity/" tabindex="-1">Cybersecurity</a></li><li data-text="Enterprise"><a class="nav-menu-subLink" href="/enterprise/" tabindex="-1">Enterprise</a></li><li data-text="Internet"><a class="nav-menu-subLink" href="/internet/" tabindex="-1">Internet</a></li><li data-text="Media"><a class="nav-menu-subLink" href="/media/" tabindex="-1">Media</a></li><li data-text="Mobile"><a class="nav-menu-subLink" href="/mobile/" tabindex="-1">Mobile</a></li><li data-text="Social Media"><a class="nav-menu-subLink" href="/social-media/" tabindex="-1">Social Media</a></li><li data-text="CNBC Disruptor 50"><a class="nav-menu-subLink" href="/cnbc-disruptors/" tabindex="-1">CNBC Disruptor 50</a></li><li data-text="Tech Guide"><a class="nav-menu-subLink" href="/tech-guide/" tabindex="-1">Tech Guide</a></li></ul></div><div class="nav-menu-primaryLink politics"><a class="nav-menu-button" href="/politics/"><span class="icon-politics"></span><span class="nav-menu-buttonText">Politics</span></a><ul class="nav-menu-subLinks" style="display:none"><li data-text="White House"><a class="nav-menu-subLink" href="/white-house/" tabindex="-1">White House</a></li><li data-text="Policy"><a class="nav-menu-subLink" href="/policy/" tabindex="-1">Policy</a></li><li data-text="Defense"><a class="nav-menu-subLink" href="/defense/" tabindex="-1">Defense</a></li><li data-text="Congress"><a class="nav-menu-subLink" href="/congress/" tabindex="-1">Congress</a></li><li data-text="Equity and Opportunity"><a class="nav-menu-subLink" href="/equity-opportunity/" tabindex="-1">Equity and Opportunity</a></li><li data-text="Europe Politics"><a class="nav-menu-subLink" href="/europe-politics/" tabindex="-1">Europe Politics</a></li><li data-text="China Politics"><a class="nav-menu-subLink" href="/china-politics/" tabindex="-1">China Politics</a></li><li data-text="Asia Politics"><a class="nav-menu-subLink" href="/asia-politics/" tabindex="-1">Asia Politics</a></li><li data-text="World Politics"><a class="nav-menu-subLink" href="/world-politics/" tabindex="-1">World Politics</a></li></ul></div><div class="nav-menu-primaryLink cnbc_tv"><a class="nav-menu-button" href="/tv/"><span class="icon-cnbctv"></span><span class="nav-menu-buttonText">CNBC TV</span></a><ul class="nav-menu-subLinks" style="display:none"><li data-text="Live Audio"><a class="nav-menu-subLink" href="/live-audio/" tabindex="-1">Live Audio</a></li><li data-text="Latest Video"><a class="nav-menu-subLink" href="/latest-video/" tabindex="-1">Latest Video</a></li><li data-text="Top Video"><a class="nav-menu-subLink" href="/top-video/" tabindex="-1">Top Video</a></li><li data-text="CEO Interviews"><a class="nav-menu-subLink" href="/video-ceo-interviews/" tabindex="-1">CEO Interviews</a></li><li data-text="Europe TV"><a class="nav-menu-subLink" href="/europe-television/" tabindex="-1">Europe TV</a></li><li data-text="Asia TV"><a class="nav-menu-subLink" href="/asia-business-day/" tabindex="-1">Asia TV</a></li><li data-text="CNBC Podcasts"><a class="nav-menu-subLink" href="/podcast/" tabindex="-1">CNBC Podcasts</a></li><li data-text="Digital Originals"><a class="nav-menu-subLink" href="/digital-original/" tabindex="-1">Digital Originals</a></li></ul></div><div class="nav-menu-primaryLink watchlist"><a class="nav-menu-button" href="/watchlist/"><span class="icon-watchlist"></span><span class="nav-menu-buttonText">Watchlist</span></a></div><div class="nav-menu-primaryLink investing_club"><a class="nav-menu-button" href="/investingclub/"><span class="icon-investing_club"></span><span class="nav-menu-buttonText">Investing Club</span></a><ul class="nav-menu-subLinks" style="display:none"><li data-text="Trade Alerts"><a class="nav-menu-subLink" href="/investingclub/cramer-trade-alert/" tabindex="-1">Trade Alerts</a></li><li data-text="Jim's Morning Thoughts"><a class="nav-menu-subLink" href="/investingclub/cramers-morning-thoughts/" tabindex="-1">Jim's Morning Thoughts</a></li><li data-text="Analysis"><a class="nav-menu-subLink" href="/investingclub/analysis/" tabindex="-1">Analysis</a></li><li data-text="Morning Meeting"><a class="nav-menu-subLink" href="/investingclub/morning-meeting/" tabindex="-1">Morning Meeting</a></li><li data-text="Trust Portfolio"><a class="nav-menu-subLink" href="/investingclub/charitable-trust/" tabindex="-1">Trust Portfolio</a></li></ul></div><span class="nav-menu-investingClubLockIcon"></span><div class="nav-menu-primaryLink pro"><a class="nav-menu-button" href="/pro/"><span class="icon-pro"></span><span class="nav-menu-buttonText">PRO</span></a><ul class="nav-menu-subLinks" style="display:none"><li data-text="Pro News"><a class="nav-menu-subLink" href="/pro/news/" tabindex="-1">Pro News</a></li><li data-text="Pro Live"><a class="nav-menu-subLink" href="/pro/" tabindex="-1">Pro Live</a></li><li data-text="Subscribe"><a class="nav-menu-subLink" href="#" tabindex="-1">Subscribe</a></li><li data-text="Sign In"><a class="nav-menu-subLink" href="#" tabindex="-1">Sign In</a></li></ul></div><span class="nav-menu-proLockIcon"></span><div aria-hidden="true" class="nav-menu-navUnderline"></div><div aria-hidden="true" class="nav-menu-navDropdownWrap"></div><div class="nav-menu-primaryLink hamburger"><button aria-label="Open Navigation Menu" class="nav-menu-hamburger nav-menu-button"><span class="icon-menu"></span><span class="nav-menu-buttonText">Menu</span></button></div></div></div></div><div class="nav-menu-progressBarContainer"></div></div><div class="account-menu-accountMenu"><ul><li><a href="/make-it/" title="makeit">Make It<span class="icon-offsite-arrow"></span></a></li></ul><ul class="account-menu-editionMenu"><li class="AccountMenu-li"><a href="/?region=usa">USA</a></li><li class="AccountMenu-li"><a class="account-menu-underlineLabel" href="/world/">INTL</a></li></ul></div></div><button aria-label="Search" class="SearchToggle-button SearchToggle-signinButtonBtn searchToggler analyticsSearchButton"><span>Search quotes, news & videos</span><i aria-hidden="true" class="icon-search" data-analytics="cnbc-search-icon" data-analytics-id="cnbc-search-icon"></i></button><div class="CNBCGlobalNav-watchListContainerBtn"><a href="/watchlist/">Watchlist</a></div><div class="SignInMenu-signInContainerBtn"><div><div class="SignInMenu-signInMenu"><a href="#">SIGN IN</a></div></div></div><div class="SignUpMenu-signUpContainer"><div><div class="SignUpMenu-signUpMenu"><a href="#">Create free account</a></div></div></div></div></div></div></header><div class="CNBCGlobalNav-mobileNavMenu"><div class="nav-menu-navMenu" id="nav-menu"><button aria-label="Open Navigation Menu" class="nav-menu-desktopHamburger nav-menu-button"><span class="icon-menu"></span></button><a class="nav-menu-logoContainer" href="/"><img alt="logo" class="nav-menu-logo" src="https://static-redesign.cnbcfm.com/dist/79ea413ac8a9ee99cad0.svg"/></a><div class="nav-menu-mainLinks"><div class="nav-menu-mainLinksWrapperStart nav-menu-mainLinksWrapper"><div class="nav-menu-navLinks"><div class="nav-menu-primaryLink markets"><a class="nav-menu-button" href="/markets/"><span class="icon-markets"></span><span class="nav-menu-buttonText">Markets</span></a></div><div class="nav-menu-primaryLink business_news"><a class="nav-menu-button" href="/business/"><span class="icon-news"></span><span class="nav-menu-buttonText">Business</span></a></div><div class="nav-menu-primaryLink investing"><a class="nav-menu-button" href="/investing/"><span class="icon-investing"></span><span class="nav-menu-buttonText">Investing</span></a></div><div class="nav-menu-primaryLink tech"><a class="nav-menu-button" href="/technology/"><span class="icon-tech"></span><span class="nav-menu-buttonText">Tech</span></a></div><div class="nav-menu-primaryLink politics"><a class="nav-menu-button" href="/politics/"><span class="icon-politics"></span><span class="nav-menu-buttonText">Politics</span></a></div><div class="nav-menu-primaryLink cnbc_tv"><a class="nav-menu-button" href="/tv/"><span class="icon-cnbctv"></span><span class="nav-menu-buttonText">CNBC TV</span></a></div><div class="nav-menu-primaryLink watchlist"><a class="nav-menu-button" href="/watchlist/"><span class="icon-watchlist"></span><span class="nav-menu-buttonText">Watchlist</span></a></div><div class="nav-menu-primaryLink investing_club"><a class="nav-menu-button" href="/investingclub/"><span class="icon-investing_club"></span><span class="nav-menu-buttonText">Investing Club</span></a></div><span class="nav-menu-investingClubLockIcon"></span><div class="nav-menu-primaryLink pro"><a class="nav-menu-button" href="/pro/"><span class="icon-pro"></span><span class="nav-menu-buttonText">PRO</span></a></div><span class="nav-menu-proLockIcon"></span><div aria-hidden="true" class="nav-menu-navUnderline"></div><div aria-hidden="true" class="nav-menu-navDropdownWrap"></div><div class="nav-menu-primaryLink hamburger"><button aria-label="Open Navigation Menu" class="nav-menu-hamburger nav-menu-button"><span class="icon-menu"></span><span class="nav-menu-buttonText">Menu</span></button></div></div></div></div><div class="nav-menu-progressBarContainer"></div></div></div><div class="BrandPageWrapper-liveAlertAd BrandPageWrapper-contentWrapper" id="MainContentContainer" role="main"><p id="MainContent" tabindex="-1"></p><div><div class="Home Page International PageBuilder-page"><div class="PageBuilder-pageWrapper"><div class="PageBuilder-containerWidth100 PageBuilder-pageRow"><div class="PageBuilder-col-full PageBuilder-col"><section class="MarketsBanner-container" data-analytics="HomePageInternational-marketsBanner-1-0" data-test="marketsBanner-0" id="HomePageInternational-MarketsBanner-1"><div class="MarketsBannerMenu-container"><button class="MarketsBannerMenu-activeMarket MarketsBannerMenu-marketOption">EUR</button><button class="MarketsBannerMenu-marketOption">ASIA</button><button class="MarketsBannerMenu-marketOption">PRE-MKT</button><button class="MarketsBannerMenu-marketOption">US</button><button class="MarketsBannerMenu-marketOption">OIL</button><button class="MarketsBannerMenu-marketOption">GOLD</button><button class="MarketsBannerMenu-marketOption">BONDS</button><button class="MarketsBannerMenu-marketOption">EUR FX</button><button class="MarketsBannerMenu-marketOption">ASIA FX</button><button class="MarketsBannerMenu-marketOption">CRYPTO</button></div><div class="MarketsBanner-main"><div class="MarketsBanner-marketData" id="market-data-scroll-container"><a class="MarketCard-container" href="#"><div class="MarketCard-row"><span class="MarketCard-symbol"></span><span class="MarketCard-stockPosition">---</span></div><div class="MarketCard-row"><div class="MarketCard-changeData"><span class="MarketCard-changesPts">---</span><span class="MarketCard-changesPct">---</span></div></div><div class="MarketCard-row"></div></a><a class="MarketCard-container" href="#"><div class="MarketCard-row"><span class="MarketCard-symbol"></span><span class="MarketCard-stockPosition">---</span></div><div class="MarketCard-row"><div class="MarketCard-changeData"><span class="MarketCard-changesPts">---</span><span class="MarketCard-changesPct">---</span></div></div><div class="MarketCard-row"></div></a><a class="MarketCard-container" href="#"><div class="MarketCard-row"><span class="MarketCard-symbol"></span><span class="MarketCard-stockPosition">---</span></div><div class="MarketCard-row"><div class="MarketCard-changeData"><span class="MarketCard-changesPts">---</span><span class="MarketCard-changesPct">---</span></div></div><div class="MarketCard-row"></div></a><a class="MarketCard-container" href="#"><div class="MarketCard-row"><span class="MarketCard-symbol"></span><span class="MarketCard-stockPosition">---</span></div><div class="MarketCard-row"><div class="MarketCard-changeData"><span class="MarketCard-changesPts">---</span><span class="MarketCard-changesPct">---</span></div></div><div class="MarketCard-row"></div></a><a class="MarketCard-container" href="#"><div class="MarketCard-row"><span class="MarketCard-symbol"></span><span class="MarketCard-stockPosition">---</span></div><div class="MarketCard-row"><div class="MarketCard-changeData"><span class="MarketCard-changesPts">---</span><span class="MarketCard-changesPct">---</span></div></div><div class="MarketCard-row"></div></a><div class="MarketsBanner-ad"><div class="SponsorLogo-container" data-module="mps-slot" id="SponsorLogo-HomePageInternational-MarketsBanner-1"></div></div></div></div><div class="MarketsBanner-teaser"><a href="https://www.cnbc.com/2022/09/23/european-stocks-expected-to-open-in-the-green-as-investors-digest-central-bank-moves-.html">European stocks close 2.3% lower as UK tax cuts, weak euro zone data roil markets</a></div></section></div></div><div class="PageBuilder-containerWidth100 PageBuilder-pageRow"><div class="PageBuilder-col-full PageBuilder-col"><div class="TopBanner-container" data-top-banner-placeholder="true"><script>
(function() {
const userMembershipOnLastVisit = localStorage.getItem("cnbcMeta__cachedUserMembership");
if (!userMembershipOnLastVisit) {
// If no user membership is stored, user is likely not logged in.
// These users will typically see the banner.
return;
}
const { isPro, isInvestingClubUser } = JSON.parse(userMembershipOnLastVisit);
if (!(isPro || isInvestingClubUser)) {
// We’re rendering the top banner for users who are not pro or investing club members.
return;
}
// Hide the banner for pro and investing club users.
const style = document.createElement("style");
style.id = "top-banner-placeholder-style";
style.innerHTML = "[data-top-banner-placeholder] { display: none; }";
document.head.appendChild(style);
})()
</script></div></div></div><div class="PageBuilder-containerWidth100 PageBuilder-pageRow"><div class="PageBuilder-col-full PageBuilder-col"><div class="QuickLinks-container" data-analytics="HomePageInternational-quickLinks-3-0" data-test="quickLinks-0" id="HomePageInternational-QuickLinks-3"><div class="QuickLinks-deviceHeader QuickLinks-desktopHeader">Quick Links</div><div class="QuickLinks-scrollableContainer"><span class="QuickLinks-desktopHeader">Quick Links</span><span class="QuickLinks-quickLink"><a href="https://www.cnbc.com/2022/09/23/stocks-could-continue-skittish-trading-until-interest-rate-move-calms-down.html" title="PRO: Market lookahead">PRO: Market lookahead</a></span><span class="QuickLinks-quickLink"><a href="https://www.cnbc.com/quotes/US10Y" title="U.S. 10-year yield">U.S. 10-year yield</a></span><span class="QuickLinks-quickLink"><a href="https://www.cnbc.com/2022/09/23/hedge-funds-ramp-up-market-bets-as-volatility-brings-the-asset-class-back-into-favor.html" title="Hedgies boost bets">Hedgies boost bets</a></span><span class="QuickLinks-quickLink"><a href="https://www.cnbc.com/2022/09/23/citi-says-sterling-dollar-parity-is-possible-as-uk-risks-currency-crisis.html" title="Sterling-dollar parity?">Sterling-dollar parity?</a></span><span class="QuickLinks-quickLink"><a href="https://www.cnbc.com/2022/09/24/convertible-sales-fall-in-us-amid-popularity-of-evs-suvs.html" title="Goodbye, ragtops">Goodbye, ragtops</a></span><span class="QuickLinks-quickLink"><a href="https://www.cnbc.com/2022/09/22/charts-suggest-inflation-could-soon-come-down-substantially-jim-cramer-says.html" title="Cramer's inflation charts">Cramer's inflation charts</a></span></div></div></div></div><div class="PageBuilder-containerWidth100 PageBuilder-pageRow"><div class="PageBuilder-col-full PageBuilder-col"></div></div><div class="PageBuilder-containerFluidWidths PageBuilder-pageRow"><div class="PageBuilder-col-9 PageBuilder-col"><div class="FeaturedNewsHero-container" data-analytics="HomePageInternational-featuredNewsHero-5-0" data-test="featuredNewsHero-0" id="HomePageInternational-FeaturedNewsHero-5-0"><div id="HomePageInternational-FeaturedCard-5-0"><div class="FeaturedCard-container"><div class="FeaturedCard-imageContainer"><a href="https://www.cnbc.com/2022/09/23/from-the-fed-to-europes-currency-crisis-heres-whats-behind-this-selloff-in-financial-markets.html" title="From the Fed to Europe's currency crisis, here's what's behind this selloff in financial markets"><div><picture data-test="Picture"><source height="554" media="(min-width: 1340px)" srcset="https://image.cnbcfm.com/api/v1/image/107072377-NSC-OB-Photo-20220607-Press-8.jpg?v=1663947622&w=830&h=554&ffmt=webp" type="image/webp" width="830"/><source height="512" media="(min-width: 1020px)" srcset="https://image.cnbcfm.com/api/v1/image/107072377-NSC-OB-Photo-20220607-Press-8.jpg?v=1663947622&w=610&h=512&ffmt=webp" type="image/webp" width="610"/><source height="730" media="(min-width: 760px)" srcset="https://image.cnbcfm.com/api/v1/image/107072377-NSC-OB-Photo-20220607-Press-8.jpg?v=1663947622&w=960&h=730&ffmt=webp" type="image/webp" width="960"/><source height="470" media="(min-width: 0px)" srcset="https://image.cnbcfm.com/api/v1/image/107072377-NSC-OB-Photo-20220607-Press-8.jpg?v=1663947622&w=560&h=470&ffmt=webp" type="image/webp" width="560"/><img alt="From the Fed to Europe's currency crisis, here's what's behind this selloff in financial markets" class="" src="https://image.cnbcfm.com/api/v1/image/107072377-NSC-OB-Photo-20220607-Press-8.jpg?v=1663947622&w=960&h=730"/></picture></div></a></div><div class="FeaturedCard-content"><div class="FeaturedCard-contentText"><h2 class="FeaturedCard-packagedCardTitle"><a href="https://www.cnbc.com/2022/09/23/from-the-fed-to-europes-currency-crisis-heres-whats-behind-this-selloff-in-financial-markets.html" title="From the Fed to Europe's currency crisis, here's what's behind this selloff in financial markets">From the Fed to Europe's currency crisis, here's what's behind this selloff in financial markets</a></h2></div><ul class="PackageItems-container"><li id="HomePageInternational-FeaturedCard-5-1-0"><a class="PackageItem-link" href="https://www.cnbc.com/2022/09/22/futures-inch-higher-following-another-day-of-losses-after-fed-rate-hike-sell-offs.html" title="Dow drops nearly 500 points to close at new low for 2022 on rising recession fears">Dow drops nearly 500 points to close at new low for 2022 on rising recession fears<!-- --> </a></li></ul></div></div></div><div class="SecondaryCardContainer-container"><ul><li id="HomePageInternational-SecondaryCard-5-0"><div class="SecondaryCard-container"><div class="SecondaryCard-imageContainer"><a href="https://www.cnbc.com/2022/09/23/google-ceo-pichai-fields-questions-on-cost-cuts-at-all-hands-meeting-.html" title="Google CEO Pichai tells employees not to 'equate fun with money' in heated all-hands meeting "><div><picture data-test="Picture"><source height="338" media="(min-width: 1340px)" srcset="https://image.cnbcfm.com/api/v1/image/106629916-1595528838886-gettyimages-1195292757-AFP_1O5272.jpeg?v=1663938852&w=600&h=338&ffmt=webp" type="image/webp" width="600"/><source height="214" media="(min-width: 1020px)" srcset="https://image.cnbcfm.com/api/v1/image/106629916-1595528838886-gettyimages-1195292757-AFP_1O5272.jpeg?v=1663938852&w=380&h=214&ffmt=webp" type="image/webp" width="380"/><source height="338" media="(min-width: 760px)" srcset="https://image.cnbcfm.com/api/v1/image/106629916-1595528838886-gettyimages-1195292757-AFP_1O5272.jpeg?v=1663938852&w=648&h=338&ffmt=webp" type="image/webp" width="648"/><source height="338" media="(min-width: 0px)" srcset="https://image.cnbcfm.com/api/v1/image/106629916-1595528838886-gettyimages-1195292757-AFP_1O5272.jpeg?v=1663938852&w=636&h=338&ffmt=webp" type="image/webp" width="636"/><img alt="Google CEO Pichai tells employees not to 'equate fun with money' in heated all-hands meeting " class="" src="https://image.cnbcfm.com/api/v1/image/106629916-1595528838886-gettyimages-1195292757-AFP_1O5272.jpeg?v=1663938852&w=648&h=338"/></picture></div></a></div><div><div class="SecondaryCard-headline"><a href="https://www.cnbc.com/2022/09/23/google-ceo-pichai-fields-questions-on-cost-cuts-at-all-hands-meeting-.html" title="Google CEO Pichai tells employees not to 'equate fun with money' in heated all-hands meeting ">Google CEO Pichai tells employees not to 'equate fun with money' in heated all-hands meeting </a></div></div></div></li><li id="HomePageInternational-SecondaryCard-5-1"><div class="SecondaryCard-container"><div class="SecondaryCard-imageContainer"><a href="https://www.cnbc.com/2022/09/25/north-korea-fires-ballistic-missile-ahead-of-kamala-harris-visit.html" title="North Korea fires ballistic missile into sea ahead of visit by U.S. VP Kamala Harris"><div><picture data-test="Picture"><source height="338" media="(min-width: 1340px)" srcset="https://image.cnbcfm.com/api/v1/image/107124000-1664071555698-gettyimages-1243489102-AFP_32K338H.jpeg?v=1664072052&w=600&h=338&ffmt=webp" type="image/webp" width="600"/><source height="214" media="(min-width: 1020px)" srcset="https://image.cnbcfm.com/api/v1/image/107124000-1664071555698-gettyimages-1243489102-AFP_32K338H.jpeg?v=1664072052&w=380&h=214&ffmt=webp" type="image/webp" width="380"/><source height="338" media="(min-width: 760px)" srcset="https://image.cnbcfm.com/api/v1/image/107124000-1664071555698-gettyimages-1243489102-AFP_32K338H.jpeg?v=1664072052&w=648&h=338&ffmt=webp" type="image/webp" width="648"/><source height="338" media="(min-width: 0px)" srcset="https://image.cnbcfm.com/api/v1/image/107124000-1664071555698-gettyimages-1243489102-AFP_32K338H.jpeg?v=1664072052&w=636&h=338&ffmt=webp" type="image/webp" width="636"/><img alt="North Korea fires ballistic missile into sea ahead of visit by U.S. VP Kamala Harris" class="" src="https://image.cnbcfm.com/api/v1/image/107124000-1664071555698-gettyimages-1243489102-AFP_32K338H.jpeg?v=1664072052&w=648&h=338"/></picture></div></a></div><div><div class="SecondaryCard-headline"><a href="https://www.cnbc.com/2022/09/25/north-korea-fires-ballistic-missile-ahead-of-kamala-harris-visit.html" title="North Korea fires ballistic missile into sea ahead of visit by U.S. VP Kamala Harris">North Korea fires ballistic missile into sea ahead of visit by U.S. VP Kamala Harris</a></div></div></div></li></ul></div></div></div><div class="SidebarArticle-sidebar PageBuilder-sidebar" data-test="SidebarArticle"><div class="SidebarArticle-noSticky" style="height:calc(100% - 70px)"><div><div class="undefined LatestNews-isHomePage LatestNews-isIntlHomepage" data-analytics="HomePageInternational-latestNews-6-0" data-test="latestNews-0"><header class="LatestNews-header"><span aria-hidden="true" style="background-color:#0089D0"></span><h2><span>Latest News</span></h2></header><ul class="LatestNews-list"><li class="LatestNews-iconCleared LatestNews-item" id="HomePageInternational-latestNews-6-0"><div class="LatestNews-container"><div class="LatestNews-headlineWrapper"><span class="LatestNews-wrapper"><time class="LatestNews-timestamp">11 Hours Ago</time></span><a class="LatestNews-headline" href="https://www.cnbc.com/2022/09/24/three-rules-for-a-successful-open-relationship.html" title="3 rules for a successful open relationship, according to an NYC therapist">3 rules for a successful open relationship, according to an NYC therapist</a></div></div></li><li class="LatestNews-iconCleared LatestNews-item" id="HomePageInternational-latestNews-6-1"><div class="LatestNews-container"><div class="LatestNews-headlineWrapper"><span class="LatestNews-wrapper"><time class="LatestNews-timestamp">12 Hours Ago</time></span><a class="LatestNews-headline" href="https://www.cnbc.com/2022/09/24/biden-administration-awards-1point5-billion-to-fight-opioid-crisis.html" title="Biden administration awards $1.5 billion to fight opioid crisis">Biden administration awards $1.5 billion to fight opioid crisis</a></div></div></li><li class="LatestNews-iconCleared LatestNews-item" id="HomePageInternational-latestNews-6-2"><div class="LatestNews-container"><div class="LatestNews-headlineWrapper"><span class="LatestNews-wrapper"><time class="LatestNews-timestamp">13 Hours Ago</time></span><a class="LatestNews-headline" href="https://www.cnbc.com/2022/09/24/top-10-cities-with-the-best-pizzerias-worldwide-.html" title="Top 10 cities with the best pizzerias worldwide—see where NYC lands on the list">Top 10 cities with the best pizzerias worldwide—see where NYC lands on the list</a></div></div></li><li class="LatestNews-iconCleared LatestNews-item" id="HomePageInternational-latestNews-6-3"><div class="LatestNews-container"><div class="LatestNews-headlineWrapper"><span class="LatestNews-wrapper"><time class="LatestNews-timestamp">14 Hours Ago</time></span><a class="LatestNews-headline" href="https://www.cnbc.com/2022/09/24/easy-meals-for-two-under-20-from-black-girls-in-trader-joes-creator.html" title="Black Girls in Trader Joe’s creator shares her top five favorite products">Black Girls in Trader Joe’s creator shares her top five favorite products</a></div></div></li><li class="LatestNews-iconCleared LatestNews-item" id="HomePageInternational-latestNews-6-4"><div class="LatestNews-container"><div class="LatestNews-headlineWrapper"><span class="LatestNews-wrapper"><time class="LatestNews-timestamp">14 Hours Ago</time></span><a class="LatestNews-headline" href="https://www.cnbc.com/2022/09/24/how-to-raise-resilient-kids-by-developing-their-brains-with-nurturing-routines-parenting-expert.html" title="Want to raise strong, resilient kids? Create 'nurturing routines,' says parenting expert—here’s how">Want to raise strong, resilient kids? Create 'nurturing routines,' says parenting expert—here’s how</a></div></div></li><li class="LatestNews-iconCleared LatestNews-item" id="HomePageInternational-latestNews-6-5"><div class="LatestNews-container"><div class="LatestNews-headlineWrapper"><span class="LatestNews-wrapper"><time class="LatestNews-timestamp">15 Hours Ago</time></span><a class="LatestNews-headline" href="https://www.cnbc.com/2022/09/24/how-airlines-plan-to-end-one-billion-tons-of-carbon-emissions.html" title="Why the airline climate change plan is trailing autos and EVs">Why the airline climate change plan is trailing autos and EVs</a></div></div></li><li class="LatestNews-iconCleared LatestNews-item" id="HomePageInternational-latestNews-6-6"><div class="LatestNews-container"><div class="LatestNews-headlineWrapper"><span class="LatestNews-wrapper"><time class="LatestNews-timestamp">15 Hours Ago</time></span><a class="LatestNews-headline" href="https://www.cnbc.com/2022/09/24/queer-eyes-karamo-brown-shares-morning-routine.html" title="'Queer Eye's Karamo Brown on the morning routines that keep him motivated">'Queer Eye's Karamo Brown on the morning routines that keep him motivated</a></div></div></li><li class="LatestNews-iconCleared LatestNews-item" id="HomePageInternational-latestNews-6-7"><div class="LatestNews-container"><div class="LatestNews-headlineWrapper"><span class="LatestNews-wrapper"><time class="LatestNews-timestamp">15 Hours Ago</time></span><a class="LatestNews-headline" href="https://www.cnbc.com/2022/09/24/vermont-new-mexico-california-us-states-with-least-air-pollution.html" title="These 7 states have the least air pollution in the U.S.">These 7 states have the least air pollution in the U.S.</a></div></div></li><li class="LatestNews-iconCleared LatestNews-item" id="HomePageInternational-latestNews-6-8"><div class="LatestNews-container"><div class="LatestNews-headlineWrapper"><span class="LatestNews-wrapper"><time class="LatestNews-timestamp">15 Hours Ago</time></span><a class="LatestNews-headline" href="https://www.cnbc.com/2022/09/24/new-york-now-no-1-port-in-us-as-sea-change-in-trade-hits-west-coast.html" title="New York is now No. 1 port in a tipping point for U.S.-bound trade">New York is now No. 1 port in a tipping point for U.S.-bound trade</a></div></div></li><li class="LatestNews-iconCleared LatestNews-item" id="HomePageInternational-latestNews-6-9"><div class="LatestNews-container"><div class="LatestNews-headlineWrapper"><span class="LatestNews-wrapper"><time class="LatestNews-timestamp">16 Hours Ago</time></span><a class="ProPill-proPillLink" data-type="pro-button" href="/pro/"><img alt="CNBC Pro" class="LatestNews-proPill ProPill-proPill" src="https://static-redesign.cnbcfm.com/dist/3390fc2824fa58d008fd.svg"/></a><a class="LatestNews-headline" href="https://www.cnbc.com/2022/09/24/analysts-name-top-high-conviction-stocks-for-playing-market-turbulence.html" title="Analysts have 'high conviction' that these stocks have major upside.">Analysts have 'high conviction' that these stocks have major upside.</a></div></div></li><li class="LatestNews-iconCleared LatestNews-item" id="HomePageInternational-latestNews-6-10"><div class="LatestNews-container"><div class="LatestNews-headlineWrapper"><span class="LatestNews-wrapper"><time class="LatestNews-timestamp">16 Hours Ago</time></span><a class="ProPill-proPillLink" data-type="pro-button" href="/pro/"><img alt="CNBC Pro" class="LatestNews-proPill ProPill-proPill" src="https://static-redesign.cnbcfm.com/dist/3390fc2824fa58d008fd.svg"/></a><a class="LatestNews-headline" href="https://www.cnbc.com/2022/09/24/feared-stock-market-bottom-retest-is-now-underway.html" title="Feared stock market bottom retest is now underway">Feared stock market bottom retest is now underway</a></div></div></li><li class="LatestNews-iconCleared LatestNews-item" id="HomePageInternational-latestNews-6-11"><div class="LatestNews-container"><div class="LatestNews-headlineWrapper"><span class="LatestNews-wrapper"><time class="LatestNews-timestamp">16 Hours Ago</time></span><a class="LatestNews-headline" href="https://www.cnbc.com/2022/09/24/wallethub-top-10-cities-to-retire-2022-nearly-half-are-in-florida.html" title="The No. 1 best city to retire isn't in Florida but the runner up is">The No. 1 best city to retire isn't in Florida but the runner up is</a></div></div></li><li class="LatestNews-iconCleared LatestNews-item" id="HomePageInternational-latestNews-6-12"><div class="LatestNews-container"><div class="LatestNews-headlineWrapper"><span class="LatestNews-wrapper"><time class="LatestNews-timestamp">16 Hours Ago</time></span><a class="ProPill-proPillLink" data-type="pro-button" href="/pro/"><img alt="CNBC Pro" class="LatestNews-proPill ProPill-proPill" src="https://static-redesign.cnbcfm.com/dist/3390fc2824fa58d008fd.svg"/></a><a class="LatestNews-headline" href="https://www.cnbc.com/2022/09/24/quantum-investing-perils-and-promise-of-quantum-computing-are-nearing.html" title="The perils and promise of quantum computing are nearing. Here are ways to invest">The perils and promise of quantum computing are nearing. Here are ways to invest</a></div></div></li><li class="LatestNews-iconCleared LatestNews-item" id="HomePageInternational-latestNews-6-13"><div class="LatestNews-container"><div class="LatestNews-headlineWrapper"><span class="LatestNews-wrapper"><time class="LatestNews-timestamp">17 Hours Ago</time></span><a class="LatestNews-headline" href="https://www.cnbc.com/2022/09/24/what-parent-plus-borrowers-need-to-know-about-student-loan-forgiveness.html" title="Everything parents need to know about student loan forgiveness ">Everything parents need to know about student loan forgiveness </a></div></div></li><li class="LatestNews-iconCleared LatestNews-item" id="HomePageInternational-latestNews-6-14"><div class="LatestNews-container"><div class="LatestNews-headlineWrapper"><span class="LatestNews-wrapper"><time class="LatestNews-timestamp">17 Hours Ago</time></span><a class="LatestNews-headline" href="https://www.cnbc.com/2022/09/24/check-in-smoke-up-tune-out-cannabis-friendly-vacation-rentals-catch-on.html" title="Check in, smoke up and tune out: Cannabis-friendly vacation rentals are catching on">Check in, smoke up and tune out: Cannabis-friendly vacation rentals are catching on</a></div></div></li><li class="LatestNews-iconCleared LatestNews-item" id="HomePageInternational-latestNews-6-15"><div class="LatestNews-container"><div class="LatestNews-headlineWrapper"><span class="LatestNews-wrapper"><time class="LatestNews-timestamp">17 Hours Ago</time></span><a class="LatestNews-headline" href="https://www.cnbc.com/2022/09/24/convertible-sales-fall-in-us-amid-popularity-of-evs-suvs.html" title="Convertibles drive into the sunset as automakers invest in electric vehicles">Convertibles drive into the sunset as automakers invest in electric vehicles</a></div></div></li><li class="LatestNews-iconCleared LatestNews-item" id="HomePageInternational-latestNews-6-16"><div class="LatestNews-container"><div class="LatestNews-headlineWrapper"><span class="LatestNews-wrapper"><time class="LatestNews-timestamp">20 Hours Ago</time></span><a class="LatestNews-headline" href="https://www.cnbc.com/2022/09/24/liz-truss-britains-lurch-to-reaganomics-gets-thumbs-down-from-markets.html" title="Britain's lurch toward 'Reaganomics' gets a thumbs down from the markets">Britain's lurch toward 'Reaganomics' gets a thumbs down from the markets</a></div></div></li><li class="LatestNews-iconCleared LatestNews-item" id="HomePageInternational-latestNews-6-17"><div class="LatestNews-container"><div class="LatestNews-headlineWrapper"><span class="LatestNews-wrapper"><time class="LatestNews-timestamp">September 23, 2022</time></span><a class="InvestingClubPill-investingClubPillLink" data-type="investing-club-button" href="/investingclub/"><img alt="CNBC Investing Club" class="InvestingClubPill-investingClubPill InvestingClubPill-latestNews" src="https://static-redesign.cnbcfm.com/dist/f9ace92fca661c9f3bdf.svg"/></a><a class="LatestNews-headline" href="https://www.cnbc.com/2022/09/23/it-was-another-painful-week-to-own-stocks-but-we-have-a-new-plan-for-monday.html" title="Here's our plan for Monday after another painful week to own stocks">Here's our plan for Monday after another painful week to own stocks</a></div></div></li><li class="LatestNews-iconCleared LatestNews-item" id="HomePageInternational-latestNews-6-18"><div class="LatestNews-container"><div class="LatestNews-headlineWrapper"><span class="LatestNews-wrapper"><time class="LatestNews-timestamp">September 23, 2022</time></span><a class="ProPill-proPillLink" data-type="pro-button" href="/pro/"><img alt="CNBC Pro" class="LatestNews-proPill ProPill-proPill" src="https://static-redesign.cnbcfm.com/dist/3390fc2824fa58d008fd.svg"/></a><a class="LatestNews-headline" href="https://www.cnbc.com/2022/09/23/stocks-could-continue-skittish-trading-until-interest-rate-move-calms-down.html" title="What to watch in the markets in the week ahead">What to watch in the markets in the week ahead</a></div></div></li><li class="LatestNews-iconCleared LatestNews-item" id="HomePageInternational-latestNews-6-19"><div class="LatestNews-container"><div class="LatestNews-headlineWrapper"><span class="LatestNews-wrapper"><time class="LatestNews-timestamp">September 23, 2022</time></span><a class="ProPill-proPillLink" data-type="pro-button" href="/pro/"><img alt="CNBC Pro" class="LatestNews-proPill ProPill-proPill" src="https://static-redesign.cnbcfm.com/dist/3390fc2824fa58d008fd.svg"/></a><a class="LatestNews-headline" href="https://www.cnbc.com/2022/09/23/pro-picks-watch-all-of-fridays-big-stock-calls-on-cnbc.html" title="Pro Picks: Watch all of Friday's big stock calls on CNBC">Pro Picks: Watch all of Friday's big stock calls on CNBC</a></div></div></li><li class="LatestNews-iconCleared LatestNews-item" id="HomePageInternational-latestNews-6-20"><div class="LatestNews-container"><div class="LatestNews-headlineWrapper"><span class="LatestNews-wrapper"><time class="LatestNews-timestamp">September 23, 2022</time></span><a class="LatestNews-headline" href="https://www.cnbc.com/2022/09/23/careers-where-over-50percent-of-workers-are-happy-with-their-pay.html" title="13 careers where over 50% of workers are happy with their pay">13 careers where over 50% of workers are happy with their pay</a></div></div></li><li class="LatestNews-iconCleared LatestNews-item" id="HomePageInternational-latestNews-6-21"><div class="LatestNews-container"><div class="LatestNews-headlineWrapper"><span class="LatestNews-wrapper"><time class="LatestNews-timestamp">September 23, 2022</time></span><a class="LatestNews-headline" href="https://www.cnbc.com/2022/09/23/new-york-ag-wrongly-says-yankees-game-on-apple-tv-costs-extra.html" title="New York AG wrongly said Yankees game on Apple TV+ costs extra — but it's free">New York AG wrongly said Yankees game on Apple TV+ costs extra — but it's free</a></div></div></li><li class="LatestNews-iconCleared LatestNews-item" id="HomePageInternational-latestNews-6-22"><div class="LatestNews-container"><div class="LatestNews-headlineWrapper"><span class="LatestNews-wrapper"><time class="LatestNews-timestamp">September 23, 2022</time></span><a class="LatestNews-headline" href="https://www.cnbc.com/2022/09/23/tech-stocks-worst-two-week-stretch-since-the-start-of-pandemic.html" title="Tech stocks just had the worst two-week stretch since the start of the pandemic">Tech stocks just had the worst two-week stretch since the start of the pandemic</a></div></div></li><li class="LatestNews-iconCleared LatestNews-item" id="HomePageInternational-latestNews-6-23"><div class="LatestNews-container"><div class="LatestNews-headlineWrapper"><span class="LatestNews-wrapper"><time class="LatestNews-timestamp">September 23, 2022</time></span><a class="InvestingClubPill-investingClubPillLink" data-type="investing-club-button" href="/investingclub/"><img alt="CNBC Investing Club" class="InvestingClubPill-investingClubPill InvestingClubPill-latestNews" src="https://static-redesign.cnbcfm.com/dist/f9ace92fca661c9f3bdf.svg"/></a><a class="LatestNews-headline" href="https://www.cnbc.com/2022/09/23/jim-cramer-sat-down-with-the-ceos-of-salesforce-and-slack-this-week.html" title="Takeaways from Jim Cramer's interviews with the CEOs of Salesforce and Slack ">Takeaways from Jim Cramer's interviews with the CEOs of Salesforce and Slack </a></div></div></li><li class="LatestNews-iconCleared LatestNews-item" id="HomePageInternational-latestNews-6-24"><div class="LatestNews-container"><div class="LatestNews-headlineWrapper"><span class="LatestNews-wrapper"><time class="LatestNews-timestamp">September 23, 2022</time></span><a class="LatestNews-headline" href="https://www.cnbc.com/2022/09/23/some-homebuyers-are-facing-payment-shock-ways-to-save-on-a-mortgage.html" title="Some homebuyers are facing mortgage 'payment shock.' Here are ways to save">Some homebuyers are facing mortgage 'payment shock.' Here are ways to save</a></div></div></li><li class="LatestNews-iconCleared LatestNews-item" id="HomePageInternational-latestNews-6-25"><div class="LatestNews-container"><div class="LatestNews-headlineWrapper"><span class="LatestNews-wrapper"><time class="LatestNews-timestamp">September 23, 2022</time></span><a class="ProPill-proPillLink" data-type="pro-button" href="/pro/"><img alt="CNBC Pro" class="LatestNews-proPill ProPill-proPill" src="https://static-redesign.cnbcfm.com/dist/3390fc2824fa58d008fd.svg"/></a><a class="LatestNews-headline" href="https://www.cnbc.com/2022/09/23/ether-is-down-almost-20percent-since-the-merge-heres-whats-going-on.html" title="Ether is down almost 20% since the merge. Here’s what’s going on">Ether is down almost 20% since the merge. Here’s what’s going on</a></div></div></li><li class="LatestNews-iconCleared LatestNews-item" id="HomePageInternational-latestNews-6-26"><div class="LatestNews-container"><div class="LatestNews-headlineWrapper"><span class="LatestNews-wrapper"><time class="LatestNews-timestamp">September 23, 2022</time></span><a class="LatestNews-headline" href="https://www.cnbc.com/2022/09/23/elon-musk-direct-reports-at-tesla.html" title="Elon Musk has over 20 direct reports at Tesla — here are the ones we know about">Elon Musk has over 20 direct reports at Tesla — here are the ones we know about</a></div></div></li><li class="LatestNews-iconCleared LatestNews-item" id="HomePageInternational-latestNews-6-27"><div class="LatestNews-container"><div class="LatestNews-headlineWrapper"><span class="LatestNews-wrapper"><time class="LatestNews-timestamp">September 23, 2022</time></span><a class="LatestNews-headline" href="https://www.cnbc.com/2022/09/23/trump-merger-partner-shares-fall-dramatically.html" title="Trump SPAC shares are now around $16 after hitting $97 earlier this year">Trump SPAC shares are now around $16 after hitting $97 earlier this year</a></div></div></li><li class="LatestNews-iconCleared LatestNews-item" id="HomePageInternational-latestNews-6-28"><div class="LatestNews-container"><div class="LatestNews-headlineWrapper"><span class="LatestNews-wrapper"><time class="LatestNews-timestamp">September 23, 2022</time></span><a class="InvestingClubPill-investingClubPillLink" data-type="investing-club-button" href="/investingclub/"><img alt="CNBC Investing Club" class="InvestingClubPill-investingClubPill InvestingClubPill-latestNews" src="https://static-redesign.cnbcfm.com/dist/f9ace92fca661c9f3bdf.svg"/></a><a class="LatestNews-headline" href="https://www.cnbc.com/2022/09/23/us-fiscal-policy-is-undermining-the-feds-efforts-to-fight-inflation.html" title="Here's why U.S. fiscal policy is undermining the Fed's efforts to fight inflation">Here's why U.S. fiscal policy is undermining the Fed's efforts to fight inflation</a></div></div></li><li class="LatestNews-iconCleared LatestNews-item" id="HomePageInternational-latestNews-6-29"><div class="LatestNews-container"><div class="LatestNews-headlineWrapper"><span class="LatestNews-wrapper"><time class="LatestNews-timestamp">September 23, 2022</time></span><a class="LatestNews-headline" href="https://www.cnbc.com/2022/09/23/why-gold-and-cryptocurrencies-arent-inflation-proof-investments.html" title="Why gold and crypto haven't proven to be 'inflation-proof' investments in 2022">Why gold and crypto haven't proven to be 'inflation-proof' investments in 2022</a></div></div></li></ul><button class="LatestNews-button">View More</button></div></div></div></div></div><div class="PageBuilder-containerFluidWidths PageBuilder-pageRow"><div class="SidebarArticle-sidebar PageBuilder-sidebarLeft PageBuilder-sidebar" data-test="SidebarArticle"><div class="SidebarArticle-sticky" style="top:70px"><div style="margin-top:0px"></div><div><div class="QuoteFinder-container QuoteFinder-hideOnMobile" data-analytics="HomePageInternational-quoteFinder-8-1" data-test="quoteFinder-1"><h2 class="QuoteFinder-title">QUOTE FINDER</h2><div><form class="QuoteFinder-form" id="homePageInternational-quoteFinder-form"><input autocomplete="off" class="QuoteFinder-searchInput" id="QuoteFinder-searchInput" placeholder="Search" type="search"/><button class="QuoteFinder-submitBtn icon-search" data-analytic-id="Quote Finder Search" form="QuoteFinder-form" type="submit">Search</button></form></div><span class="DynamicLoadingIndicator-spinnerParent" data-test="DynamicLoadingIndicator"><span class="DynamicLoadingIndicator-spinner" style="width:40px;height:40px"></span></span></div></div><div><div class="MarketMoversPlus-container" data-analytics="HomePageInternational-marketMoversPlus-9-2" data-test="marketMoversPlus-2" id="HomePageInternational-MarketsMoversPlus-9"><div class="MarketMoversPlus-header"><div><a href="/us-market-movers/">Market Movers</a></div><div class="MarketMoversPlus-sponsorLogo"><div class="SponsorLogo-container" data-module="mps-slot" id="SponsorLogo-HomePageInternational-MarketsMoversPlus-9"></div></div></div><div class="MarketMoversMenu-moverContainer MarketMoversMenu-moverPlusContainer MarketMoversMenu-moverContainer"><button class="MarketMoversMenu-activeMarket MarketMoversMenu-marketOption">US</button><button class="MarketMoversMenu-marketOption">EUR</button><button class="MarketMoversMenu-marketOption">ASIA</button><button class="MarketMoversMenu-marketOption">COVID19</button></div></div></div></div></div><div class="PageBuilder-col-6 PageBuilder-col"><div class="RiverPlus-riverPlusContainer" data-analytics="HomePageInternational-riverPlus-10-0" data-test="riverPlus-0" id="Home Page International-riverPlus"><div id="HomePageInternational-riverPlus-10-0"><div class="RiverPlusCard-container"><div class="RiverPlusCard-cardLeft"><div class="RiverHeadline-headline RiverHeadline-hasThumbnail"><a href="https://www.cnbc.com/2022/09/24/us-sending-dangerous-signals-on-taiwan-china-tells-blinken.html">U.S. sending 'dangerous signals' on Taiwan, China tells Blinken</a></div><div class="RiverByline-bylineContainer"></div></div><div class="RiverThumbnail-thumbnailContainer"><div class="RiverThumbnail-imageThumbnail"><a href="https://www.cnbc.com/2022/09/24/us-sending-dangerous-signals-on-taiwan-china-tells-blinken.html"><div class="lazyload-placeholder" style="height:100%"></div></a></div></div></div><div class="RiverByline-mobileBylineContainer"></div></div><div id="HomePageInternational-riverPlus-10-1"><div class="RiverPlusCard-container"><div class="RiverPlusCard-cardLeft"><div class="RiverHeadline-headline RiverHeadline-hasThumbnail"><a class="ProPill-proPillLink" data-type="pro-button" href="/pro/"><img alt="CNBC Pro" class="ProPill-proPill" src="https://static-redesign.cnbcfm.com/dist/3390fc2824fa58d008fd.svg"/></a><a href="https://www.cnbc.com/2022/09/23/ether-is-down-almost-20percent-since-the-merge-heres-whats-going-on.html">Ether is down almost 20% since the merge. Here’s what’s going on</a></div><div class="RiverByline-bylineContainer"><div class="RiverByline-authorBylineContainer"><span class="RiverByline-authorByline"><span><a href="https://www.cnbc.com/tanaya-macheel/">Tanaya Macheel</a></span></span></div></div></div><div class="RiverThumbnail-thumbnailContainer"><div class="RiverThumbnail-imageThumbnail"><a href="https://www.cnbc.com/2022/09/23/ether-is-down-almost-20percent-since-the-merge-heres-whats-going-on.html"><div class="lazyload-placeholder" style="height:100%"></div></a></div></div></div><div class="RiverByline-mobileBylineContainer"><div class="RiverByline-authorBylineContainer"><span class="RiverByline-authorByline"><span><a href="https://www.cnbc.com/tanaya-macheel/">Tanaya Macheel</a></span></span></div></div></div><div id="HomePageInternational-riverPlus-10-2"><div class="RiverPlusCard-container"><div class="RiverPlusCard-cardLeft"><div class="RiverHeadline-headline RiverHeadline-hasThumbnail"><a href="https://www.cnbc.com/video/2022/09/22/70-governments-in-77-years-why-italy-changes-governments-so-often.html">70 governments in 77 years: Why Italy changes governments so often</a></div><div class="RiverByline-bylineContainer"><div class="RiverByline-authorBylineContainer"><span class="RiverByline-authorByline"><span><a href="https://www.cnbc.com/joumanna-bercetche/">Joumanna Bercetche</a></span></span></div></div></div><div class="RiverThumbnail-thumbnailContainer"><div class="lazyload-placeholder" style="height:100%"></div></div></div><div class="RiverByline-mobileBylineContainer"><div class="RiverByline-authorBylineContainer"><span class="RiverByline-authorByline"><span><a href="https://www.cnbc.com/joumanna-bercetche/">Joumanna Bercetche</a></span></span></div></div></div><div data-module="NativeRiver"><div class="NativeRiver-container" data-module="mps-slot" id="HomePageInternational-riverPlus-10-3"></div></div><div id="HomePageInternational-riverPlus-10-4"><div class="RiverPlusCard-container"><div class="RiverPlusCard-cardLeft"><div class="RiverHeadline-headline RiverHeadline-hasThumbnail"><a href="https://www.cnbc.com/2022/09/22/italian-election-italy-turns-to-the-right-with-fdis-georgia-meloni.html">The far-right is expected to win Italy's election in Rome's biggest political shift for decades</a></div><div class="RiverByline-bylineContainer"><div class="RiverByline-authorBylineContainer"><span class="RiverByline-authorByline"><span><a href="https://www.cnbc.com/holly-ellyatt/">Holly Ellyatt</a></span></span></div></div></div><div class="RiverThumbnail-thumbnailContainer"><div class="RiverThumbnail-imageThumbnail"><a href="https://www.cnbc.com/2022/09/22/italian-election-italy-turns-to-the-right-with-fdis-georgia-meloni.html"><div class="lazyload-placeholder" style="height:100%"></div></a></div></div></div><div class="RiverByline-mobileBylineContainer"><div class="RiverByline-authorBylineContainer"><span class="RiverByline-authorByline"><span><a href="https://www.cnbc.com/holly-ellyatt/">Holly Ellyatt</a></span></span></div></div></div><div id="HomePageInternational-riverPlus-10-5"><div class="RiverPlusCard-container"><div class="RiverPlusCard-cardLeft"><div class="RiverHeadline-headline RiverHeadline-hasThumbnail"><a class="ProPill-proPillLink" data-type="pro-button" href="/pro/"><img alt="CNBC Pro" class="ProPill-proPill" src="https://static-redesign.cnbcfm.com/dist/3390fc2824fa58d008fd.svg"/></a><a href="https://www.cnbc.com/2022/09/24/feared-stock-market-bottom-retest-is-now-underway.html">Feared stock market bottom retest is now underway</a></div><div class="RiverByline-bylineContainer"><div class="RiverByline-authorBylineContainer"><span class="RiverByline-authorByline"><span><a href="https://www.cnbc.com/michael-santoli/">Michael Santoli</a></span></span></div></div></div><div class="RiverThumbnail-thumbnailContainer"><div class="RiverThumbnail-imageThumbnail"><a href="https://www.cnbc.com/2022/09/24/feared-stock-market-bottom-retest-is-now-underway.html"><div class="lazyload-placeholder" style="height:100%"></div></a></div></div></div><div class="RiverByline-mobileBylineContainer"><div class="RiverByline-authorBylineContainer"><span class="RiverByline-authorByline"><span><a href="https://www.cnbc.com/michael-santoli/">Michael Santoli</a></span></span></div></div></div><div id="HomePageInternational-riverPlus-10-6"><div class="RiverPlusCard-container"><div class="RiverPlusCard-cardLeft"><div class="RiverHeadline-headline RiverHeadline-hasThumbnail"><a href="https://www.cnbc.com/2022/09/24/new-york-now-no-1-port-in-us-as-sea-change-in-trade-hits-west-coast.html">New York is now the nation's busiest port in a historic tipping point for U.S.-bound trade</a></div><div class="RiverByline-bylineContainer"><div class="RiverByline-authorBylineContainer"><span class="RiverByline-authorByline"><span><a href="https://www.cnbc.com/lori-ann-larocco/">Lori Ann LaRocco</a></span></span></div></div></div><div class="RiverThumbnail-thumbnailContainer"><div class="RiverThumbnail-imageThumbnail"><a href="https://www.cnbc.com/2022/09/24/new-york-now-no-1-port-in-us-as-sea-change-in-trade-hits-west-coast.html"><div class="lazyload-placeholder" style="height:100%"></div></a></div></div></div><div class="RiverByline-mobileBylineContainer"><div class="RiverByline-authorBylineContainer"><span class="RiverByline-authorByline"><span><a href="https://www.cnbc.com/lori-ann-larocco/">Lori Ann LaRocco</a></span></span></div></div></div><div id="HomePageInternational-riverPlus-10-7"><div class="RiverPlusCard-container"><div class="RiverPlusCard-cardLeft"><div class="RiverHeadline-headline RiverHeadline-hasThumbnail"><a href="https://www.cnbc.com/2022/09/24/liz-truss-britains-lurch-to-reaganomics-gets-thumbs-down-from-markets.html">Britain's lurch toward 'Reaganomics' gets a thumbs down from the markets</a></div><div class="RiverByline-bylineContainer"><div class="RiverByline-authorBylineContainer"><span class="RiverByline-authorByline"><span><a href="https://www.cnbc.com/matt-clinch/">Matt Clinch</a></span></span></div></div></div><div class="RiverThumbnail-thumbnailContainer"><div class="RiverThumbnail-imageThumbnail"><a href="https://www.cnbc.com/2022/09/24/liz-truss-britains-lurch-to-reaganomics-gets-thumbs-down-from-markets.html"><div class="lazyload-placeholder" style="height:100%"></div></a></div></div></div><div class="RiverByline-mobileBylineContainer"><div class="RiverByline-authorBylineContainer"><span class="RiverByline-authorByline"><span><a href="https://www.cnbc.com/matt-clinch/">Matt Clinch</a></span></span></div></div></div><div class="RiverPlusBreaker-container"><div class="RiverPlusCard-breakerCardContainer" id="HomePageInternational-riverPlus-10-8"><div class="RiverThumbnail-breakerImage"><div class="RiverThumbnail-imageThumbnail"><a href="https://www.cnbc.com/2022/09/24/top-10-cities-with-the-best-pizzerias-worldwide-.html"><div class="lazyload-placeholder" style="height:100%"></div></a></div></div><div class="RiverHeadline-headline RiverHeadline-hasThumbnail"><a href="https://www.cnbc.com/2022/09/24/top-10-cities-with-the-best-pizzerias-worldwide-.html">These 10 cities have the best pizzerias in the world—see where New York lands on the list</a></div></div><div class="RiverPlusCard-breakerCardContainer" id="HomePageInternational-riverPlus-10-9"><div class="RiverThumbnail-breakerImage"><div class="RiverThumbnail-imageThumbnail"><a href="https://www.cnbc.com/2022/09/24/how-to-raise-resilient-kids-by-developing-their-brains-with-nurturing-routines-parenting-expert.html"><div class="lazyload-placeholder" style="height:100%"></div></a></div></div><div class="RiverHeadline-headline RiverHeadline-hasThumbnail"><a href="https://www.cnbc.com/2022/09/24/how-to-raise-resilient-kids-by-developing-their-brains-with-nurturing-routines-parenting-expert.html">Want to raise strong, resilient kids? Create 'nurturing routines,' says parenting expert—here’s how</a></div></div></div><div id="HomePageInternational-riverPlus-10-10"><div class="RiverPlusCard-container"><div class="RiverPlusCard-cardLeft"><div class="RiverHeadline-headline RiverHeadline-hasThumbnail"><a href="https://www.cnbc.com/2022/09/24/convertible-sales-fall-in-us-amid-popularity-of-evs-suvs.html">Convertibles drive into the sunset as automakers invest in electric vehicles</a></div><div class="RiverByline-bylineContainer"><div class="RiverByline-authorBylineContainer"><span class="RiverByline-authorByline"><span><a href="https://www.cnbc.com/michael-wayland/">Michael Wayland</a></span></span></div></div></div><div class="RiverThumbnail-thumbnailContainer"><div class="RiverThumbnail-imageThumbnail"><a href="https://www.cnbc.com/2022/09/24/convertible-sales-fall-in-us-amid-popularity-of-evs-suvs.html"><div class="lazyload-placeholder" style="height:100%"></div></a></div></div></div><div class="RiverByline-mobileBylineContainer"><div class="RiverByline-authorBylineContainer"><span class="RiverByline-authorByline"><span><a href="https://www.cnbc.com/michael-wayland/">Michael Wayland</a></span></span></div></div></div><div id="HomePageInternational-riverPlus-10-11"><div class="RiverPlusCard-container"><div class="RiverPlusCard-cardLeft"><div class="RiverHeadline-headline RiverHeadline-hasThumbnail"><a href="https://www.cnbc.com/2022/09/21/big-businesses-trumpet-esg-credentials-scrutiny-is-on-the-rise.html">Big business likes to trumpet ESG credentials. But a 'greenwashing' reckoning could be coming</a></div><div class="RiverByline-bylineContainer"><div class="RiverByline-authorBylineContainer"><span class="RiverByline-authorByline"><span><a href="https://www.cnbc.com/anmar-frangoul-profile--cnbc/">Anmar Frangoul</a></span></span></div></div></div><div class="RiverThumbnail-thumbnailContainer"><div class="RiverThumbnail-imageThumbnail"><a href="https://www.cnbc.com/2022/09/21/big-businesses-trumpet-esg-credentials-scrutiny-is-on-the-rise.html"><div class="lazyload-placeholder" style="height:100%"></div></a></div></div></div><div class="RiverByline-mobileBylineContainer"><div class="RiverByline-authorBylineContainer"><span class="RiverByline-authorByline"><span><a href="https://www.cnbc.com/anmar-frangoul-profile--cnbc/">Anmar Frangoul</a></span></span></div></div></div><div id="HomePageInternational-riverPlus-10-12"><div class="RiverPlusCard-container"><div class="RiverPlusCard-cardLeft"><div class="RiverHeadline-headline RiverHeadline-hasThumbnail"><a href="https://www.cnbc.com/2022/09/23/inside-the-250-million-penthouse-on-billionaires-row.html">Inside the $250 million penthouse on 'Billionaires' Row'</a></div><div class="RiverByline-bylineContainer"><div class="RiverByline-authorBylineContainer"><span class="RiverByline-authorByline"><span><a href="https://www.cnbc.com/robert-frank/">Robert Frank</a></span></span></div></div></div><div class="RiverThumbnail-thumbnailContainer"><div class="RiverThumbnail-imageThumbnail"><a href="https://www.cnbc.com/2022/09/23/inside-the-250-million-penthouse-on-billionaires-row.html"><div class="lazyload-placeholder" style="height:100%"></div></a></div></div></div><div class="RiverByline-mobileBylineContainer"><div class="RiverByline-authorBylineContainer"><span class="RiverByline-authorByline"><span><a href="https://www.cnbc.com/robert-frank/">Robert Frank</a></span></span></div></div></div><div id="HomePageInternational-riverPlus-10-13"><div class="RiverPlusCard-container"><div class="RiverPlusCard-cardLeft"><div class="RiverHeadline-headline RiverHeadline-hasThumbnail"><a href="https://www.cnbc.com/2022/09/22/diania-merriam-semi-retired-in-her-30s-now-she-works-7point5-hours-per-week.html">This 35-year-old has a net worth of $470,000 and is semi-retired—and she only works 7.5 hours a week</a></div><div class="RiverByline-bylineContainer"><div class="RiverByline-authorBylineContainer"><span class="RiverByline-authorByline"><span><a href="https://www.cnbc.com/nicolas-vega/">Nicolas Vega</a></span></span></div></div></div><div class="RiverThumbnail-thumbnailContainer"><div class="RiverThumbnail-imageThumbnail"><a href="https://www.cnbc.com/2022/09/22/diania-merriam-semi-retired-in-her-30s-now-she-works-7point5-hours-per-week.html"><div class="lazyload-placeholder" style="height:100%"></div></a></div></div></div><div class="RiverByline-mobileBylineContainer"><div class="RiverByline-authorBylineContainer"><span class="RiverByline-authorByline"><span><a href="https://www.cnbc.com/nicolas-vega/">Nicolas Vega</a></span></span></div></div></div><div id="HomePageInternational-riverPlus-10-14"><div class="RiverPlusCard-container"><div class="RiverPlusCard-cardLeft"><div class="RiverHeadline-headline RiverHeadline-hasThumbnail"><a href="https://www.cnbc.com/2022/09/23/tech-stocks-worst-two-week-stretch-since-the-start-of-pandemic.html">Tech stocks just had their worst two-week stretch since the start of the pandemic</a></div><div class="RiverByline-bylineContainer"><div class="RiverByline-authorBylineContainer"><span class="RiverByline-authorByline"><span><a href="https://www.cnbc.com/ari-levy/">Ari Levy</a></span></span></div></div></div><div class="RiverThumbnail-thumbnailContainer"><div class="RiverThumbnail-imageThumbnail"><a href="https://www.cnbc.com/2022/09/23/tech-stocks-worst-two-week-stretch-since-the-start-of-pandemic.html"><div class="lazyload-placeholder" style="height:100%"></div></a></div></div></div><div class="RiverByline-mobileBylineContainer"><div class="RiverByline-authorBylineContainer"><span class="RiverByline-authorByline"><span><a href="https://www.cnbc.com/ari-levy/">Ari Levy</a></span></span></div></div></div><div id="HomePageInternational-riverPlus-10-15"><div class="RiverPlusCard-container"><div class="RiverPlusCard-cardLeft"><div class="RiverHeadline-headline RiverHeadline-hasThumbnail"><a href="https://www.cnbc.com/2022/09/23/british-pound-plunges-to-fresh-37-year-low-of-1point10-.html">British pound plunges, bonds sink after government announces tax cuts</a></div><div class="RiverByline-bylineContainer"><div class="RiverByline-authorBylineContainer"><span class="RiverByline-authorByline"><span><a href="https://www.cnbc.com/jenni-reid/">Jenni Reid</a></span></span></div></div></div><div class="RiverThumbnail-thumbnailContainer"><div class="RiverThumbnail-imageThumbnail"><a href="https://www.cnbc.com/2022/09/23/british-pound-plunges-to-fresh-37-year-low-of-1point10-.html"><div class="lazyload-placeholder" style="height:100%"></div></a></div></div></div><div class="RiverByline-mobileBylineContainer"><div class="RiverByline-authorBylineContainer"><span class="RiverByline-authorByline"><span><a href="https://www.cnbc.com/jenni-reid/">Jenni Reid</a></span></span></div></div></div><div id="HomePageInternational-riverPlus-10-16"><div class="RiverPlusCard-container"><div class="RiverPlusCard-cardLeft"><div class="RiverHeadline-headline RiverHeadline-hasThumbnail"><a class="ProPill-proPillLink" data-type="pro-button" href="/pro/"><img alt="CNBC Pro" class="ProPill-proPill" src="https://static-redesign.cnbcfm.com/dist/3390fc2824fa58d008fd.svg"/></a><a href="https://www.cnbc.com/2022/09/24/quantum-investing-perils-and-promise-of-quantum-computing-are-nearing.html">The perils and promise of quantum computing are nearing. Here are ways to invest</a></div><div class="RiverByline-bylineContainer"><div class="RiverByline-authorBylineContainer"><span class="RiverByline-authorByline"><span><a href="https://www.cnbc.com/hugh-son/">Hugh Son</a></span></span></div></div></div><div class="RiverThumbnail-thumbnailContainer"><div class="RiverThumbnail-imageThumbnail"><a href="https://www.cnbc.com/2022/09/24/quantum-investing-perils-and-promise-of-quantum-computing-are-nearing.html"><div class="lazyload-placeholder" style="height:100%"></div></a></div></div></div><div class="RiverByline-mobileBylineContainer"><div class="RiverByline-authorBylineContainer"><span class="RiverByline-authorByline"><span><a href="https://www.cnbc.com/hugh-son/">Hugh Son</a></span></span></div></div></div><div id="HomePageInternational-riverPlus-10-17"><div class="RiverPlusCard-container"><div class="RiverPlusCard-cardLeft"><div class="RiverHeadline-headline RiverHeadline-hasThumbnail"><a href="https://www.cnbc.com/2022/09/23/elon-musk-direct-reports-at-tesla.html">Elon Musk has more than 20 direct reports at Tesla — here are the ones we know about</a></div><div class="RiverByline-bylineContainer"><div class="RiverByline-authorBylineContainer"><span class="RiverByline-authorByline"><span><a href="https://www.cnbc.com/lora-kolodny/">Lora Kolodny</a><span class="RiverByline-bylineComma">,</span></span><span><a href="https://www.cnbc.com/gabriel-cortes-bio/">Gabriel Cortés</a></span></span></div></div></div><div class="RiverThumbnail-thumbnailContainer"><div class="RiverThumbnail-imageThumbnail"><a href="https://www.cnbc.com/2022/09/23/elon-musk-direct-reports-at-tesla.html"><div class="lazyload-placeholder" style="height:100%"></div></a></div></div></div><div class="RiverByline-mobileBylineContainer"><div class="RiverByline-authorBylineContainer"><span class="RiverByline-authorByline"><span><a href="https://www.cnbc.com/lora-kolodny/">Lora Kolodny</a><span class="RiverByline-bylineComma">,</span></span><span><a href="https://www.cnbc.com/gabriel-cortes-bio/">Gabriel Cortés</a></span></span></div></div></div><div id="HomePageInternational-riverPlus-10-18"><div class="RiverPlusCard-container"><div class="RiverPlusCard-cardLeft"><div class="RiverHeadline-headline RiverHeadline-hasThumbnail"><a href="https://www.cnbc.com/2022/09/23/mass-protests-in-iran-is-the-regimes-biggest-challenge-in-years.html">Protests in Iran, sparked by woman's death in police custody, are regime's biggest challenge in years</a></div><div class="RiverByline-bylineContainer"><div class="RiverByline-authorBylineContainer"><span class="RiverByline-authorByline"><span><a href="https://www.cnbc.com/natasha-turak/">Natasha Turak</a></span></span></div></div></div><div class="RiverThumbnail-thumbnailContainer"><div class="RiverThumbnail-imageThumbnail"><a href="https://www.cnbc.com/2022/09/23/mass-protests-in-iran-is-the-regimes-biggest-challenge-in-years.html"><div class="lazyload-placeholder" style="height:100%"></div></a></div></div></div><div class="RiverByline-mobileBylineContainer"><div class="RiverByline-authorBylineContainer"><span class="RiverByline-authorByline"><span><a href="https://www.cnbc.com/natasha-turak/">Natasha Turak</a></span></span></div></div></div><div id="HomePageInternational-riverPlus-10-19"><div class="RiverPlusCard-container"><div class="RiverPlusCard-cardLeft"><div class="RiverHeadline-headline RiverHeadline-hasThumbnail"><a href="https://www.cnbc.com/2022/09/23/uk-government-dishes-out-tax-cuts-as-country-braces-for-recession.html">UK government dishes out extensive tax cuts as country braces for recession</a></div><div class="RiverByline-bylineContainer"><div class="RiverByline-authorBylineContainer"><span class="RiverByline-authorByline"><span><a href="https://www.cnbc.com/jenni-reid/">Jenni Reid</a></span></span></div></div></div><div class="RiverThumbnail-thumbnailContainer"><div class="RiverThumbnail-imageThumbnail"><a href="https://www.cnbc.com/2022/09/23/uk-government-dishes-out-tax-cuts-as-country-braces-for-recession.html"><div class="lazyload-placeholder" style="height:100%"></div></a></div></div></div><div class="RiverByline-mobileBylineContainer"><div class="RiverByline-authorBylineContainer"><span class="RiverByline-authorByline"><span><a href="https://www.cnbc.com/jenni-reid/">Jenni Reid</a></span></span></div></div></div><div id="HomePageInternational-riverPlus-10-20"><div class="RiverPlusCard-container"><div class="RiverPlusCard-cardLeft"><div class="RiverHeadline-headline RiverHeadline-hasThumbnail"><a href="https://www.cnbc.com/video/2022/09/23/final-italian-polls-show-right-wing-coalition-to-win-more-than-45percent-of-national-vote.html">Final Italian polls show right-wing coalition to win more than 45% of national vote</a></div><div class="RiverByline-bylineContainer"></div></div><div class="RiverThumbnail-thumbnailContainer"><div class="lazyload-placeholder" style="height:100%"></div></div></div><div class="RiverByline-mobileBylineContainer"></div></div></div></div><div class="SidebarArticle-sidebar PageBuilder-sidebar" data-test="SidebarArticle"><div class="SidebarArticle-sticky" style="top:70px"><div style="margin-top:0px"></div></div></div></div><div class="PageBuilder-containerFluidWidths PageBuilder-pageRow"><div class="PageBuilder-col-12 PageBuilder-col"><section class="MarketsModule-container" data-analytics="HomePageInternational-marketsModule-12-0" data-test="marketsModule-0" id="HomePageInternational-MarketsModule-12"><section class="MarketsModule-top"><div class="MarketsModule-title"><h2><a href="//www.cnbc.com/us-market-movers/">Markets</a></h2><div class="SponsorLogo-container" data-module="mps-slot" id="SponsorLogo-HomePageInternational-MarketsModule-12"></div></div><section class="MarketMovers-container"><section class="MarketMovers-titleContainer"><h3 class="MarketMovers-title"><a href="/us-market-movers/">Market MOVERS</a></h3><div class="MarketMoversMenu-moverContainer"><button class="MarketMoversMenu-activeMarket MarketMoversMenu-marketOption">S&P</button><button class="MarketMoversMenu-marketOption">NASDAQ</button><button class="MarketMoversMenu-marketOption">DOW</button><button class="MarketMoversMenu-marketOption">EUR</button><button class="MarketMoversMenu-marketOption">ASIA</button><button class="MarketMoversMenu-marketOption">COVID19</button><button class="MarketMoversMenu-marketOption"></button></div></section><section class="MarketMovers-marketTopContainer"><div class="MarketMovers-loadingContainer"><span class="DynamicLoadingIndicator-spinnerParent" data-test="DynamicLoadingIndicator"><span class="DynamicLoadingIndicator-spinner" style="width:40px;height:40px"></span></span></div></section></section></section><section class="MarketsModule-row"><section class="MarketsModule-leftColumn"><div class="MarketsModule-marketTable"><section class="TableHeader-container" data-test="TableHeader"><h3 class="TableHeader-title">Most Active</h3></section><div data-test="GdsMarketTable"><div class="BasicTable-basicTable" data-test="BasicTable"><div class="BasicTable-tableWrapper"><div class="BasicTable-container"><table class="BasicTable-table"><tbody class="BasicTable-tableBody"></tbody></table></div></div><div><br/></div></div></div></div><div class="MarketsModule-marketTable"><section class="TableHeader-container" data-test="TableHeader"><h3 class="TableHeader-title">Unusual Volume</h3></section><div data-test="GdsMarketTable"><div class="BasicTable-basicTable" data-test="BasicTable"><div class="BasicTable-tableWrapper"><div class="BasicTable-container"><table class="BasicTable-table"><tbody class="BasicTable-tableBody"></tbody></table></div></div><div><br/></div></div></div></div></section><section class="MarketsModule-rightColumn"><section class="MarketNews-container"><h3 class="MarketNews-title"><a href="/stocks/">Latest Market News</a></h3><div class="Card-standardBreakerCard Card-titleBylineNoBorder Card-card" data-test="Card"><div class="Card-textContent"><div class="Card-titleAndFooter"><div><div class="Card-pro"><a class="Card-title" href="https://www.cnbc.com/2022/09/23/stocks-could-continue-skittish-trading-until-interest-rate-move-calms-down.html" target=""><div><a class="ProPill-proPillLink" data-type="pro-button" href="/pro/"><img alt="CNBC Pro" class="Card-proPill ProPill-proPill" src="https://static-redesign.cnbcfm.com/dist/3390fc2824fa58d008fd.svg"/></a>Stocks could continue skittish trading until interest rate move calms down</div></a></div></div><div class="Card-cardFooter Card-bylinePosition"><span class="Card-byline"><div class="MarketNews-authorBylineContainer"><span><span><a href="https://www.cnbc.com/patti-domm/">Patti Domm</a></span></span></div></span></div></div></div></div><div class="Card-standardBreakerCard Card-titleOnly Card-card" data-test="Card"><div class="Card-textContent"><div class="Card-titleAndFooter"><div><div class="Card-titleContainer"><a class="Card-title" href="https://www.cnbc.com/2022/09/22/futures-inch-higher-following-another-day-of-losses-after-fed-rate-hike-sell-offs.html" target=""><div>Dow drops nearly 500 points to close at new low for 2022 on rising recession fears</div></a></div></div><div class="Card-cardFooter"><span class="Card-byline"><div class="MarketNews-authorBylineContainer"><span><span><a href="https://www.cnbc.com/samantha-subin/">Samantha Subin</a><span class="MarketNews-bylineComma">,</span></span><span><a href="https://www.cnbc.com/alex-harring/">Alex Harring</a></span></span></div></span></div></div></div></div><div class="Card-standardBreakerCard Card-titleOnly Card-card" data-test="Card"><div class="Card-textContent"><div class="Card-titleAndFooter"><div><div class="Card-titleContainer"><a class="Card-title" href="https://www.cnbc.com/2022/09/23/10-year-treasury-yield-falls-as-markets-digest-fed-rate-hike.html" target=""><div>2-year Treasury tops 4.2%, a 15-year high as Fed continues to jolt short-term rates higher</div></a></div></div><div class="Card-cardFooter"><span class="Card-byline"><div class="MarketNews-authorBylineContainer"><span><span><a href="https://www.cnbc.com/samantha-subin/">Samantha Subin</a><span class="MarketNews-bylineComma">,</span></span><span><a href="https://www.cnbc.com/sophie-kiderlin/">Sophie Kiderlin</a></span></span></div></span></div></div></div></div><div class="Card-standardBreakerCard Card-titleOnly Card-card" data-test="Card"><div class="Card-textContent"><div class="Card-titleAndFooter"><div><div class="Card-titleContainer"><a class="Card-title" href="https://www.cnbc.com/2022/09/23/from-the-fed-to-europes-currency-crisis-heres-whats-behind-this-selloff-in-financial-markets.html" target=""><div>From the Fed to Europe's currency crisis, here's what's behind this selloff in financial markets</div></a></div></div><div class="Card-cardFooter"><span class="Card-byline"><div class="MarketNews-authorBylineContainer"><span><span><a href="https://www.cnbc.com/patti-domm/">Patti Domm</a></span></span></div></span></div></div></div></div></section></section></section></section></div></div><div class="PageBuilder-containerWidth100 PageBuilder-pageRow"><div class="PageBuilder-col-full PageBuilder-col"><div class="VideoBreakerFeatured-col-full VideoBreakerFeatured-col" data-analytics="HomePageInternational-videoBreakerFeatured-14-0" data-test="videoBreakerFeatured-0" id="HomePageInternational-VideoBreakerFeatured-14"><section class="FeaturedLiveTvModule-container FeaturedLiveTvModule-lightMode"><div class="FeaturedLiveTvModule-grid"><div class="FeaturedLiveTvModule-contentWrapper"><div class="FeaturedVideoHeader-container FeaturedVideoHeader-lightMode"><div class="FeaturedVideoHeader-title FeaturedVideoHeader-titleWithTwoBtns"><span class="FeaturedVideoHeader-titleDecorator" style="background-color:#fcb700"></span>CNBC TV</div><a href="//www.cnbc.com/live-tv/"><button class="FeaturedVideoHeader-callToAction FeaturedVideoHeader-wideOnly">WATCH LIVE</button></a><a href="//www.cnbc.com/latest-video/"><button class="FeaturedVideoHeader-callToAction">ALL VIDEOS</button></a></div><div class="FeaturedLiveTvModule-content"><section class="FeaturedLiveTvModule-videoPlayerContainer" id="cnbc-tv-container"><div class="FeaturedLiveTvModule-videoPlaceholder"></div></section><section class="FeaturedLiveTvModule-playlistContainer"><div class="VideoRecirculationLinks-mobileWrapper"><div class="VideoRecirculationLinks-container"><div class="VideoRecirculationLinks-card" role="link" tabindex="0"><div class="VideoRecirculationLinks-buttonWrapper" data-vilynx-id="7000264630"><div class="lazyload-placeholder" style="height:100%"></div></div><a href="https://www.cnbc.com/video/2022/09/22/how-these-startups-are-fixing-water-waste-on-farms.html"><div class="VideoRecirculationLinks-title VideoRecirculationLinks-lightMode">How these startups are fixing water waste on farms</div></a></div><div class="VideoRecirculationLinks-card" role="link" tabindex="0"><div class="VideoRecirculationLinks-buttonWrapper" data-vilynx-id="7000264200"><div class="lazyload-placeholder" style="height:100%"></div></div><a href="https://www.cnbc.com/video/2022/09/20/why-layoffs-may-be-on-the-horizon-in-the-us.html"><div class="VideoRecirculationLinks-title VideoRecirculationLinks-lightMode">Why layoffs may be on the horizon in the U.S.</div></a></div><div class="VideoRecirculationLinks-card" role="link" tabindex="0"><div class="VideoRecirculationLinks-buttonWrapper" data-vilynx-id="7000265025"><div class="lazyload-placeholder" style="height:100%"></div></div><a href="https://www.cnbc.com/video/2022/09/23/the-fed-will-have-to-take-the-terminal-funds-rate-higher-in-23-says-former-kc-fed-president.html"><div class="VideoRecirculationLinks-title VideoRecirculationLinks-lightMode">The Fed will have to take the terminal funds rate higher in '23, says former KC Fed president</div></a></div></div></div></section></div></div></div></section></div></div></div><div class="PageBuilder-containerWidth100 PageBuilder-pageRow"><div class="PageBuilder-col-full PageBuilder-col"><div class="FeaturedBreaker-featuredBreaker" data-analytics="HomePageInternational-featuredBreaker-15-0" data-test="featuredBreaker-0" id="HomePageInternational-FeaturedBreaker-SpecialReports-15"><div class="FeaturedBreaker-wrapper"><div><div class="FeaturedBreaker-heading"><h3 class="FeaturedBreaker-headingText"><a class="FeaturedBreaker-headingLink" href="https://www.cnbc.com/special-reports/">Special Reports</a></h3></div><div class="FeaturedBreaker-arrowContainer"><button aria-label="previous-button" class="FeaturedBreaker-prevArrowInactive FeaturedBreaker-prevArrow FeaturedBreaker-arrow"><span class="icon-arrow-left"></span></button><button aria-label="next-button" class="FeaturedBreaker-nextArrow FeaturedBreaker-arrow"><span class="icon-arrow-right"></span></button></div></div><div class="FeaturedBreaker-slideContainer"><div class="FeaturedBreaker-leftSlide"><div class="FeaturedBreaker-slideRail" style="transform:translateX(-0%)"><div class="lazyload-placeholder" style="height:100%"></div><div class="lazyload-placeholder" style="height:100%"></div><div class="lazyload-placeholder" style="height:100%"></div><div class="lazyload-placeholder" style="height:100%"></div><div class="lazyload-placeholder" style="height:100%"></div><div class="lazyload-placeholder" style="height:100%"></div><div class="lazyload-placeholder" style="height:100%"></div><div class="lazyload-placeholder" style="height:100%"></div></div></div><div class="FeaturedBreaker-rightSlide"><div class="FeaturedBreaker-slideRail" style="transform:translateX(-100%)"><div class="lazyload-placeholder" style="height:100%"></div><div class="lazyload-placeholder" style="height:100%"></div><div class="lazyload-placeholder" style="height:100%"></div><div class="lazyload-placeholder" style="height:100%"></div><div class="lazyload-placeholder" style="height:100%"></div><div class="lazyload-placeholder" style="height:100%"></div><div class="lazyload-placeholder" style="height:100%"></div><div class="lazyload-placeholder" style="height:100%"></div></div></div></div></div></div></div></div><div class="PageBuilder-containerFluidWidths PageBuilder-pageRow"><div class="PageBuilder-col-12 PageBuilder-col"><div class="TrendingNowBreaker-pageRow" data-analytics="HomePageInternational-trendingNowBreaker-16-0" data-test="trendingNowBreaker-0" id="HomePageInternational-TrendingNowBreaker-16"><div class="TrendingNowBreaker-col-12 TrendingNowBreaker-col"><div class="TrendingNow-container"><div></div><h2 class="TrendingNow-heading">Trending Now</h2><ul class="TrendingNow-storyContainer"><li class="TrendingNowItem-storyItem"><div class="TrendingNowItem-number">1</div><div><a class="TrendingNowItem-title" href="https://www.cnbc.com/2022/09/23/google-ceo-pichai-fields-questions-on-cost-cuts-at-all-hands-meeting-.html">Google CEO Pichai tells employees not to 'equate fun with money' in heated all-hands meeting </a></div></li><li class="TrendingNowItem-storyItem"><div class="TrendingNowItem-number">2</div><div><a class="TrendingNowItem-title" href="https://www.cnbc.com/2022/09/21/inflation-relief-checks-residents-in-17-states-could-get-money-soon.html">Residents in 17 states are getting inflation-relief checks—here's who qualifies for the money</a></div></li><li class="TrendingNowItem-storyItem"><div class="TrendingNowItem-number">3</div><div><a class="TrendingNowItem-title" href="https://www.cnbc.com/2022/09/22/diania-merriam-semi-retired-in-her-30s-now-she-works-7point5-hours-per-week.html">This 35-year-old has a net worth of $470,000 and is semi-retired—and she only works 7.5 hours a week</a></div></li><li class="TrendingNowItem-storyItem"><div class="TrendingNowItem-number">4</div><div><a class="TrendingNowItem-title" href="https://www.cnbc.com/2022/09/24/wallethub-top-10-cities-to-retire-2022-nearly-half-are-in-florida.html">The No. 1 best city to retire isn't in Florida—but several others in the top 10 for 2022 are</a></div></li><li class="TrendingNowItem-storyItem"><div class="TrendingNowItem-number">5</div><div><a class="TrendingNowItem-title" href="https://www.cnbc.com/2022/09/24/how-to-raise-resilient-kids-by-developing-their-brains-with-nurturing-routines-parenting-expert.html">Want to raise strong, resilient kids? Create 'nurturing routines,' says parenting expert—here’s how</a></div></li></ul></div></div></div></div></div><div class="PageBuilder-containerFluidWidths PageBuilder-pageRow"><div class="PageBuilder-col-9 PageBuilder-col"><div class="TwoColumnImageDense-pageRow TwoColumnImageDense-imageDense" data-analytics="HomePageInternational-twoColumnImageDense-17-0" data-test="twoColumnImageDense-0"><section class="SectionWrapper-container" data-test="SectionWrapper" id="HomePageInternational-TwoColumnImageDense-ProNewsandAnalysis-17"><header class="SectionWrapper-header"><span aria-hidden="true" class="SectionWrapper-decoration"></span><h2 class="SectionWrapper-title"><a href="https://www.cnbc.com/pro/news/">Pro News and Analysis</a></h2></header><div class="SectionWrapper-content"><div class="Layout-layout" data-test="Layout"><div class="Column-imageDenseModRight" data-test="Column"><div class="Card-standardBreakerCard Card-featuredRectangleMediaImagedense Card-featuredRectangleMedia Card-card" data-test="Card"><a class="Card-mediaContainer" href="https://www.cnbc.com/2022/09/24/analysts-name-top-high-conviction-stocks-for-playing-market-turbulence.html" tabindex="-1" target=""><div class="Card-imageContainer"><div class="Card-rectangleMediaContainer Card-placeholder"><picture data-test="Picture"><source height="630" media="(min-width: 1340px)" srcset="https://image.cnbcfm.com/api/v1/image/106413616-1582815498409img_9095r.jpg?v=1664024950&w=1260&h=630&ffmt=webp" type="image/webp" width="1260"/><source height="410" media="(min-width: 1020px)" srcset="https://image.cnbcfm.com/api/v1/image/106413616-1582815498409img_9095r.jpg?v=1664024950&w=820&h=410&ffmt=webp" type="image/webp" width="820"/><source height="442" media="(min-width: 760px)" srcset="https://image.cnbcfm.com/api/v1/image/106413616-1582815498409img_9095r.jpg?v=1664024950&w=884&h=442&ffmt=webp" type="image/webp" width="884"/><source height="360" media="(min-width: 0px)" srcset="https://image.cnbcfm.com/api/v1/image/106413616-1582815498409img_9095r.jpg?v=1664024950&w=720&h=360&ffmt=webp" type="image/webp" width="720"/><img alt="Analysts name the top 'high conviction' stocks for playing the market turbulence" class="Card-mediaContainerInner" loading="lazy" src="https://image.cnbcfm.com/api/v1/image/106413616-1582815498409img_9095r.jpg?v=1664024950&w=884&h=442"/></picture></div></div></a><div class="Card-textContent"><div class="Card-titleAndFooter"><div><div class="Card-pro"><a class="Card-title" href="https://www.cnbc.com/2022/09/24/analysts-name-top-high-conviction-stocks-for-playing-market-turbulence.html" target=""><div><a class="ProPill-proPillLink" data-type="pro-button" href="/pro/"><img alt="CNBC Pro" class="Card-proPill ProPill-proPill" src="https://static-redesign.cnbcfm.com/dist/3390fc2824fa58d008fd.svg"/></a>Analysts name the top 'high conviction' stocks for playing the market turbulence</div></a></div></div><div class="Card-cardFooter Card-bylinePosition"><span class="Card-byline"><a href="https://www.cnbc.com/michael-bloom/">Michael Bloom</a></span></div></div></div></div></div><div class="Column-imageDenseModLeft" data-test="Column"><div class="Card-standardBreakerCard Card-squareMediaImageDense Card-squareMedia Card-card" data-test="Card"><a class="Card-mediaContainer" href="https://www.cnbc.com/2022/09/24/feared-stock-market-bottom-retest-is-now-underway.html" tabindex="-1" target=""><div class="Card-imageContainer"><div class="Card-squareMediaContainer Card-placeholder"><picture data-test="Picture"><source height="630" media="(min-width: 1340px)" srcset="https://image.cnbcfm.com/api/v1/image/107123249-16638844912022-09-22t220518z_655682612_rc2lmw9d7ov9_rtrmadp_0_usa-stocks.jpeg?v=1664024542&w=600&h=630&ffmt=webp" type="image/webp" width="600"/><source height="410" media="(min-width: 1020px)" srcset="https://image.cnbcfm.com/api/v1/image/107123249-16638844912022-09-22t220518z_655682612_rc2lmw9d7ov9_rtrmadp_0_usa-stocks.jpeg?v=1664024542&w=380&h=410&ffmt=webp" type="image/webp" width="380"/><source height="442" media="(min-width: 760px)" srcset="https://image.cnbcfm.com/api/v1/image/107123249-16638844912022-09-22t220518z_655682612_rc2lmw9d7ov9_rtrmadp_0_usa-stocks.jpeg?v=1664024542&w=412&h=442&ffmt=webp" type="image/webp" width="412"/><source height="206" media="(min-width: 0px)" srcset="https://image.cnbcfm.com/api/v1/image/107123249-16638844912022-09-22t220518z_655682612_rc2lmw9d7ov9_rtrmadp_0_usa-stocks.jpeg?v=1664024542&w=206&h=206&ffmt=webp" type="image/webp" width="206"/><img alt="Feared stock market bottom retest is now underway" class="Card-mediaContainerInner" loading="lazy" src="https://image.cnbcfm.com/api/v1/image/107123249-16638844912022-09-22t220518z_655682612_rc2lmw9d7ov9_rtrmadp_0_usa-stocks.jpeg?v=1664024542&w=412&h=442"/></picture></div></div></a><div class="Card-textContent"><div class="Card-titleAndFooter"><div><div class="Card-pro"><a class="Card-title" href="https://www.cnbc.com/2022/09/24/feared-stock-market-bottom-retest-is-now-underway.html" target=""><div><a class="ProPill-proPillLink" data-type="pro-button" href="/pro/"><img alt="CNBC Pro" class="Card-proPill ProPill-proPill" src="https://static-redesign.cnbcfm.com/dist/3390fc2824fa58d008fd.svg"/></a>Feared stock market bottom retest is now underway</div></a></div></div><div class="Card-cardFooter Card-bylinePosition"><span class="Card-byline"><a href="https://www.cnbc.com/michael-santoli/">Michael Santoli</a></span></div></div></div></div></div></div><div class="Layout-layout" data-test="Layout"><div class="Column-threeUpUltraDense" data-test="Column"><div class="Card-standardBreakerCard Card-rectangleToLeftSquareMediaUltraDense Card-rectangleToLeftSquareMedia Card-card" data-test="Card"><a class="Card-mediaContainer" href="https://www.cnbc.com/2022/09/24/quantum-investing-perils-and-promise-of-quantum-computing-are-nearing.html" tabindex="-1" target=""><div class="Card-imageContainer"><div class="Card-squareMediaContainer Card-placeholder"><picture data-test="Picture"><source height="300" media="(min-width: 1340px)" srcset="https://image.cnbcfm.com/api/v1/image/106198807-1571848425507handoutgooglepichaiquantum.jpg?v=1664024182&w=600&h=300&ffmt=webp" type="image/webp" width="600"/><source height="190" media="(min-width: 1020px)" srcset="https://image.cnbcfm.com/api/v1/image/106198807-1571848425507handoutgooglepichaiquantum.jpg?v=1664024182&w=380&h=190&ffmt=webp" type="image/webp" width="380"/><source height="206" media="(min-width: 760px)" srcset="https://image.cnbcfm.com/api/v1/image/106198807-1571848425507handoutgooglepichaiquantum.jpg?v=1664024182&w=412&h=206&ffmt=webp" type="image/webp" width="412"/><source height="206" media="(min-width: 0px)" srcset="https://image.cnbcfm.com/api/v1/image/106198807-1571848425507handoutgooglepichaiquantum.jpg?v=1664024182&w=206&h=206&ffmt=webp" type="image/webp" width="206"/><img alt="The perils and promise of quantum computing are nearing. Here are ways to invest" class="Card-mediaContainerInner" loading="lazy" src="https://image.cnbcfm.com/api/v1/image/106198807-1571848425507handoutgooglepichaiquantum.jpg?v=1664024182&w=412&h=206"/></picture></div></div></a><div class="Card-textContent"><div class="Card-titleAndFooter"><div><div class="Card-pro"><a class="Card-title" href="https://www.cnbc.com/2022/09/24/quantum-investing-perils-and-promise-of-quantum-computing-are-nearing.html" target=""><div><a class="ProPill-proPillLink" data-type="pro-button" href="/pro/"><img alt="CNBC Pro" class="Card-proPill ProPill-proPill" src="https://static-redesign.cnbcfm.com/dist/3390fc2824fa58d008fd.svg"/></a>The perils and promise of quantum computing are nearing. Here are ways to invest</div></a></div></div><div class="Card-threeUpCardFooterStyle Card-bylinePosition"><span class="Card-threeUpBylineStyle"><a href="https://www.cnbc.com/hugh-son/">Hugh Son</a></span></div></div></div></div></div><div class="Column-threeUpUltraDense" data-test="Column"><div class="Card-standardBreakerCard Card-rectangleToLeftSquareMediaUltraDense Card-rectangleToLeftSquareMedia Card-card" data-test="Card"><a class="Card-mediaContainer" href="https://www.cnbc.com/2022/09/23/stocks-could-continue-skittish-trading-until-interest-rate-move-calms-down.html" tabindex="-1" target=""><div class="Card-imageContainer"><div class="Card-squareMediaContainer Card-placeholder"><picture data-test="Picture"><source height="300" media="(min-width: 1340px)" srcset="https://image.cnbcfm.com/api/v1/image/107110721-1661789175637-nyse7.jpg?v=1663967958&w=600&h=300&ffmt=webp" type="image/webp" width="600"/><source height="190" media="(min-width: 1020px)" srcset="https://image.cnbcfm.com/api/v1/image/107110721-1661789175637-nyse7.jpg?v=1663967958&w=380&h=190&ffmt=webp" type="image/webp" width="380"/><source height="206" media="(min-width: 760px)" srcset="https://image.cnbcfm.com/api/v1/image/107110721-1661789175637-nyse7.jpg?v=1663967958&w=412&h=206&ffmt=webp" type="image/webp" width="412"/><source height="206" media="(min-width: 0px)" srcset="https://image.cnbcfm.com/api/v1/image/107110721-1661789175637-nyse7.jpg?v=1663967958&w=206&h=206&ffmt=webp" type="image/webp" width="206"/><img alt="What to watch in the markets in the week ahead" class="Card-mediaContainerInner" loading="lazy" src="https://image.cnbcfm.com/api/v1/image/107110721-1661789175637-nyse7.jpg?v=1663967958&w=412&h=206"/></picture></div></div></a><div class="Card-textContent"><div class="Card-titleAndFooter"><div><div class="Card-pro"><a class="Card-title" href="https://www.cnbc.com/2022/09/23/stocks-could-continue-skittish-trading-until-interest-rate-move-calms-down.html" target=""><div><a class="ProPill-proPillLink" data-type="pro-button" href="/pro/"><img alt="CNBC Pro" class="Card-proPill ProPill-proPill" src="https://static-redesign.cnbcfm.com/dist/3390fc2824fa58d008fd.svg"/></a>What to watch in the markets in the week ahead</div></a></div></div><div class="Card-threeUpCardFooterStyle Card-bylinePosition"><span class="Card-threeUpBylineStyle"><a href="https://www.cnbc.com/patti-domm/">Patti Domm</a></span></div></div></div></div></div><div class="Column-threeUpUltraDense" data-test="Column"><div class="Card-standardBreakerCard Card-rectangleToLeftSquareMediaUltraDense Card-rectangleToLeftSquareMedia Card-card" data-test="Card"><a class="Card-mediaContainer" href="https://www.cnbc.com/2022/09/23/pro-picks-watch-all-of-fridays-big-stock-calls-on-cnbc.html" tabindex="-1" target=""><div class="Card-imageContainer"><div class="Card-squareMediaContainer Card-placeholder"><picture data-test="Picture"><source height="300" media="(min-width: 1340px)" srcset="https://image.cnbcfm.com/api/v1/image/107123868-1663965213507-Movers_09_23.png?v=1663967625&w=600&h=300&ffmt=webp" type="image/webp" width="600"/><source height="190" media="(min-width: 1020px)" srcset="https://image.cnbcfm.com/api/v1/image/107123868-1663965213507-Movers_09_23.png?v=1663967625&w=380&h=190&ffmt=webp" type="image/webp" width="380"/><source height="206" media="(min-width: 760px)" srcset="https://image.cnbcfm.com/api/v1/image/107123868-1663965213507-Movers_09_23.png?v=1663967625&w=412&h=206&ffmt=webp" type="image/webp" width="412"/><source height="206" media="(min-width: 0px)" srcset="https://image.cnbcfm.com/api/v1/image/107123868-1663965213507-Movers_09_23.png?v=1663967625&w=206&h=206&ffmt=webp" type="image/webp" width="206"/><img alt="Pro Picks: Watch all of Friday's big stock calls on CNBC" class="Card-mediaContainerInner" loading="lazy" src="https://image.cnbcfm.com/api/v1/image/107123868-1663965213507-Movers_09_23.png?v=1663967625&w=412&h=206"/></picture></div></div></a><div class="Card-textContent"><div class="Card-titleAndFooter"><div><div class="Card-pro"><a class="Card-title" href="https://www.cnbc.com/2022/09/23/pro-picks-watch-all-of-fridays-big-stock-calls-on-cnbc.html" target=""><div><a class="ProPill-proPillLink" data-type="pro-button" href="/pro/"><img alt="CNBC Pro" class="Card-proPill ProPill-proPill" src="https://static-redesign.cnbcfm.com/dist/3390fc2824fa58d008fd.svg"/></a>Pro Picks: Watch all of Friday's big stock calls on CNBC</div></a></div></div><div class="Card-threeUpCardFooterStyle Card-bylinePosition"><span class="Card-threeUpBylineStyle"><a href="https://www.cnbc.com/joshua-natoli/">Joshua Natoli</a></span></div></div></div></div></div></div></div></section></div><div class="TwoColumnImageDense-pageRow TwoColumnImageDense-imageDense" data-analytics="HomePageInternational-twoColumnImageDense-18-1" data-test="twoColumnImageDense-1"><section class="SectionWrapper-container" data-test="SectionWrapper" id="HomePageInternational-TwoColumnImageDense-SustainableFuture-18"><header class="SectionWrapper-header"><span aria-hidden="true" class="SectionWrapper-decoration"></span><h2 class="SectionWrapper-title"><a href="https://www.cnbc.com/sustainable-future/">Sustainable Future</a></h2></header><div class="SectionWrapper-content"><div class="Layout-layout" data-test="Layout"><div class="Column-imageDenseModRight" data-test="Column"><div class="Card-standardBreakerCard Card-featuredRectangleMediaImagedense Card-featuredRectangleMedia Card-card" data-test="Card"><a class="Card-mediaContainer" href="https://www.cnbc.com/2022/09/21/big-businesses-trumpet-esg-credentials-scrutiny-is-on-the-rise.html" tabindex="-1" target=""><div class="Card-imageContainer"><div class="Card-rectangleMediaContainer Card-placeholder"><picture data-test="Picture"><source height="630" media="(min-width: 1340px)" srcset="https://image.cnbcfm.com/api/v1/image/107115250-1662627296434-gettyimages-1090636062-AFP_1CS0F5.jpeg?v=1663738488&w=1260&h=630&ffmt=webp" type="image/webp" width="1260"/><source height="410" media="(min-width: 1020px)" srcset="https://image.cnbcfm.com/api/v1/image/107115250-1662627296434-gettyimages-1090636062-AFP_1CS0F5.jpeg?v=1663738488&w=820&h=410&ffmt=webp" type="image/webp" width="820"/><source height="442" media="(min-width: 760px)" srcset="https://image.cnbcfm.com/api/v1/image/107115250-1662627296434-gettyimages-1090636062-AFP_1CS0F5.jpeg?v=1663738488&w=884&h=442&ffmt=webp" type="image/webp" width="884"/><source height="360" media="(min-width: 0px)" srcset="https://image.cnbcfm.com/api/v1/image/107115250-1662627296434-gettyimages-1090636062-AFP_1CS0F5.jpeg?v=1663738488&w=720&h=360&ffmt=webp" type="image/webp" width="720"/><img alt="Big business likes to trumpet ESG credentials. But a 'greenwashing' reckoning could be coming" class="Card-mediaContainerInner" loading="lazy" src="https://image.cnbcfm.com/api/v1/image/107115250-1662627296434-gettyimages-1090636062-AFP_1CS0F5.jpeg?v=1663738488&w=884&h=442"/></picture></div></div></a><div class="Card-textContent"><div class="Card-titleAndFooter"><div><div class="Card-titleContainer"><a class="Card-title" href="https://www.cnbc.com/2022/09/21/big-businesses-trumpet-esg-credentials-scrutiny-is-on-the-rise.html" target=""><div>Big business likes to trumpet ESG credentials. But a 'greenwashing' reckoning could be coming</div></a></div></div><div class="Card-cardFooter"><span class="Card-byline"><a href="https://www.cnbc.com/anmar-frangoul-profile--cnbc/">Anmar Frangoul</a></span></div></div></div></div></div><div class="Column-imageDenseModLeft" data-test="Column"><div class="Card-standardBreakerCard Card-squareMediaImageDense Card-squareMedia Card-card" data-test="Card"><a class="Card-mediaContainer" href="https://www.cnbc.com/2022/09/20/uns-guterres-says-polluters-must-pay-calls-for-tax-on-fossil-fuels.html" tabindex="-1" target=""><div class="Card-imageContainer"><div class="Card-squareMediaContainer Card-placeholder"><picture data-test="Picture"><source height="630" media="(min-width: 1340px)" srcset="https://image.cnbcfm.com/api/v1/image/107121090-1663667814812-gettyimages-1235384474-United_Nations_General_Assembly.jpeg?v=1663680393&w=600&h=630&ffmt=webp" type="image/webp" width="600"/><source height="410" media="(min-width: 1020px)" srcset="https://image.cnbcfm.com/api/v1/image/107121090-1663667814812-gettyimages-1235384474-United_Nations_General_Assembly.jpeg?v=1663680393&w=380&h=410&ffmt=webp" type="image/webp" width="380"/><source height="442" media="(min-width: 760px)" srcset="https://image.cnbcfm.com/api/v1/image/107121090-1663667814812-gettyimages-1235384474-United_Nations_General_Assembly.jpeg?v=1663680393&w=412&h=442&ffmt=webp" type="image/webp" width="412"/><source height="206" media="(min-width: 0px)" srcset="https://image.cnbcfm.com/api/v1/image/107121090-1663667814812-gettyimages-1235384474-United_Nations_General_Assembly.jpeg?v=1663680393&w=206&h=206&ffmt=webp" type="image/webp" width="206"/><img alt="UN's Guterres says 'polluters must pay', calls for extra tax on fossil fuels" class="Card-mediaContainerInner" loading="lazy" src="https://image.cnbcfm.com/api/v1/image/107121090-1663667814812-gettyimages-1235384474-United_Nations_General_Assembly.jpeg?v=1663680393&w=412&h=442"/></picture></div></div></a><div class="Card-textContent"><div class="Card-titleAndFooter"><div><div class="Card-titleContainer"><a class="Card-title" href="https://www.cnbc.com/2022/09/20/uns-guterres-says-polluters-must-pay-calls-for-tax-on-fossil-fuels.html" target=""><div>UN's Guterres says 'polluters must pay', calls for extra tax on fossil fuels</div></a></div></div><div class="Card-cardFooter"><span class="Card-byline"><a href="https://www.cnbc.com/anmar-frangoul-profile--cnbc/">Anmar Frangoul</a></span></div></div></div></div></div></div><div class="Layout-layout" data-test="Layout"><div class="Column-threeUpUltraDense" data-test="Column"><div class="Card-standardBreakerCard Card-rectangleToLeftSquareMediaUltraDense Card-rectangleToLeftSquareMedia Card-card" data-test="Card"><a class="Card-mediaContainer" href="https://www.cnbc.com/2022/09/07/uks-new-energy-chief-says-fracking-interesting-we-need-fossil-fuels.html" tabindex="-1" target=""><div class="Card-imageContainer"><div class="Card-squareMediaContainer Card-placeholder"><picture data-test="Picture"><source height="300" media="(min-width: 1340px)" srcset="https://image.cnbcfm.com/api/v1/image/107114538-1662546650902-gettyimages-1243006666-cc208313.jpeg?v=1662546794&w=600&h=300&ffmt=webp" type="image/webp" width="600"/><source height="190" media="(min-width: 1020px)" srcset="https://image.cnbcfm.com/api/v1/image/107114538-1662546650902-gettyimages-1243006666-cc208313.jpeg?v=1662546794&w=380&h=190&ffmt=webp" type="image/webp" width="380"/><source height="206" media="(min-width: 760px)" srcset="https://image.cnbcfm.com/api/v1/image/107114538-1662546650902-gettyimages-1243006666-cc208313.jpeg?v=1662546794&w=412&h=206&ffmt=webp" type="image/webp" width="412"/><source height="206" media="(min-width: 0px)" srcset="https://image.cnbcfm.com/api/v1/image/107114538-1662546650902-gettyimages-1243006666-cc208313.jpeg?v=1662546794&w=206&h=206&ffmt=webp" type="image/webp" width="206"/><img alt="Liz Truss' pick for Britain's energy chief slammed by climate campaigners" class="Card-mediaContainerInner" loading="lazy" src="https://image.cnbcfm.com/api/v1/image/107114538-1662546650902-gettyimages-1243006666-cc208313.jpeg?v=1662546794&w=412&h=206"/></picture></div></div></a><div class="Card-textContent"><div class="Card-titleAndFooter"><div><div class="Card-titleContainer"><a class="Card-title" href="https://www.cnbc.com/2022/09/07/uks-new-energy-chief-says-fracking-interesting-we-need-fossil-fuels.html" target=""><div>Liz Truss' pick for Britain's energy chief slammed by climate campaigners</div></a></div></div><div class="Card-threeUpCardFooterStyle"><span class="Card-threeUpBylineStyle"><a href="https://www.cnbc.com/anmar-frangoul-profile--cnbc/">Anmar Frangoul</a></span></div></div></div></div></div><div class="Column-threeUpUltraDense" data-test="Column"><div class="Card-standardBreakerCard Card-rectangleToLeftSquareMediaUltraDense Card-rectangleToLeftSquareMedia Card-card Card-cnbcvideo" data-test="Card"><a class="Card-mediaContainer" href="https://www.cnbc.com/video/2022/09/08/undps-human-development-report-uncertain-times-unsettled-lives.html" tabindex="0" target=""><div class="Card-imageContainer"><div class="Card-squareMediaContainer Card-placeholder"><div class="PlayButton-container" data-test="PlayButton"><div class="PlayButton-base" data-type="play"><span class="PlayButton-flyout">watch now</span><span class="icon-play-triangle PlayButton-icon"></span></div></div><picture data-test="Picture"><source height="300" media="(min-width: 1340px)" srcset="https://image.cnbcfm.com/api/v1/image/107115317-Tania_and_achim_steiner_human_development.jpg?v=1662634925&w=600&h=300&ffmt=webp" type="image/webp" width="600"/><source height="190" media="(min-width: 1020px)" srcset="https://image.cnbcfm.com/api/v1/image/107115317-Tania_and_achim_steiner_human_development.jpg?v=1662634925&w=380&h=190&ffmt=webp" type="image/webp" width="380"/><source height="206" media="(min-width: 760px)" srcset="https://image.cnbcfm.com/api/v1/image/107115317-Tania_and_achim_steiner_human_development.jpg?v=1662634925&w=412&h=206&ffmt=webp" type="image/webp" width="412"/><source height="206" media="(min-width: 0px)" srcset="https://image.cnbcfm.com/api/v1/image/107115317-Tania_and_achim_steiner_human_development.jpg?v=1662634925&w=206&h=206&ffmt=webp" type="image/webp" width="206"/><img alt="UNDP's Human Development Report: 'Uncertain times, Unsettled lives.'" class="Card-mediaContainerInner" loading="lazy" src="https://image.cnbcfm.com/api/v1/image/107115317-Tania_and_achim_steiner_human_development.jpg?v=1662634925&w=412&h=206"/></picture></div></div></a><div class="Card-textContent"><div class="Card-titleAndFooter"><div><div class="Card-titleContainer"><a class="Card-title" href="https://www.cnbc.com/video/2022/09/08/undps-human-development-report-uncertain-times-unsettled-lives.html" target=""><div>UNDP's Human Development Report: 'Uncertain times, Unsettled lives.'</div></a></div></div><div class="Card-threeUpCardFooterStyle"><span class="Card-threeUpBylineStyle"><a href="https://www.cnbc.com/tania-bryer/">Tania Bryer</a></span></div></div></div></div></div><div class="Column-threeUpUltraDense" data-test="Column"><div class="Card-standardBreakerCard Card-rectangleToLeftSquareMediaUltraDense Card-rectangleToLeftSquareMedia Card-card" data-test="Card"><a class="Card-mediaContainer" href="https://www.cnbc.com/2022/09/01/huge-offshore-wind-farm-hornsea-2-is-fully-operational-orsted-says.html" tabindex="-1" target=""><div class="Card-imageContainer"><div class="Card-squareMediaContainer Card-placeholder"><picture data-test="Picture"><source height="300" media="(min-width: 1340px)" srcset="https://image.cnbcfm.com/api/v1/image/107111843-1661943988440-Hornsea_2_from_air.jpg?v=1661944112&w=600&h=300&ffmt=webp" type="image/webp" width="600"/><source height="190" media="(min-width: 1020px)" srcset="https://image.cnbcfm.com/api/v1/image/107111843-1661943988440-Hornsea_2_from_air.jpg?v=1661944112&w=380&h=190&ffmt=webp" type="image/webp" width="380"/><source height="206" media="(min-width: 760px)" srcset="https://image.cnbcfm.com/api/v1/image/107111843-1661943988440-Hornsea_2_from_air.jpg?v=1661944112&w=412&h=206&ffmt=webp" type="image/webp" width="412"/><source height="206" media="(min-width: 0px)" srcset="https://image.cnbcfm.com/api/v1/image/107111843-1661943988440-Hornsea_2_from_air.jpg?v=1661944112&w=206&h=206&ffmt=webp" type="image/webp" width="206"/><img alt="The world's biggest offshore wind farm is now fully operational" class="Card-mediaContainerInner" loading="lazy" src="https://image.cnbcfm.com/api/v1/image/107111843-1661943988440-Hornsea_2_from_air.jpg?v=1661944112&w=412&h=206"/></picture></div></div></a><div class="Card-textContent"><div class="Card-titleAndFooter"><div><div class="Card-titleContainer"><a class="Card-title" href="https://www.cnbc.com/2022/09/01/huge-offshore-wind-farm-hornsea-2-is-fully-operational-orsted-says.html" target=""><div>The world's biggest offshore wind farm is now fully operational</div></a></div></div><div class="Card-threeUpCardFooterStyle"><span class="Card-threeUpBylineStyle"><a href="https://www.cnbc.com/anmar-frangoul-profile--cnbc/">Anmar Frangoul</a></span></div></div></div></div></div></div></div></section></div><div class="TwoColumnImageDense-pageRow TwoColumnImageDense-imageDense" data-analytics="HomePageInternational-twoColumnImageDense-19-2" data-test="twoColumnImageDense-2"><section class="SectionWrapper-container" data-test="SectionWrapper" id="HomePageInternational-TwoColumnImageDense-Coronavirus-19"><header class="SectionWrapper-header"><span aria-hidden="true" class="SectionWrapper-decoration"></span><h2 class="SectionWrapper-title"><a href="https://www.cnbc.com/coronavirus/">Coronavirus</a></h2></header><div class="SectionWrapper-content"><div class="Layout-layout" data-test="Layout"><div class="Column-imageDenseModRight" data-test="Column"><div class="Card-standardBreakerCard Card-featuredRectangleMediaImagedense Card-featuredRectangleMedia Card-card" data-test="Card"><a class="Card-mediaContainer" href="https://www.cnbc.com/2022/09/23/moderna-asks-fda-to-authorize-omicron-covid-boosters-for-children-as-young-as-6-years-old.html" tabindex="-1" target=""><div class="Card-imageContainer"><div class="Card-rectangleMediaContainer Card-placeholder"><picture data-test="Picture"><source height="630" media="(min-width: 1340px)" srcset="https://image.cnbcfm.com/api/v1/image/107078438-16558263742022-06-21t154536z_2018793951_rc2ewu9cgozl_rtrmadp_0_health-coronavirus-usa.jpeg?v=1663949211&w=1260&h=630&ffmt=webp" type="image/webp" width="1260"/><source height="410" media="(min-width: 1020px)" srcset="https://image.cnbcfm.com/api/v1/image/107078438-16558263742022-06-21t154536z_2018793951_rc2ewu9cgozl_rtrmadp_0_health-coronavirus-usa.jpeg?v=1663949211&w=820&h=410&ffmt=webp" type="image/webp" width="820"/><source height="442" media="(min-width: 760px)" srcset="https://image.cnbcfm.com/api/v1/image/107078438-16558263742022-06-21t154536z_2018793951_rc2ewu9cgozl_rtrmadp_0_health-coronavirus-usa.jpeg?v=1663949211&w=884&h=442&ffmt=webp" type="image/webp" width="884"/><source height="360" media="(min-width: 0px)" srcset="https://image.cnbcfm.com/api/v1/image/107078438-16558263742022-06-21t154536z_2018793951_rc2ewu9cgozl_rtrmadp_0_health-coronavirus-usa.jpeg?v=1663949211&w=720&h=360&ffmt=webp" type="image/webp" width="720"/><img alt="Moderna asks FDA to authorize omicron Covid boosters for children as young as 6 years old" class="Card-mediaContainerInner" loading="lazy" src="https://image.cnbcfm.com/api/v1/image/107078438-16558263742022-06-21t154536z_2018793951_rc2ewu9cgozl_rtrmadp_0_health-coronavirus-usa.jpeg?v=1663949211&w=884&h=442"/></picture></div></div></a><div class="Card-textContent"><div class="Card-titleAndFooter"><div><div class="Card-titleContainer"><a class="Card-title" href="https://www.cnbc.com/2022/09/23/moderna-asks-fda-to-authorize-omicron-covid-boosters-for-children-as-young-as-6-years-old.html" target=""><div>Moderna asks FDA to authorize omicron Covid boosters for children as young as 6 years old</div></a></div></div><div class="Card-cardFooter"><span class="Card-byline"><a href="https://www.cnbc.com/spencer-kimball/">Spencer Kimball</a></span></div></div></div></div></div><div class="Column-imageDenseModLeft" data-test="Column"><div class="Card-standardBreakerCard Card-squareMediaImageDense Card-squareMedia Card-card" data-test="Card"><a class="Card-mediaContainer" href="https://www.cnbc.com/2022/09/22/who-warns-ability-to-identify-new-covid-variants-is-diminishing-as-testing-declines-.html" tabindex="-1" target=""><div class="Card-imageContainer"><div class="Card-squareMediaContainer Card-placeholder"><picture data-test="Picture"><source height="630" media="(min-width: 1340px)" srcset="https://image.cnbcfm.com/api/v1/image/106913619-16267937592020-01-29t000000z_1387970559_rc2spe9j1gzp_rtrmadp_0_china-health-who.jpeg?v=1663869077&w=600&h=630&ffmt=webp" type="image/webp" width="600"/><source height="410" media="(min-width: 1020px)" srcset="https://image.cnbcfm.com/api/v1/image/106913619-16267937592020-01-29t000000z_1387970559_rc2spe9j1gzp_rtrmadp_0_china-health-who.jpeg?v=1663869077&w=380&h=410&ffmt=webp" type="image/webp" width="380"/><source height="442" media="(min-width: 760px)" srcset="https://image.cnbcfm.com/api/v1/image/106913619-16267937592020-01-29t000000z_1387970559_rc2spe9j1gzp_rtrmadp_0_china-health-who.jpeg?v=1663869077&w=412&h=442&ffmt=webp" type="image/webp" width="412"/><source height="206" media="(min-width: 0px)" srcset="https://image.cnbcfm.com/api/v1/image/106913619-16267937592020-01-29t000000z_1387970559_rc2spe9j1gzp_rtrmadp_0_china-health-who.jpeg?v=1663869077&w=206&h=206&ffmt=webp" type="image/webp" width="206"/><img alt="WHO warns ability to identify new Covid variants is falling as testing declines " class="Card-mediaContainerInner" loading="lazy" src="https://image.cnbcfm.com/api/v1/image/106913619-16267937592020-01-29t000000z_1387970559_rc2spe9j1gzp_rtrmadp_0_china-health-who.jpeg?v=1663869077&w=412&h=442"/></picture></div></div></a><div class="Card-textContent"><div class="Card-titleAndFooter"><div><div class="Card-titleContainer"><a class="Card-title" href="https://www.cnbc.com/2022/09/22/who-warns-ability-to-identify-new-covid-variants-is-diminishing-as-testing-declines-.html" target=""><div>WHO warns ability to identify new Covid variants is falling as testing declines </div></a></div></div><div class="Card-cardFooter"><span class="Card-byline"><a href="https://www.cnbc.com/spencer-kimball/">Spencer Kimball</a></span></div></div></div></div></div></div><div class="Layout-layout" data-test="Layout"><div class="Column-threeUpUltraDense" data-test="Column"><div class="Card-standardBreakerCard Card-rectangleToLeftSquareMediaUltraDense Card-rectangleToLeftSquareMedia Card-card" data-test="Card"><a class="Card-mediaContainer" href="https://www.cnbc.com/2022/09/21/watch-ukrainian-president-zelenskyy-addresses-un-general-assembly.html" tabindex="-1" target=""><div class="Card-imageContainer"><div class="Card-squareMediaContainer Card-placeholder"><picture data-test="Picture"><source height="300" media="(min-width: 1340px)" srcset="https://image.cnbcfm.com/api/v1/image/107121684-1663713341589-gettyimages-1240982059-AA_29052022_748437.jpeg?v=1663879322&w=600&h=300&ffmt=webp" type="image/webp" width="600"/><source height="190" media="(min-width: 1020px)" srcset="https://image.cnbcfm.com/api/v1/image/107121684-1663713341589-gettyimages-1240982059-AA_29052022_748437.jpeg?v=1663879322&w=380&h=190&ffmt=webp" type="image/webp" width="380"/><source height="206" media="(min-width: 760px)" srcset="https://image.cnbcfm.com/api/v1/image/107121684-1663713341589-gettyimages-1240982059-AA_29052022_748437.jpeg?v=1663879322&w=412&h=206&ffmt=webp" type="image/webp" width="412"/><source height="206" media="(min-width: 0px)" srcset="https://image.cnbcfm.com/api/v1/image/107121684-1663713341589-gettyimages-1240982059-AA_29052022_748437.jpeg?v=1663879322&w=206&h=206&ffmt=webp" type="image/webp" width="206"/><img alt="Watch live: Ukrainian President Zelenskyy to address the U.N. General Assembly" class="Card-mediaContainerInner" loading="lazy" src="https://image.cnbcfm.com/api/v1/image/107121684-1663713341589-gettyimages-1240982059-AA_29052022_748437.jpeg?v=1663879322&w=412&h=206"/></picture></div></div></a><div class="Card-textContent"><div class="Card-titleAndFooter"><div><div class="Card-titleContainer"><a class="Card-title" href="https://www.cnbc.com/2022/09/21/watch-ukrainian-president-zelenskyy-addresses-un-general-assembly.html" target=""><div>Watch live: Ukrainian President Zelenskyy to address the U.N. General Assembly</div></a></div></div></div></div></div></div><div class="Column-threeUpUltraDense" data-test="Column"><div class="Card-standardBreakerCard Card-rectangleToLeftSquareMediaUltraDense Card-rectangleToLeftSquareMedia Card-card" data-test="Card"><a class="Card-mediaContainer" href="https://www.cnbc.com/2022/09/21/what-another-major-rate-hike-by-the-federal-reserve-means-to-you.html" tabindex="-1" target=""><div class="Card-imageContainer"><div class="Card-squareMediaContainer Card-placeholder"><picture data-test="Picture"><source height="300" media="(min-width: 1340px)" srcset="https://image.cnbcfm.com/api/v1/image/104582226-104582226.jpg?v=1663783257&w=600&h=300&ffmt=webp" type="image/webp" width="600"/><source height="190" media="(min-width: 1020px)" srcset="https://image.cnbcfm.com/api/v1/image/104582226-104582226.jpg?v=1663783257&w=380&h=190&ffmt=webp" type="image/webp" width="380"/><source height="206" media="(min-width: 760px)" srcset="https://image.cnbcfm.com/api/v1/image/104582226-104582226.jpg?v=1663783257&w=412&h=206&ffmt=webp" type="image/webp" width="412"/><source height="206" media="(min-width: 0px)" srcset="https://image.cnbcfm.com/api/v1/image/104582226-104582226.jpg?v=1663783257&w=206&h=206&ffmt=webp" type="image/webp" width="206"/><img alt="What the Fed's third 75 basis point interest rate hikes mean for you" class="Card-mediaContainerInner" loading="lazy" src="https://image.cnbcfm.com/api/v1/image/104582226-104582226.jpg?v=1663783257&w=412&h=206"/></picture></div></div></a><div class="Card-textContent"><div class="Card-titleAndFooter"><div><div class="Card-titleContainer"><a class="Card-title" href="https://www.cnbc.com/2022/09/21/what-another-major-rate-hike-by-the-federal-reserve-means-to-you.html" target=""><div>What the Fed's third 75 basis point interest rate hikes mean for you</div></a></div></div><div class="Card-threeUpCardFooterStyle"><span class="Card-threeUpBylineStyle"><a href="https://www.cnbc.com/jessica-dickler/">Jessica Dickler</a></span></div></div></div></div></div><div class="Column-threeUpUltraDense" data-test="Column"><div class="Card-standardBreakerCard Card-rectangleToLeftSquareMediaUltraDense Card-rectangleToLeftSquareMedia Card-card" data-test="Card"><a class="Card-mediaContainer" href="https://www.cnbc.com/2022/09/20/layoffs-loom-on-the-horizon-some-economists-say.html" tabindex="-1" target=""><div class="Card-imageContainer"><div class="Card-squareMediaContainer Card-placeholder"><picture data-test="Picture"><source height="300" media="(min-width: 1340px)" srcset="https://image.cnbcfm.com/api/v1/image/101906698-466189489.jpg?v=1663671601&w=600&h=300&ffmt=webp" type="image/webp" width="600"/><source height="190" media="(min-width: 1020px)" srcset="https://image.cnbcfm.com/api/v1/image/101906698-466189489.jpg?v=1663671601&w=380&h=190&ffmt=webp" type="image/webp" width="380"/><source height="206" media="(min-width: 760px)" srcset="https://image.cnbcfm.com/api/v1/image/101906698-466189489.jpg?v=1663671601&w=412&h=206&ffmt=webp" type="image/webp" width="412"/><source height="206" media="(min-width: 0px)" srcset="https://image.cnbcfm.com/api/v1/image/101906698-466189489.jpg?v=1663671601&w=206&h=206&ffmt=webp" type="image/webp" width="206"/><img alt="Layoffs loom on the horizon, some economists say" class="Card-mediaContainerInner" loading="lazy" src="https://image.cnbcfm.com/api/v1/image/101906698-466189489.jpg?v=1663671601&w=412&h=206"/></picture></div></div></a><div class="Card-textContent"><div class="Card-titleAndFooter"><div><div class="Card-titleContainer"><a class="Card-title" href="https://www.cnbc.com/2022/09/20/layoffs-loom-on-the-horizon-some-economists-say.html" target=""><div>Layoffs loom on the horizon, some economists say</div></a></div></div><div class="Card-threeUpCardFooterStyle"><span class="Card-threeUpBylineStyle"><a href="https://www.cnbc.com/andrea-miller/">Andrea Miller</a></span></div></div></div></div></div></div></div></section></div><div class="TwoColumnImageDense-pageRow TwoColumnImageDense-imageDense" data-analytics="HomePageInternational-twoColumnImageDense-20-3" data-test="twoColumnImageDense-3"><section class="SectionWrapper-container" data-test="SectionWrapper" id="HomePageInternational-TwoColumnImageDense-CNBCTravel-20"><header class="SectionWrapper-header"><span aria-hidden="true" class="SectionWrapper-decoration"></span><h2 class="SectionWrapper-title"><a href="https://www.cnbc.com/cnbc-travel/">CNBC Travel</a></h2></header><div class="SectionWrapper-content"><div class="Layout-layout" data-test="Layout"><div class="Column-imageDenseModRight" data-test="Column"><div class="Card-standardBreakerCard Card-featuredRectangleMediaImagedense Card-featuredRectangleMedia Card-card" data-test="Card"><a class="Card-mediaContainer" href="https://www.cnbc.com/2022/09/22/what-are-the-most-common-crimes-in-hotels-not-theft-say-uk-police-.html" tabindex="-1" target=""><div class="Card-imageContainer"><div class="Card-rectangleMediaContainer Card-placeholder"><picture data-test="Picture"><source height="630" media="(min-width: 1340px)" srcset="https://image.cnbcfm.com/api/v1/image/107120453-1663576889123-gettyimages-125141457-000016873331_Full.jpeg?v=1663805842&w=1260&h=630&ffmt=webp" type="image/webp" width="1260"/><source height="410" media="(min-width: 1020px)" srcset="https://image.cnbcfm.com/api/v1/image/107120453-1663576889123-gettyimages-125141457-000016873331_Full.jpeg?v=1663805842&w=820&h=410&ffmt=webp" type="image/webp" width="820"/><source height="442" media="(min-width: 760px)" srcset="https://image.cnbcfm.com/api/v1/image/107120453-1663576889123-gettyimages-125141457-000016873331_Full.jpeg?v=1663805842&w=884&h=442&ffmt=webp" type="image/webp" width="884"/><source height="360" media="(min-width: 0px)" srcset="https://image.cnbcfm.com/api/v1/image/107120453-1663576889123-gettyimages-125141457-000016873331_Full.jpeg?v=1663805842&w=720&h=360&ffmt=webp" type="image/webp" width="720"/><img alt="The most common crime in UK hotels isn't theft" class="Card-mediaContainerInner" loading="lazy" src="https://image.cnbcfm.com/api/v1/image/107120453-1663576889123-gettyimages-125141457-000016873331_Full.jpeg?v=1663805842&w=884&h=442"/></picture></div></div></a><div class="Card-textContent"><div class="Card-titleAndFooter"><div><div class="Card-titleContainer"><a class="Card-title" href="https://www.cnbc.com/2022/09/22/what-are-the-most-common-crimes-in-hotels-not-theft-say-uk-police-.html" target=""><div>The most common crime in UK hotels isn't theft</div></a></div></div><div class="Card-cardFooter"><span class="Card-byline"><a href="https://www.cnbc.com/jenni-reid/">Jenni Reid</a></span></div></div></div></div></div><div class="Column-imageDenseModLeft" data-test="Column"><div class="Card-standardBreakerCard Card-squareMediaImageDense Card-squareMedia Card-card" data-test="Card"><a class="Card-mediaContainer" href="https://www.cnbc.com/2022/09/19/how-much-does-it-cost-to-visit-bhutan-200-a-day-plus-travel-costs-.html" tabindex="-1" target=""><div class="Card-imageContainer"><div class="Card-squareMediaContainer Card-placeholder"><picture data-test="Picture"><source height="630" media="(min-width: 1340px)" srcset="https://image.cnbcfm.com/api/v1/image/107119726-1663311901491-gettyimages-157191255-000002326547_Large.jpeg?v=1663559196&w=600&h=630&ffmt=webp" type="image/webp" width="600"/><source height="410" media="(min-width: 1020px)" srcset="https://image.cnbcfm.com/api/v1/image/107119726-1663311901491-gettyimages-157191255-000002326547_Large.jpeg?v=1663559196&w=380&h=410&ffmt=webp" type="image/webp" width="380"/><source height="442" media="(min-width: 760px)" srcset="https://image.cnbcfm.com/api/v1/image/107119726-1663311901491-gettyimages-157191255-000002326547_Large.jpeg?v=1663559196&w=412&h=442&ffmt=webp" type="image/webp" width="412"/><source height="206" media="(min-width: 0px)" srcset="https://image.cnbcfm.com/api/v1/image/107119726-1663311901491-gettyimages-157191255-000002326547_Large.jpeg?v=1663559196&w=206&h=206&ffmt=webp" type="image/webp" width="206"/><img alt="You can visit Bhutan again — if you're willing to cough up $200 a day in fees" class="Card-mediaContainerInner" loading="lazy" src="https://image.cnbcfm.com/api/v1/image/107119726-1663311901491-gettyimages-157191255-000002326547_Large.jpeg?v=1663559196&w=412&h=442"/></picture></div></div></a><div class="Card-textContent"><div class="Card-titleAndFooter"><div><div class="Card-titleContainer"><a class="Card-title" href="https://www.cnbc.com/2022/09/19/how-much-does-it-cost-to-visit-bhutan-200-a-day-plus-travel-costs-.html" target=""><div>You can visit Bhutan again — if you're willing to cough up $200 a day in fees</div></a></div></div><div class="Card-cardFooter"><span class="Card-byline"><a href="https://www.cnbc.com/monica-pitrelli/">Monica Buchanan Pitrelli</a></span></div></div></div></div></div></div><div class="Layout-layout" data-test="Layout"><div class="Column-threeUpUltraDense" data-test="Column"><div class="Card-standardBreakerCard Card-rectangleToLeftSquareMediaUltraDense Card-rectangleToLeftSquareMedia Card-card" data-test="Card"><a class="Card-mediaContainer" href="https://www.cnbc.com/2022/09/16/woman-ochre-de-koonings-painting-from-theft-to-its-return-home.html" tabindex="-1" target=""><div class="Card-imageContainer"><div class="Card-squareMediaContainer Card-placeholder"><picture data-test="Picture"><source height="300" media="(min-width: 1340px)" srcset="https://image.cnbcfm.com/api/v1/image/107118919-1663210693149-9_Getty_Exhibition.JPG?v=1663286997&w=600&h=300&ffmt=webp" type="image/webp" width="600"/><source height="190" media="(min-width: 1020px)" srcset="https://image.cnbcfm.com/api/v1/image/107118919-1663210693149-9_Getty_Exhibition.JPG?v=1663286997&w=380&h=190&ffmt=webp" type="image/webp" width="380"/><source height="206" media="(min-width: 760px)" srcset="https://image.cnbcfm.com/api/v1/image/107118919-1663210693149-9_Getty_Exhibition.JPG?v=1663286997&w=412&h=206&ffmt=webp" type="image/webp" width="412"/><source height="206" media="(min-width: 0px)" srcset="https://image.cnbcfm.com/api/v1/image/107118919-1663210693149-9_Getty_Exhibition.JPG?v=1663286997&w=206&h=206&ffmt=webp" type="image/webp" width="206"/><img alt=" An estate sale purchase turned out to be a ‘priceless’ painting stolen in 1985" class="Card-mediaContainerInner" loading="lazy" src="https://image.cnbcfm.com/api/v1/image/107118919-1663210693149-9_Getty_Exhibition.JPG?v=1663286997&w=412&h=206"/></picture></div></div></a><div class="Card-textContent"><div class="Card-titleAndFooter"><div><div class="Card-titleContainer"><a class="Card-title" href="https://www.cnbc.com/2022/09/16/woman-ochre-de-koonings-painting-from-theft-to-its-return-home.html" target=""><div> An estate sale purchase turned out to be a ‘priceless’ painting stolen in 1985</div></a></div></div><div class="Card-threeUpCardFooterStyle"><span class="Card-threeUpBylineStyle"><a href="https://www.cnbc.com/monica-pitrelli/">Monica Buchanan Pitrelli</a></span></div></div></div></div></div><div class="Column-threeUpUltraDense" data-test="Column"><div class="Card-standardBreakerCard Card-rectangleToLeftSquareMediaUltraDense Card-rectangleToLeftSquareMedia Card-card" data-test="Card"><a class="Card-mediaContainer" href="https://www.cnbc.com/2022/09/12/best-hotels-for-business-travelers-in-asia-pacific.html" tabindex="-1" target=""><div class="Card-imageContainer"><div class="Card-squareMediaContainer Card-placeholder"><picture data-test="Picture"><source height="300" media="(min-width: 1340px)" srcset="https://image.cnbcfm.com/api/v1/image/107115151-1662596518763-gettyimages-1261595520-isc1533303.jpeg?v=1662938251&w=600&h=300&ffmt=webp" type="image/webp" width="600"/><source height="190" media="(min-width: 1020px)" srcset="https://image.cnbcfm.com/api/v1/image/107115151-1662596518763-gettyimages-1261595520-isc1533303.jpeg?v=1662938251&w=380&h=190&ffmt=webp" type="image/webp" width="380"/><source height="206" media="(min-width: 760px)" srcset="https://image.cnbcfm.com/api/v1/image/107115151-1662596518763-gettyimages-1261595520-isc1533303.jpeg?v=1662938251&w=412&h=206&ffmt=webp" type="image/webp" width="412"/><source height="206" media="(min-width: 0px)" srcset="https://image.cnbcfm.com/api/v1/image/107115151-1662596518763-gettyimages-1261595520-isc1533303.jpeg?v=1662938251&w=206&h=206&ffmt=webp" type="image/webp" width="206"/><img alt="Exclusive: CNBC names the best hotels for business travel across Asia-Pacific" class="Card-mediaContainerInner" loading="lazy" src="https://image.cnbcfm.com/api/v1/image/107115151-1662596518763-gettyimages-1261595520-isc1533303.jpeg?v=1662938251&w=412&h=206"/></picture></div></div></a><div class="Card-textContent"><div class="Card-titleAndFooter"><div><div class="Card-titleContainer"><a class="Card-title" href="https://www.cnbc.com/2022/09/12/best-hotels-for-business-travelers-in-asia-pacific.html" target=""><div>Exclusive: CNBC names the best hotels for business travel across Asia-Pacific</div></a></div></div><div class="Card-threeUpCardFooterStyle"><span class="Card-threeUpBylineStyle"><a href="https://www.cnbc.com/monica-pitrelli/">Monica Buchanan Pitrelli</a></span></div></div></div></div></div><div class="Column-threeUpUltraDense" data-test="Column"><div class="Card-standardBreakerCard Card-rectangleToLeftSquareMediaUltraDense Card-rectangleToLeftSquareMedia Card-card" data-test="Card"><a class="Card-mediaContainer" href="https://www.cnbc.com/2022/09/09/where-russians-go-on-vacation-since-the-ukraine-war-started.html" tabindex="-1" target=""><div class="Card-imageContainer"><div class="Card-squareMediaContainer Card-placeholder"><picture data-test="Picture"><source height="300" media="(min-width: 1340px)" srcset="https://image.cnbcfm.com/api/v1/image/107114495-1662539870695-gettyimages-1242935324-ODOGMANSP3_002.jpeg?v=1663845473&w=600&h=300&ffmt=webp" type="image/webp" width="600"/><source height="190" media="(min-width: 1020px)" srcset="https://image.cnbcfm.com/api/v1/image/107114495-1662539870695-gettyimages-1242935324-ODOGMANSP3_002.jpeg?v=1663845473&w=380&h=190&ffmt=webp" type="image/webp" width="380"/><source height="206" media="(min-width: 760px)" srcset="https://image.cnbcfm.com/api/v1/image/107114495-1662539870695-gettyimages-1242935324-ODOGMANSP3_002.jpeg?v=1663845473&w=412&h=206&ffmt=webp" type="image/webp" width="412"/><source height="206" media="(min-width: 0px)" srcset="https://image.cnbcfm.com/api/v1/image/107114495-1662539870695-gettyimages-1242935324-ODOGMANSP3_002.jpeg?v=1663845473&w=206&h=206&ffmt=webp" type="image/webp" width="206"/><img alt="Where are Russians going on holiday since the war? Here are some countries" class="Card-mediaContainerInner" loading="lazy" src="https://image.cnbcfm.com/api/v1/image/107114495-1662539870695-gettyimages-1242935324-ODOGMANSP3_002.jpeg?v=1663845473&w=412&h=206"/></picture></div></div></a><div class="Card-textContent"><div class="Card-titleAndFooter"><div><div class="Card-titleContainer"><a class="Card-title" href="https://www.cnbc.com/2022/09/09/where-russians-go-on-vacation-since-the-ukraine-war-started.html" target=""><div>Where are Russians going on holiday since the war? Here are some countries</div></a></div></div><div class="Card-threeUpCardFooterStyle"><span class="Card-threeUpBylineStyle"><a href="https://www.cnbc.com/lee-ying-shan/">Lee Ying Shan</a></span></div></div></div></div></div></div></div></section></div><div class="TwoColumnImageDense-pageRow TwoColumnImageDense-imageDense" data-analytics="HomePageInternational-twoColumnImageDense-21-4" data-test="twoColumnImageDense-4"><section class="SectionWrapper-container" data-test="SectionWrapper" id="HomePageInternational-TwoColumnImageDense-MakeIt-21"><header class="SectionWrapper-header"><span aria-hidden="true" class="SectionWrapper-decoration"></span><h2 class="SectionWrapper-title"><a href="https://www.cnbc.com/make-it/">Make It</a></h2></header><div class="SectionWrapper-content"><div class="Layout-layout" data-test="Layout"><div class="Column-imageDenseModRight" data-test="Column"><div class="Card-standardBreakerCard Card-featuredRectangleMediaImagedense Card-featuredRectangleMedia Card-card" data-test="Card"><a class="Card-mediaContainer" href="https://www.cnbc.com/2022/09/24/three-rules-for-a-successful-open-relationship.html" tabindex="-1" target=""><div class="Card-imageContainer"><div class="Card-rectangleMediaContainer Card-placeholder"><picture data-test="Picture"><source height="630" media="(min-width: 1340px)" srcset="https://image.cnbcfm.com/api/v1/image/107096352-1659128674317-gettyimages-1384887904-ex_lala_s_wineyard_p2a9762.jpeg?v=1664042401&w=1260&h=630&ffmt=webp" type="image/webp" width="1260"/><source height="410" media="(min-width: 1020px)" srcset="https://image.cnbcfm.com/api/v1/image/107096352-1659128674317-gettyimages-1384887904-ex_lala_s_wineyard_p2a9762.jpeg?v=1664042401&w=820&h=410&ffmt=webp" type="image/webp" width="820"/><source height="442" media="(min-width: 760px)" srcset="https://image.cnbcfm.com/api/v1/image/107096352-1659128674317-gettyimages-1384887904-ex_lala_s_wineyard_p2a9762.jpeg?v=1664042401&w=884&h=442&ffmt=webp" type="image/webp" width="884"/><source height="360" media="(min-width: 0px)" srcset="https://image.cnbcfm.com/api/v1/image/107096352-1659128674317-gettyimages-1384887904-ex_lala_s_wineyard_p2a9762.jpeg?v=1664042401&w=720&h=360&ffmt=webp" type="image/webp" width="720"/><img alt="3 rules for a successful open relationship: 'More communication is nearly always better than less'" class="Card-mediaContainerInner" loading="lazy" src="https://image.cnbcfm.com/api/v1/image/107096352-1659128674317-gettyimages-1384887904-ex_lala_s_wineyard_p2a9762.jpeg?v=1664042401&w=884&h=442"/></picture></div></div></a><div class="Card-textContent"><div class="Card-titleAndFooter"><div><div class="Card-titleContainer"><a class="Card-title" href="https://www.cnbc.com/2022/09/24/three-rules-for-a-successful-open-relationship.html" target=""><div>3 rules for a successful open relationship: 'More communication is nearly always better than less'</div></a></div></div><div class="Card-cardFooter"><span class="Card-byline"><a href="https://www.cnbc.com/aditi-shrikant-bio/">Aditi Shrikant</a></span></div></div></div></div></div><div class="Column-imageDenseModLeft" data-test="Column"><div class="Card-standardBreakerCard Card-squareMediaImageDense Card-squareMedia Card-card" data-test="Card"><a class="Card-mediaContainer" href="https://www.cnbc.com/2022/09/24/top-10-cities-with-the-best-pizzerias-worldwide-.html" tabindex="-1" target=""><div class="Card-imageContainer"><div class="Card-squareMediaContainer Card-placeholder"><picture data-test="Picture"><source height="630" media="(min-width: 1340px)" srcset="https://image.cnbcfm.com/api/v1/image/107121306-1663682946038-gettyimages-1258960420-dsc04579.jpeg?v=1664035201&w=600&h=630&ffmt=webp" type="image/webp" width="600"/><source height="410" media="(min-width: 1020px)" srcset="https://image.cnbcfm.com/api/v1/image/107121306-1663682946038-gettyimages-1258960420-dsc04579.jpeg?v=1664035201&w=380&h=410&ffmt=webp" type="image/webp" width="380"/><source height="442" media="(min-width: 760px)" srcset="https://image.cnbcfm.com/api/v1/image/107121306-1663682946038-gettyimages-1258960420-dsc04579.jpeg?v=1664035201&w=412&h=442&ffmt=webp" type="image/webp" width="412"/><source height="206" media="(min-width: 0px)" srcset="https://image.cnbcfm.com/api/v1/image/107121306-1663682946038-gettyimages-1258960420-dsc04579.jpeg?v=1664035201&w=206&h=206&ffmt=webp" type="image/webp" width="206"/><img alt="Top 10 cities with the best pizzerias worldwide—see where NYC lands on the list" class="Card-mediaContainerInner" loading="lazy" src="https://image.cnbcfm.com/api/v1/image/107121306-1663682946038-gettyimages-1258960420-dsc04579.jpeg?v=1664035201&w=412&h=442"/></picture></div></div></a><div class="Card-textContent"><div class="Card-titleAndFooter"><div><div class="Card-titleContainer"><a class="Card-title" href="https://www.cnbc.com/2022/09/24/top-10-cities-with-the-best-pizzerias-worldwide-.html" target=""><div>Top 10 cities with the best pizzerias worldwide—see where NYC lands on the list</div></a></div></div><div class="Card-cardFooter"><span class="Card-byline"><a href="https://www.cnbc.com/celia-fernandez/">Celia Fernandez</a></span><span class="Card-time">3 hours ago</span></div></div></div></div></div></div><div class="Layout-layout" data-test="Layout"><div class="Column-threeUpUltraDense" data-test="Column"><div class="Card-standardBreakerCard Card-rectangleToLeftSquareMediaUltraDense Card-rectangleToLeftSquareMedia Card-card" data-test="Card"><a class="Card-mediaContainer" href="https://www.cnbc.com/2022/09/24/easy-meals-for-two-under-20-from-black-girls-in-trader-joes-creator.html" tabindex="-1" target=""><div class="Card-imageContainer"><div class="Card-squareMediaContainer Card-placeholder"><picture data-test="Picture"><source height="300" media="(min-width: 1340px)" srcset="https://image.cnbcfm.com/api/v1/image/107116162-1663960086510-photoAssett_2022_0923_deeTJ_forReneeOnque.png?v=1664031901&w=600&h=300&ffmt=webp" type="image/webp" width="600"/><source height="190" media="(min-width: 1020px)" srcset="https://image.cnbcfm.com/api/v1/image/107116162-1663960086510-photoAssett_2022_0923_deeTJ_forReneeOnque.png?v=1664031901&w=380&h=190&ffmt=webp" type="image/webp" width="380"/><source height="206" media="(min-width: 760px)" srcset="https://image.cnbcfm.com/api/v1/image/107116162-1663960086510-photoAssett_2022_0923_deeTJ_forReneeOnque.png?v=1664031901&w=412&h=206&ffmt=webp" type="image/webp" width="412"/><source height="206" media="(min-width: 0px)" srcset="https://image.cnbcfm.com/api/v1/image/107116162-1663960086510-photoAssett_2022_0923_deeTJ_forReneeOnque.png?v=1664031901&w=206&h=206&ffmt=webp" type="image/webp" width="206"/><img alt="Black Girls in Trader Joe’s creator shares her top five favorite products" class="Card-mediaContainerInner" loading="lazy" src="https://image.cnbcfm.com/api/v1/image/107116162-1663960086510-photoAssett_2022_0923_deeTJ_forReneeOnque.png?v=1664031901&w=412&h=206"/></picture></div></div></a><div class="Card-textContent"><div class="Card-titleAndFooter"><div><div class="Card-titleContainer"><a class="Card-title" href="https://www.cnbc.com/2022/09/24/easy-meals-for-two-under-20-from-black-girls-in-trader-joes-creator.html" target=""><div>Black Girls in Trader Joe’s creator shares her top five favorite products</div></a></div></div><div class="Card-threeUpCardFooterStyle"><span class="Card-threeUpBylineStyle"><a href="https://www.cnbc.com/renee-onque/">Renée Onque</a></span></div></div></div></div></div><div class="Column-threeUpUltraDense" data-test="Column"><div class="Card-standardBreakerCard Card-rectangleToLeftSquareMediaUltraDense Card-rectangleToLeftSquareMedia Card-card" data-test="Card"><a class="Card-mediaContainer" href="https://www.cnbc.com/2022/09/24/how-to-raise-resilient-kids-by-developing-their-brains-with-nurturing-routines-parenting-expert.html" tabindex="-1" target=""><div class="Card-imageContainer"><div class="Card-squareMediaContainer Card-placeholder"><picture data-test="Picture"><source height="300" media="(min-width: 1340px)" srcset="https://image.cnbcfm.com/api/v1/image/107099199-1659641806998-gettyimages-1328102254-dsc08361.jpeg?v=1664029038&w=600&h=300&ffmt=webp" type="image/webp" width="600"/><source height="190" media="(min-width: 1020px)" srcset="https://image.cnbcfm.com/api/v1/image/107099199-1659641806998-gettyimages-1328102254-dsc08361.jpeg?v=1664029038&w=380&h=190&ffmt=webp" type="image/webp" width="380"/><source height="206" media="(min-width: 760px)" srcset="https://image.cnbcfm.com/api/v1/image/107099199-1659641806998-gettyimages-1328102254-dsc08361.jpeg?v=1664029038&w=412&h=206&ffmt=webp" type="image/webp" width="412"/><source height="206" media="(min-width: 0px)" srcset="https://image.cnbcfm.com/api/v1/image/107099199-1659641806998-gettyimages-1328102254-dsc08361.jpeg?v=1664029038&w=206&h=206&ffmt=webp" type="image/webp" width="206"/><img alt="Want to raise strong, resilient kids? Create 'nurturing routines,' says parenting expert—here’s how" class="Card-mediaContainerInner" loading="lazy" src="https://image.cnbcfm.com/api/v1/image/107099199-1659641806998-gettyimages-1328102254-dsc08361.jpeg?v=1664029038&w=412&h=206"/></picture></div></div></a><div class="Card-textContent"><div class="Card-titleAndFooter"><div><div class="Card-titleContainer"><a class="Card-title" href="https://www.cnbc.com/2022/09/24/how-to-raise-resilient-kids-by-developing-their-brains-with-nurturing-routines-parenting-expert.html" target=""><div>Want to raise strong, resilient kids? Create 'nurturing routines,' says parenting expert—here’s how</div></a></div></div><div class="Card-threeUpCardFooterStyle"><span class="Card-threeUpBylineStyle"><a href="https://www.cnbc.com/dr-dana-suskind/">Dana Suskind, Contributor</a></span></div></div></div></div></div><div class="Column-threeUpUltraDense" data-test="Column"><div class="Card-standardBreakerCard Card-rectangleToLeftSquareMediaUltraDense Card-rectangleToLeftSquareMedia Card-card" data-test="Card"><a class="Card-mediaContainer" href="https://www.cnbc.com/2022/09/24/queer-eyes-karamo-brown-shares-morning-routine.html" tabindex="-1" target=""><div class="Card-imageContainer"><div class="Card-squareMediaContainer Card-placeholder"><picture data-test="Picture"><source height="300" media="(min-width: 1340px)" srcset="https://image.cnbcfm.com/api/v1/image/106812327-1608144105480-gettyimages-1285864602-rjp24120_2020111552157274.jpeg?v=1664028001&w=600&h=300&ffmt=webp" type="image/webp" width="600"/><source height="190" media="(min-width: 1020px)" srcset="https://image.cnbcfm.com/api/v1/image/106812327-1608144105480-gettyimages-1285864602-rjp24120_2020111552157274.jpeg?v=1664028001&w=380&h=190&ffmt=webp" type="image/webp" width="380"/><source height="206" media="(min-width: 760px)" srcset="https://image.cnbcfm.com/api/v1/image/106812327-1608144105480-gettyimages-1285864602-rjp24120_2020111552157274.jpeg?v=1664028001&w=412&h=206&ffmt=webp" type="image/webp" width="412"/><source height="206" media="(min-width: 0px)" srcset="https://image.cnbcfm.com/api/v1/image/106812327-1608144105480-gettyimages-1285864602-rjp24120_2020111552157274.jpeg?v=1664028001&w=206&h=206&ffmt=webp" type="image/webp" width="206"/><img alt="'Queer Eye's Karamo Brown on the morning routines that keep him motivated" class="Card-mediaContainerInner" loading="lazy" src="https://image.cnbcfm.com/api/v1/image/106812327-1608144105480-gettyimages-1285864602-rjp24120_2020111552157274.jpeg?v=1664028001&w=412&h=206"/></picture></div></div></a><div class="Card-textContent"><div class="Card-titleAndFooter"><div><div class="Card-titleContainer"><a class="Card-title" href="https://www.cnbc.com/2022/09/24/queer-eyes-karamo-brown-shares-morning-routine.html" target=""><div>'Queer Eye's Karamo Brown on the morning routines that keep him motivated</div></a></div></div><div class="Card-threeUpCardFooterStyle"><span class="Card-threeUpBylineStyle"><a href="https://www.cnbc.com/ashton-jackson/">Ashton Jackson</a></span></div></div></div></div></div></div></div></section></div></div><div class="SidebarArticle-sidebar PageBuilder-sidebar" data-test="SidebarArticle"><div class="SidebarArticle-sticky" style="top:70px"><div style="margin-top:0px"></div></div></div></div><div class="PageBuilder-containerFluidWidths PageBuilder-pageRow"><div class="PageBuilder-col-12 PageBuilder-col"><div class="lazyload-placeholder" style="height:100%"></div></div></div><div class="PageBuilder-containerFluidWidths PageBuilder-pageRow"><div class="PageBuilder-col-9 PageBuilder-col"><div class="TwoColumnImageDense-pageRow TwoColumnImageDense-imageDense" data-analytics="HomePageInternational-twoColumnImageDense-24-0" data-test="twoColumnImageDense-0"><section class="SectionWrapper-container" data-test="SectionWrapper" id="HomePageInternational-TwoColumnImageDense-Investinginsupertrends-24"><header class="SectionWrapper-header"><span aria-hidden="true" class="SectionWrapper-decoration"></span><h2 class="SectionWrapper-title"><a href="https://www.cnbc.com/investing-in-supertrends/">Investing in supertrends</a></h2></header><div class="SectionWrapper-content"><div class="Layout-layout" data-test="Layout"><div class="Column-imageDenseModRight" data-test="Column"><div class="Card-standardBreakerCard Card-featuredRectangleMediaImagedense Card-featuredRectangleMedia Card-card" data-test="Card"><a class="Card-mediaContainer" href="https://www.cnbc.com/2022/08/18/web3-is-in-chaos-metaverses-in-walled-gardens-randi-zuckerberg.html" tabindex="-1" target=""><div class="Card-imageContainer"><div class="Card-rectangleMediaContainer Card-placeholder"><picture data-test="Picture"><source height="630" media="(min-width: 1340px)" srcset="https://image.cnbcfm.com/api/v1/image/107105564-1660781055185-gettyimages-1365200314-crypto-virtual-museum.jpeg?v=1660796358&w=1260&h=630&ffmt=webp" type="image/webp" width="1260"/><source height="410" media="(min-width: 1020px)" srcset="https://image.cnbcfm.com/api/v1/image/107105564-1660781055185-gettyimages-1365200314-crypto-virtual-museum.jpeg?v=1660796358&w=820&h=410&ffmt=webp" type="image/webp" width="820"/><source height="442" media="(min-width: 760px)" srcset="https://image.cnbcfm.com/api/v1/image/107105564-1660781055185-gettyimages-1365200314-crypto-virtual-museum.jpeg?v=1660796358&w=884&h=442&ffmt=webp" type="image/webp" width="884"/><source height="360" media="(min-width: 0px)" srcset="https://image.cnbcfm.com/api/v1/image/107105564-1660781055185-gettyimages-1365200314-crypto-virtual-museum.jpeg?v=1660796358&w=720&h=360&ffmt=webp" type="image/webp" width="720"/><img alt="Web3 is in chaos and metaverses are in their own walled gardens, says Randi Zuckerberg" class="Card-mediaContainerInner" loading="lazy" src="https://image.cnbcfm.com/api/v1/image/107105564-1660781055185-gettyimages-1365200314-crypto-virtual-museum.jpeg?v=1660796358&w=884&h=442"/></picture></div></div></a><div class="Card-textContent"><div class="Card-titleAndFooter"><div><div class="Card-titleContainer"><a class="Card-title" href="https://www.cnbc.com/2022/08/18/web3-is-in-chaos-metaverses-in-walled-gardens-randi-zuckerberg.html" target=""><div>Web3 is in chaos and metaverses are in their own walled gardens, says Randi Zuckerberg</div></a></div></div><div class="Card-cardFooter"><span class="Card-byline"><a href="https://www.cnbc.com/goh-chiew-tong/">Goh Chiew Tong</a></span></div></div></div></div></div><div class="Column-imageDenseModLeft" data-test="Column"><div class="Card-standardBreakerCard Card-squareMediaImageDense Card-squareMedia Card-card" data-test="Card"><a class="Card-mediaContainer" href="https://www.cnbc.com/2022/08/17/japan-support-for-nuclear-restart-is-highest-since-fukushima-disaster.html" tabindex="-1" target=""><div class="Card-imageContainer"><div class="Card-squareMediaContainer Card-placeholder"><picture data-test="Picture"><source height="630" media="(min-width: 1340px)" srcset="https://image.cnbcfm.com/api/v1/image/107104927-1660708298881-gettyimages-1148304899-338653565_1-5.jpeg?v=1660716821&w=600&h=630&ffmt=webp" type="image/webp" width="600"/><source height="410" media="(min-width: 1020px)" srcset="https://image.cnbcfm.com/api/v1/image/107104927-1660708298881-gettyimages-1148304899-338653565_1-5.jpeg?v=1660716821&w=380&h=410&ffmt=webp" type="image/webp" width="380"/><source height="442" media="(min-width: 760px)" srcset="https://image.cnbcfm.com/api/v1/image/107104927-1660708298881-gettyimages-1148304899-338653565_1-5.jpeg?v=1660716821&w=412&h=442&ffmt=webp" type="image/webp" width="412"/><source height="206" media="(min-width: 0px)" srcset="https://image.cnbcfm.com/api/v1/image/107104927-1660708298881-gettyimages-1148304899-338653565_1-5.jpeg?v=1660716821&w=206&h=206&ffmt=webp" type="image/webp" width="206"/><img alt="Japanese support for nuclear restart highest since Fukushima: Ex-IEA director" class="Card-mediaContainerInner" loading="lazy" src="https://image.cnbcfm.com/api/v1/image/107104927-1660708298881-gettyimages-1148304899-338653565_1-5.jpeg?v=1660716821&w=412&h=442"/></picture></div></div></a><div class="Card-textContent"><div class="Card-titleAndFooter"><div><div class="Card-titleContainer"><a class="Card-title" href="https://www.cnbc.com/2022/08/17/japan-support-for-nuclear-restart-is-highest-since-fukushima-disaster.html" target=""><div>Japanese support for nuclear restart highest since Fukushima: Ex-IEA director</div></a></div></div><div class="Card-cardFooter"><span class="Card-byline"><a href="https://www.cnbc.com/lee-ying-shan/">Lee Ying Shan</a></span></div></div></div></div></div></div><div class="Layout-layout" data-test="Layout"><div class="Column-threeUpUltraDense" data-test="Column"><div class="Card-standardBreakerCard Card-rectangleToLeftSquareMediaUltraDense Card-rectangleToLeftSquareMedia Card-card" data-test="Card"><a class="Card-mediaContainer" href="https://www.cnbc.com/2022/08/10/india-australia-singapore-firms-jobs-are-in-these-sectors-linkedin.html" tabindex="-1" target=""><div class="Card-imageContainer"><div class="Card-squareMediaContainer Card-placeholder"><picture data-test="Picture"><source height="300" media="(min-width: 1340px)" srcset="https://image.cnbcfm.com/api/v1/image/107099502-1659691998572-gettyimages-1331269558-dsc03641-edit.jpeg?v=1659692133&w=600&h=300&ffmt=webp" type="image/webp" width="600"/><source height="190" media="(min-width: 1020px)" srcset="https://image.cnbcfm.com/api/v1/image/107099502-1659691998572-gettyimages-1331269558-dsc03641-edit.jpeg?v=1659692133&w=380&h=190&ffmt=webp" type="image/webp" width="380"/><source height="206" media="(min-width: 760px)" srcset="https://image.cnbcfm.com/api/v1/image/107099502-1659691998572-gettyimages-1331269558-dsc03641-edit.jpeg?v=1659692133&w=412&h=206&ffmt=webp" type="image/webp" width="412"/><source height="206" media="(min-width: 0px)" srcset="https://image.cnbcfm.com/api/v1/image/107099502-1659691998572-gettyimages-1331269558-dsc03641-edit.jpeg?v=1659692133&w=206&h=206&ffmt=webp" type="image/webp" width="206"/><img alt="Australia, India and Singapore companies are still hiring. Here's where the jobs are" class="Card-mediaContainerInner" loading="lazy" src="https://image.cnbcfm.com/api/v1/image/107099502-1659691998572-gettyimages-1331269558-dsc03641-edit.jpeg?v=1659692133&w=412&h=206"/></picture></div></div></a><div class="Card-textContent"><div class="Card-titleAndFooter"><div><div class="Card-titleContainer"><a class="Card-title" href="https://www.cnbc.com/2022/08/10/india-australia-singapore-firms-jobs-are-in-these-sectors-linkedin.html" target=""><div>Australia, India and Singapore companies are still hiring. Here's where the jobs are</div></a></div></div><div class="Card-threeUpCardFooterStyle"><span class="Card-threeUpBylineStyle"><a href="https://www.cnbc.com/charmaine-jacob/">Charmaine Jacob</a></span></div></div></div></div></div><div class="Column-threeUpUltraDense" data-test="Column"><div class="Card-standardBreakerCard Card-rectangleToLeftSquareMediaUltraDense Card-rectangleToLeftSquareMedia Card-card" data-test="Card"><a class="Card-mediaContainer" href="https://www.cnbc.com/2022/08/08/baidus-robotaxis-dont-need-any-human-staff-in-these-parts-of-china.html" tabindex="-1" target=""><div class="Card-imageContainer"><div class="Card-squareMediaContainer Card-placeholder"><picture data-test="Picture"><source height="300" media="(min-width: 1340px)" srcset="https://image.cnbcfm.com/api/v1/image/107100111-1659921398203-Image_from_iOS_64.jpg?v=1659924662&w=600&h=300&ffmt=webp" type="image/webp" width="600"/><source height="190" media="(min-width: 1020px)" srcset="https://image.cnbcfm.com/api/v1/image/107100111-1659921398203-Image_from_iOS_64.jpg?v=1659924662&w=380&h=190&ffmt=webp" type="image/webp" width="380"/><source height="206" media="(min-width: 760px)" srcset="https://image.cnbcfm.com/api/v1/image/107100111-1659921398203-Image_from_iOS_64.jpg?v=1659924662&w=412&h=206&ffmt=webp" type="image/webp" width="412"/><source height="206" media="(min-width: 0px)" srcset="https://image.cnbcfm.com/api/v1/image/107100111-1659921398203-Image_from_iOS_64.jpg?v=1659924662&w=206&h=206&ffmt=webp" type="image/webp" width="206"/><img alt="Baidu's robotaxis don't need any human staff in these parts of China" class="Card-mediaContainerInner" loading="lazy" src="https://image.cnbcfm.com/api/v1/image/107100111-1659921398203-Image_from_iOS_64.jpg?v=1659924662&w=412&h=206"/></picture></div></div></a><div class="Card-textContent"><div class="Card-titleAndFooter"><div><div class="Card-titleContainer"><a class="Card-title" href="https://www.cnbc.com/2022/08/08/baidus-robotaxis-dont-need-any-human-staff-in-these-parts-of-china.html" target=""><div>Baidu's robotaxis don't need any human staff in these parts of China</div></a></div></div><div class="Card-threeUpCardFooterStyle"><span class="Card-threeUpBylineStyle"><a href="https://www.cnbc.com/evelyn-cheng/">Evelyn Cheng</a></span></div></div></div></div></div><div class="Column-threeUpUltraDense" data-test="Column"><div class="Card-standardBreakerCard Card-rectangleToLeftSquareMediaUltraDense Card-rectangleToLeftSquareMedia Card-card" data-test="Card"><a class="Card-mediaContainer" href="https://www.cnbc.com/2021/07/26/action-on-climate-change-can-boost-global-economy-economist-says.html" tabindex="-1" target=""><div class="Card-imageContainer"><div class="Card-squareMediaContainer Card-placeholder"><picture data-test="Picture"><source height="300" media="(min-width: 1340px)" srcset="https://image.cnbcfm.com/api/v1/image/106884038-1621271309996-gettyimages-1232952177-AFP_9A764Z.jpeg?v=1638917441&w=600&h=300&ffmt=webp" type="image/webp" width="600"/><source height="190" media="(min-width: 1020px)" srcset="https://image.cnbcfm.com/api/v1/image/106884038-1621271309996-gettyimages-1232952177-AFP_9A764Z.jpeg?v=1638917441&w=380&h=190&ffmt=webp" type="image/webp" width="380"/><source height="206" media="(min-width: 760px)" srcset="https://image.cnbcfm.com/api/v1/image/106884038-1621271309996-gettyimages-1232952177-AFP_9A764Z.jpeg?v=1638917441&w=412&h=206&ffmt=webp" type="image/webp" width="412"/><source height="206" media="(min-width: 0px)" srcset="https://image.cnbcfm.com/api/v1/image/106884038-1621271309996-gettyimages-1232952177-AFP_9A764Z.jpeg?v=1638917441&w=206&h=206&ffmt=webp" type="image/webp" width="206"/><img alt="Climate change action can provide a shot in the arm for economy: Economist" class="Card-mediaContainerInner" loading="lazy" src="https://image.cnbcfm.com/api/v1/image/106884038-1621271309996-gettyimages-1232952177-AFP_9A764Z.jpeg?v=1638917441&w=412&h=206"/></picture></div></div></a><div class="Card-textContent"><div class="Card-titleAndFooter"><div><div class="Card-titleContainer"><a class="Card-title" href="https://www.cnbc.com/2021/07/26/action-on-climate-change-can-boost-global-economy-economist-says.html" target=""><div>Climate change action can provide a shot in the arm for economy: Economist</div></a></div></div><div class="Card-threeUpCardFooterStyle"><span class="Card-threeUpBylineStyle">Jonathan Keane</span></div></div></div></div></div></div></div></section></div></div><div class="SidebarArticle-sidebar PageBuilder-sidebar" data-test="SidebarArticle"><div class="SidebarArticle-sticky" style="top:70px"><div style="margin-top:0px"></div></div></div></div></div></div></div></div><div class="MobileAdhesion-container" data-module="mps-slot" id="MobileAdhesion-Homepage"></div><footer class="CNBCFooter-container" data-analytics="HomePageInternational-GlobalFooter" data-mini-video-player-dont-scroll-beyond-here="true" data-test="GlobalFooter" id="GlobalFooter"><div class="CNBCFooter-gridContainer"><div class="CNBCFooter-wrapper"><div class="CNBCFooter-header"><a href="//www.cnbc.com"><img alt="logo" class="CNBCFooter-logo" src="https://static-redesign.cnbcfm.com/dist/0dbbcac4aae29ae1ab0b.svg"/></a></div><div class="CNBCFooter-content"><ul class="CNBCFooter-menu"><li class="CNBCFooter-footerOption"><a href="//www.cnbc.com/application/pro/?__source=pro|globalfooter/"><div>Subscribe to CNBC PRO</div></a></li><li class="CNBCFooter-footerOption"><a href="//www.cnbc.com/cnbc-reprints/"><div>Licensing & Reprints</div></a></li><li class="CNBCFooter-footerOption"><a href="https://www.cnbccouncils.com/" target="_blank"><div>CNBC Councils</div></a></li><li class="CNBCFooter-footerOption"><a href="https://corporate.comcast.com/values/integrity" target="_blank"><div>Supply Chain Values</div></a></li><li class="CNBCFooter-footerOption"><a href="https://www.peacocktv.com/?cid=20200101evergreensymdisp009&utm_source=cnbc&utm_medium=symphony_editorial_brandawareness_footerlink&utm_campaign=20200101evergreen&utm_term=na&utm_content=na_na/" target="_blank"><div>CNBC on Peacock</div></a></li><li class="CNBCFooter-footerOption"><a href="https://cnbcrsh.qualtrics.com/jfe/form/SV_8v2FqPLC71m5Gaq?Origin=cnbc" target="_blank"><div>Join the CNBC Panel</div></a></li><li class="CNBCFooter-footerOption"><a href="//www.cnbc.com/digital-products/"><div>Digital Products</div></a></li><li class="CNBCFooter-footerOption"><a href="//www.cnbc.com/cnbc-news-releases/"><div>News Releases</div></a></li><li class="CNBCFooter-footerOption"><a href="//www.cnbc.com/closed-captioning/"><div>Closed Captioning</div></a></li><li class="CNBCFooter-footerOption"><a href="//www.cnbc.com/corrections/"><div>Corrections</div></a></li><li class="CNBCFooter-footerOption"><a href="//www.cnbc.com/about-cnbc-international/"><div>About CNBC</div></a></li><li class="CNBCFooter-footerOption"><a href="//www.cnbc.com/cnbc-internship-program/"><div>Internships</div></a></li><li class="CNBCFooter-footerOption"><a href="//www.cnbc.com/site-map/"><div>Site Map</div></a></li><li class="CNBCFooter-footerOption"><a href="https://www.nbcuniversal.com/privacy/cookies#cookie_management" target="_blank"><div>Ad Choices</div></a></li><li class="CNBCFooter-footerOption"><a href="//www.cnbc.com/cnbc-careers-and-employment/"><div>Careers</div></a></li><li class="CNBCFooter-footerOption"><a href="https://help.cnbc.com/" target="_blank"><div>Help</div></a></li><li class="CNBCFooter-footerOption"><a href="https://help.cnbc.com/contact/" target="_blank"><div>Contact</div></a></li></ul><ul class="CNBCFooter-share"><li class="CNBCFooter-socialOption"><a href="https://www.facebook.com/cnbcinternational/c/" target="_blank"><span class="icon-social_facebook"></span></a></li><li class="CNBCFooter-socialOption"><a href="https://www.twitter.com/cnbci?lang=en/" target="_blank"><span class="icon-social_twitter"></span></a></li><li class="CNBCFooter-socialOption"><a href="https://www.linkedin.com/showcase/cnbc-international/" target="_blank"><span class="icon-social_linkedin"></span></a></li><li class="CNBCFooter-socialOption"><a href="https://www.instagram.com/cnbcinternational/?hl=en/" target="_blank"><span class="icon-social_instagram"></span></a></li><li class="CNBCFooter-socialOption"><a href="https://www.youtube.com/user/CNBCInternational/" target="_blank"><span class="icon-social_youtube"></span></a></li><li class="CNBCFooter-socialOption"><a href="https://apple.news/T3OtoXcxtRkuHRkM7SpFP_Q" target="_blank"><span class="icon-social_apple_news"></span></a></li><li class="CNBCFooter-socialOption"><a href="//www.cnbc.com/rss-feeds/" target="_blank"><span class="icon-social_rss"></span></a></li></ul><div class="CNBCFooter-info"><div class="CNBCFooter-newsAndAdvertiseSection"><div class="CNBCFooter-section"><h4 class="CNBCFooter-smallHeader">News Tips</h4><p class="CNBCFooter-sectionInfo">Got a confidential news tip? We want to hear from you.</p><a href="//www.cnbc.com/news-tips/"><div class="CNBCFooter-linkButton">Get In Touch</div></a></div><div class="CNBCFooter-section"><h4 class="CNBCFooter-smallHeader">Advertise With Us</h4><a href="https://together.nbcuni.com/advertise/?utm_source=cnbc&utm_medium=referral&utm_campaign=property_ad_pages" target="_blank"><div class="CNBCFooter-linkButton">Please Contact Us</div></a></div></div><div class="CNBCFooter-section"><h4 class="CNBCFooter-newsletter CNBCFooter-smallHeader"><span class="icon-newsletter CNBCFooter-newsletterIcon"></span><span class="CNBCFooter-newsletterTitle">CNBC Newsletters</span></h4><p class="CNBCFooter-sectionInfo">Sign up for free newsletters and get more CNBC delivered to your inbox</p><a href="//www.cnbc.com/sign-up-for-cnbc-newsletters/"><div class="CNBCFooter-linkButton">Sign Up Now</div></a><p class="CNBCFooter-copyright">Get this delivered to your inbox, and more info about our products and services. </p></div></div><div class="CNBCFooter-privacy"><a class="CNBCFooter-privacyLink" href="https://www.nbcuniversal.com/privacy?intake=CNBC" target="_blank">Privacy Policy</a><span class="CNBCFooter-pipeSymbol">|</span><a class="CNBCFooter-privacyLink" href="https://www.nbcuniversal.com/privacy/notrtoo?intake=CNBC" target="_blank">Do Not Sell My Personal Information</a><span class="CNBCFooter-pipeSymbol">|</span><a class="CNBCFooter-privacyLink" href="https://www.nbcuniversal.com/privacy/california-consumer-privacy-act?intake=CNBC" target="_blank">CA Notice</a><span class="CNBCFooter-pipeSymbol">|</span><a class="CNBCFooter-privacyLink" href="/nbcuniversal-terms-of-service/">Terms of Service</a></div><div class="CNBCFooter-disclaimer"><p class="CNBCFooter-copyright">© <!-- -->2022<!-- --> CNBC LLC. All Rights Reserved.<!-- --> <a href="https://www.nbcuniversal.com" target="_blank">A Division of NBCUniversal</a></p><p class="CNBCFooter-copyright">Data is a real-time snapshot *Data is delayed at least 15 minutes. Global Business and Financial News, Stock Quotes, and Market Data and Analysis.</p><div class="CNBCFooter-marketData"><a href="/market-data-terms-of-service/">Market Data Terms of Use and Disclaimers</a></div><p class="CNBCFooter-copyright">Data also provided by<!-- --> <a href="//www.cnbc.com/market-data-terms-of-service/"><img alt="Reuters" class="CNBCFooter-reutersLogo" src="https://static-redesign.cnbcfm.com/dist/09c161b9810767a7849e.svg"/></a></p></div></div></div></div></footer></div><div class="UniversalVideoPlayer-videoContainer paused" style="top:-3000px;bottom:;left:-3000px;transform:;transform-origin:;transition:;position:;transition-property:;opacity:"></div><div class="App-proContentRecommendation"></div></div></div><script charset="UTF-8">
window._comscore = [];
var EEA_REGION_COUNTRY_CODES = [ "AT", "BE", "BG", "HR", "CY", "CZ", "DK", "EE", "FI", "FR", "DE", "GR", "HU", "IS", "IE", "IT", "LV", "LI", "LT", "LU", "MT", "NL", "NO", "PL", "PT", "RO", "SK", "SI", "ES", "SE", "CH", "TR", "GB" ];
var OneTrustCategories = {
STRICTLY_NECESSARY: 1,
TARGETED_ADS: 4,
STORAGE: 6,
CONTENT_SELECTION_AND_MEASUREMENT: 7,
SOCIAL_MEDIA: 8,
}
var initiateComscore = {
pushData: function(cs_ucfr) {
var data = {
c1: '2',
c2: '1000004',
options: { url_append: 'comscorekw=International:_Top_News_And_Analysis' },
cs_ucfr: cs_ucfr
};
window._comscore.push(data);
initiateComscore.addScripts();
},
addScripts: function() {
(function() {
var s = document.createElement("script"),
el = document.getElementsByTagName("script")[0];
s.async = true;
s.src = 'https://sb.scorecardresearch.com/beacon.js';
el && el.parentNode.insertBefore(s, el);
})();
},
getCookie: function(cookieName) {
return document &&
document.cookie &&
document.cookie
.split(';')
.map((s) => s.trim())
.find((s) => s.startsWith(cookieName));
},
fetchRegion: function() {
fetch('https://geo.cnbc.com/info/')
.then(response => response.json())
.then(data => {
if (data && data.geo && data.geo.country_code) {
if(EEA_REGION_COUNTRY_CODES.includes(data.geo.country_code)) {
initiateComscore.pushData('0');
} else {
initiateComscore.pushData('');
}
}
});
},
run: function() {
if (!Object.values(OneTrustCategories).includes(7)) {
throw new Error('OneTrust category not found.');
}
var optanonCookie = initiateComscore.getCookie('OptanonConsent');
var usPrivacyCookie = initiateComscore.getCookie('USPrivacy');
var regionCookie = initiateComscore.getCookie('region');
// check if regionCookie is present if not fetch region and update cs_ucfr value;
if (regionCookie) {
// if region is USA check for USPrivacy Cookie
if (regionCookie.split('=')[1] === 'USA') {
var usPrivacyCookieValue = usPrivacyCookie && usPrivacyCookie.split('=')[1];
if (optanonCookie || usPrivacyCookieValue) {
if (usPrivacyCookieValue === '1YYN') {
initiateComscore.pushData('0');
} else if (usPrivacyCookieValue === '1YNN') {
initiateComscore.pushData('1');
} else { // if USPrivacy cookie is not present
initiateComscore.pushData('1');
}
} else {
initiateComscore.fetchRegion();
}
} else {
// If region is not USA check for OptanonCookie
if (optanonCookie) {
var categoryRegex = /groups=[^&]*%2C7%3A([01])/;
var regexResults = optanonCookie.match(categoryRegex);
if (regexResults && regexResults[1]) {
initiateComscore.pushData(regexResults[1]);
} else {
initiateComscore.pushData('0');
}
} else {
initiateComscore.fetchRegion();
}
}
} else {
initiateComscore.fetchRegion();
}
}
};
//Run COMSCORE
initiateComscore.run();
</script><noscript><img alt="comscore" src="https://sb.scorecardresearch.com/p?c1=2&c2=1000004&cv=2.0&cj=1"/></noscript><script charset="UTF-8">window.__s_data={"routing":{"locationBeforeTransitions":null},"navStatus":{"pageType":"page","articleTitle":"","hasNewsAlert":false,"hasLiveAlert":false,"hasFiveThings":false,"hasCountDownClock":false,"hasPartnerExp":false,"articleSettings":{},"megaMenuToggleFlag":false,"isExpanded":false,"isIntraSiteLink":false,"hasLiveAlertAd":true,"HFS":null},"dataByMarketMover":{},"videoDataWithPosition":{"top":"-3000px","left":"-3000px","data":{},"videoAttributes":{}},"videoIsPreloader":{"isPreloader":true,"autoPlay":false,"firstVideoClickedOnPage":true},"videoPlayerInfo":{"position":"0","layout":"HIDDEN","playback":false,"adPlayback":false},"videoEventsInfo":{"position":0},"placeholderInfo":{"placeholderState":"INITIAL","replayVideo":false,"trackedIDs":[]},"videoRecommendationInfo":{"videoRecommendation":false},"videoEndCardInfo":{},"continuousPlayInfo":{"continuousToNextVideo":false,"playingIdx":0},"playBackInitiativeInfo":{"playBackInitiative":"Manual","isPlaylist":false},"dataByQuote":{},"metaTags":{"articleData":{},"pageData":{}},"dataByGDSMarketTable":{},"page":{"page":{"layout":[{"editable":false,"columns":[{"span":"full","editable":false,"modules":[{"name":"marketsBanner","source":"100000014","canChangeLayout":false,"canChangeSource":false,"serverRenderPolicy":null,"attributes":{},"options":{"marketCount":10,"securityCount":10,"articleCount":1},"data":{"markets":[{"id":10000528,"tabLabel":"EUR","securities":[{"id":3032894,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002F.GDAXI","symbol":".GDAXI","__typename":"security"},{"id":3032893,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002F.FTSE","symbol":".FTSE","__typename":"security"},{"id":3032327,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002F.FCHI","symbol":".FCHI","__typename":"security"},{"id":100004804,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002F.FTMIB","symbol":".FTMIB","__typename":"security"},{"id":100013666,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002F.STOXX","symbol":".STOXX","__typename":"security"}],"articles":[{"id":107123337,"headline":"European stocks close 2.3% lower as UK tax cuts, weak euro zone data roil markets","url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F23\u002Feuropean-stocks-expected-to-open-in-the-green-as-investors-digest-central-bank-moves-.html","__typename":"article"}],"__typename":"market"},{"id":10000527,"tabLabel":"Asia","securities":[{"id":3032897,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002F.N225","symbol":".N225","__typename":"security"},{"id":3032899,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002F.SSEC","symbol":".SSEC","__typename":"security"},{"id":3032896,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002F.HSI","symbol":".HSI","__typename":"security"},{"id":100004764,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002F.KS11","symbol":".KS11","__typename":"security"},{"id":100483919,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002F.AXJO","symbol":".AXJO","__typename":"security"}],"articles":[{"id":107123272,"headline":"Australia stocks drop nearly 2%; Asian markets slide, Singapore inflation reaches 2008 levels","url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F23\u002Fasia-markets-inflation-cpi-currencies-stocks-oil.html","__typename":"article"}],"__typename":"market"},{"id":17689937,"tabLabel":"Pre-Mkt","securities":[{"id":100007270,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002F@DJ.1","symbol":"@DJ.1","__typename":"security"},{"id":100007266,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002F@SP.1","symbol":"@SP.1","__typename":"security"},{"id":100007591,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002F@ND.1","symbol":"@ND.1","__typename":"security"},{"id":100007484,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002F@CL.1","symbol":"@CL.1","__typename":"security"},{"id":3032077,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002FUS10Y","symbol":"US10Y","__typename":"security"}],"articles":[{"id":107123230,"headline":"Dow drops nearly 500 points to close at new low for 2022 on rising recession fears","url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F22\u002Ffutures-inch-higher-following-another-day-of-losses-after-fed-rate-hike-sell-offs.html","__typename":"article"}],"__typename":"market"},{"id":100003242,"tabLabel":"US","securities":[{"id":3031924,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002F.DJI","symbol":".DJI","__typename":"security"},{"id":100271106,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002F.SPX","symbol":".SPX","__typename":"security"},{"id":3031956,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002F.IXIC","symbol":".IXIC","__typename":"security"},{"id":3032906,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002F.RUT","symbol":".RUT","__typename":"security"},{"id":3031964,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002F.VIX","symbol":".VIX","__typename":"security"}],"articles":[{"id":107123230,"headline":"Dow drops nearly 500 points to close at new low for 2022 on rising recession fears","url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F22\u002Ffutures-inch-higher-following-another-day-of-losses-after-fed-rate-hike-sell-offs.html","__typename":"article"}],"__typename":"market"},{"id":10000728,"tabLabel":"Oil","securities":[{"id":100007484,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002F@CL.1","symbol":"@CL.1","__typename":"security"},{"id":100007491,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002F@LCO.1","symbol":"@LCO.1","__typename":"security"},{"id":100007487,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002F@NG.1","symbol":"@NG.1","__typename":"security"},{"id":100007489,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002F@RB.1","symbol":"@RB.1","__typename":"security"},{"id":100014681,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002F@HO.1","symbol":"@HO.1","__typename":"security"}],"articles":[{"id":107123310,"headline":"Oil prices down 3% with recession fears in focus","url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F23\u002Foil-energy-markets-iran-deal-russia-conflict-supply.html","__typename":"article"}],"__typename":"market"},{"id":33057388,"tabLabel":"Gold","securities":[{"id":100007526,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002F@GC.1","symbol":"@GC.1","__typename":"security"},{"id":100007527,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002F@SI.1","symbol":"@SI.1","__typename":"security"},{"id":100007528,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002F@HG.1","symbol":"@HG.1","__typename":"security"},{"id":100007529,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002F@PL.1","symbol":"@PL.1","__typename":"security"},{"id":100010455,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002F@PA.1","symbol":"@PA.1","__typename":"security"}],"articles":[{"id":107123312,"headline":"Gold hits more than 2-year low on dollar strength, Fed concerns","url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F23\u002Fgold-precious-metals-us-dollar-interest-rate-hikes.html","__typename":"article"}],"__typename":"market"},{"id":15839203,"tabLabel":"Bonds","securities":[{"id":3032077,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002FUS10Y","symbol":"US10Y","__typename":"security"},{"id":100013705,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002FDE10Y-DE","symbol":"DE10Y-DE","__typename":"security"},{"id":100014122,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002FJP10Y-JP","symbol":"JP10Y-JP","__typename":"security"},{"id":100013710,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002FUK10Y-GB","symbol":"UK10Y-GB","__typename":"security"},{"id":100014115,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002FFR10Y-FR","symbol":"FR10Y-FR","__typename":"security"}],"articles":[{"id":107123364,"headline":"2-year Treasury tops 4.2%, a 15-year high as Fed continues to jolt short-term rates higher","url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F23\u002F10-year-treasury-yield-falls-as-markets-digest-fed-rate-hike.html","__typename":"article"}],"__typename":"market"},{"id":100010802,"tabLabel":"EUR FX","securities":[{"id":3032901,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002FEUR=","symbol":"EUR=","__typename":"security"},{"id":3032903,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002FGBP=","symbol":"GBP=","__typename":"security"},{"id":100013604,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002FEURGBP=","symbol":"EURGBP=","__typename":"security"},{"id":3032904,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002FCHF=","symbol":"CHF=","__typename":"security"},{"id":104887499,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002FBTC.CB=","symbol":"BTC.CB=","__typename":"security"}],"articles":[{"id":107123311,"headline":"Grim PMIs knock euro, sterling also pressured by UK mini-budget ","url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F23\u002Fforex-currencies-yen-dollar-interest-rates.html","__typename":"article"}],"__typename":"market"},{"id":100010799,"tabLabel":"Asia FX","securities":[{"id":100013622,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002FCNY=","symbol":"CNY=","__typename":"security"},{"id":100275528,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002FJPY=","symbol":"JPY=","__typename":"security"},{"id":100286664,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002FAUD=","symbol":"AUD=","__typename":"security"},{"id":100323588,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002FSGD=","symbol":"SGD=","__typename":"security"},{"id":100347859,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002FEURJPY=","symbol":"EURJPY=","__typename":"security"},{"id":100010262,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002FNZD=","symbol":"NZD=","__typename":"security"}],"articles":[{"id":107123311,"headline":"Grim PMIs knock euro, sterling also pressured by UK mini-budget ","url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F23\u002Fforex-currencies-yen-dollar-interest-rates.html","__typename":"article"}],"__typename":"market"},{"id":106826328,"tabLabel":"Crypto","securities":[{"id":106687112,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002FBTC.CM=","symbol":"BTC.CM=","__typename":"security"},{"id":106827114,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002FETH.CM=","symbol":"ETH.CM=","__typename":"security"},{"id":101231759,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002FXRP.CM=","symbol":"XRP.CM=","__typename":"security"},{"id":106826292,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002FLTC.CM=","symbol":"LTC.CM=","__typename":"security"},{"id":106827116,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002FBCH.CM=","symbol":"BCH.CM=","__typename":"security"}],"articles":[],"__typename":"market"}],"__typename":"marketsBanner"},"__typename":"module"}],"__typename":"column"}],"__typename":"layout"},{"editable":false,"columns":[{"span":"full","editable":false,"modules":[{"name":"adHomepageTopBanner","source":null,"canChangeLayout":false,"canChangeSource":false,"serverRenderPolicy":null,"attributes":{},"options":null,"data":{"__typename":"asset"},"__typename":"module"}],"__typename":"column"}],"__typename":"layout"},{"editable":false,"columns":[{"span":"full","editable":false,"modules":[{"name":"quickLinks","source":"106278806","canChangeLayout":false,"canChangeSource":false,"serverRenderPolicy":null,"attributes":{"title":"Quick Links"},"options":{},"data":{"name":"quickLinks","quickLinksData":[{"title":"PRO: Market lookahead","url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F23\u002Fstocks-could-continue-skittish-trading-until-interest-rate-move-calms-down.html","href":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F23\u002Fstocks-could-continue-skittish-trading-until-interest-rate-move-calms-down.html","__typename":"webresource"},{"title":"U.S. 10-year yield","url":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002FUS10Y","href":"https:\u002F\u002Fwww.cnbc.com\u002Fquotes\u002FUS10Y","__typename":"webresource"},{"title":"Hedgies boost bets","url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F23\u002Fhedge-funds-ramp-up-market-bets-as-volatility-brings-the-asset-class-back-into-favor.html","href":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F23\u002Fhedge-funds-ramp-up-market-bets-as-volatility-brings-the-asset-class-back-into-favor.html","__typename":"webresource"},{"title":"Sterling-dollar parity?","url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F23\u002Fciti-says-sterling-dollar-parity-is-possible-as-uk-risks-currency-crisis.html","href":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F23\u002Fciti-says-sterling-dollar-parity-is-possible-as-uk-risks-currency-crisis.html","__typename":"webresource"},{"title":"Goodbye, ragtops","url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F24\u002Fconvertible-sales-fall-in-us-amid-popularity-of-evs-suvs.html","href":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F24\u002Fconvertible-sales-fall-in-us-amid-popularity-of-evs-suvs.html","__typename":"webresource"},{"title":"Cramer's inflation charts","url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F22\u002Fcharts-suggest-inflation-could-soon-come-down-substantially-jim-cramer-says.html","href":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F22\u002Fcharts-suggest-inflation-could-soon-come-down-substantially-jim-cramer-says.html","__typename":"webresource"}],"__typename":"quickLinks"},"__typename":"module"}],"__typename":"column"}],"__typename":"layout"},{"editable":false,"columns":[{"span":"full","editable":false,"modules":[{"name":"legacyPlayerContainer","source":"106715758","canChangeLayout":false,"canChangeSource":false,"serverRenderPolicy":null,"attributes":{},"options":{"pageSize":5},"data":{"id":106715758,"assets":[{"id":107123979,"linkHeadline":"Feared stock market bottom retest is now underway","shorterHeadline":"Feared stock market bottom retest is now underway","slug":"Feared stock market bottom retest is now underway","url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F24\u002Ffeared-stock-market-bottom-retest-is-now-underway.html","datePublished":"2022-09-24T13:02:22+0000","type":"cnbcnewsstory","promoImage":{"id":107123249,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107123249-16638844912022-09-22t220518z_655682612_rc2lmw9d7ov9_rtrmadp_0_usa-stocks.jpeg?v=1664024542","__typename":"infographic"},"title":"Feared stock market bottom retest is now underway","premium":true,"summary":"The guide to retests of a previous market low, suddenly relevant after last week's slide.","section":{"id":106842200,"title":"Santoli on Stocks","url":"https:\u002F\u002Fwww.cnbc.com\u002Fpro\u002Fsantoli-on-stocks\u002F","__typename":"franchise"},"__typename":"cnbcnewsstory"},{"id":107122123,"linkHeadline":"The perils and promise of quantum computing are nearing. Here are ways to invest","shorterHeadline":"The perils and promise of quantum computing are nearing. Here are ways to invest","slug":"The perils and promise of quantum computing are nearing. Here are ways to invest","url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F24\u002Fquantum-investing-perils-and-promise-of-quantum-computing-are-nearing.html","datePublished":"2022-09-24T12:56:22+0000","type":"cnbcnewsstory","promoImage":{"id":106198807,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F106198807-1571848425507handoutgooglepichaiquantum.jpg?v=1664024182","__typename":"infographic"},"title":"The perils and promise of quantum computing are nearing. Here are ways to invest","premium":true,"summary":"Quantum computers have the potential to disrupt the technology world, creating billions of dollars of value in the process.","section":{"id":107045831,"title":"Deep Dives","url":"https:\u002F\u002Fwww.cnbc.com\u002Fpro\u002Fdeep-dives\u002F","__typename":"franchise"},"__typename":"cnbcnewsstory"},{"id":107117636,"linkHeadline":"Analysts name the top 'high conviction' stocks for playing the market turbulence","shorterHeadline":"Analysts have 'high conviction' that these stocks have major upside.","slug":"Analysts name the top 'high conviction' stocks for playing the market turbulence","url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F24\u002Fanalysts-name-top-high-conviction-stocks-for-playing-market-turbulence.html","datePublished":"2022-09-24T13:09:10+0000","type":"cnbcnewsstory","promoImage":{"id":106413616,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F106413616-1582815498409img_9095r.jpg?v=1664024950","__typename":"infographic"},"title":"Analysts name the top 'high conviction' stocks for playing the market turbulence","premium":true,"summary":"Wall Street analysts are standing by this group of stocks as recession fears mount.","section":{"id":106605926,"title":"Street Calls ","url":"https:\u002F\u002Fwww.cnbc.com\u002Fpro\u002Fstreet-calls\u002F","__typename":"franchise"},"__typename":"cnbcnewsstory"},{"id":107123661,"linkHeadline":"Stocks could continue skittish trading until interest rate move calms down","shorterHeadline":"What to watch in the markets in the week ahead","slug":"Stocks could continue skittish trading until interest rate move calms down","url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F23\u002Fstocks-could-continue-skittish-trading-until-interest-rate-move-calms-down.html","datePublished":"2022-09-23T21:19:18+0000","type":"cnbcnewsstory","promoImage":{"id":107110721,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107110721-1661789175637-nyse7.jpg?v=1663967958","__typename":"infographic"},"title":"Stocks could continue skittish trading until interest rate move calms down","premium":true,"summary":"The S&P 500 could test the June lows in the next couple of sessions, and some technical strategists see a much lower low before the market bounces.","section":{"id":106605962,"title":"Pro Insight ","url":"https:\u002F\u002Fwww.cnbc.com\u002Fpro\u002Finsight\u002F","__typename":"franchise"},"__typename":"cnbcnewsstory"},{"id":107123842,"linkHeadline":"Pro Picks: Watch all of Friday's big stock calls on CNBC","shorterHeadline":"Pro Picks: Watch all of Friday's big stock calls on CNBC","slug":"Pro Picks: Watch all of Friday's big stock calls on CNBC - 107123842","url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F23\u002Fpro-picks-watch-all-of-fridays-big-stock-calls-on-cnbc.html","datePublished":"2022-09-23T21:13:45+0000","type":"cnbcnewsstory","promoImage":{"id":107123868,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107123868-1663965213507-Movers_09_23.png?v=1663967625","__typename":"infographic"},"title":"Pro Picks: Watch all of Friday's big stock calls on CNBC","premium":true,"summary":"A recap of Friday's best stock picks on CNBC.","section":{"id":106962648,"title":"Market Movers","url":"https:\u002F\u002Fwww.cnbc.com\u002Fpro\u002Fmarket-movers\u002F","__typename":"franchise"},"__typename":"cnbcnewsstory"}],"__typename":"legacyPlayerContainer"},"__typename":"module"}],"__typename":"column"}],"__typename":"layout"},{"editable":false,"columns":[{"span":"9","editable":false,"modules":[{"name":"featuredNewsHero","source":"100727362","canChangeLayout":false,"canChangeSource":true,"serverRenderPolicy":null,"attributes":{},"options":{"pageSize":3,"maintainOffset":true,"includePackagedItems":true,"offset":0},"data":{"id":100727362,"assets":[{"id":107123514,"type":"cnbcnewsstory","premium":false,"contentClassification":[],"description":"Stocks fell sharply and bond yields rose around the world in volatile trading Friday, as global markets braced for higher interest rates and recession.","brand":"cnbc","title":"From the Fed to Europe's currency crisis, here's what's behind this selloff in financial markets","headline":"From the Fed to Europe's currency crisis, here's what's behind this selloff in financial markets","shorterDescription":null,"coverageEndDate":null,"dateLastPublished":"2022-09-24T00:39:22+0000","creatorOverwrite":null,"author":[{"name":"Patti Domm","url":"https:\u002F\u002Fwww.cnbc.com\u002Fpatti-domm\u002F","__typename":"creator"}],"section":{"eyebrow":"Market Insider","url":"https:\u002F\u002Fwww.cnbc.com\u002Fmarket-insider\u002F","__typename":"franchise"},"url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F23\u002Ffrom-the-fed-to-europes-currency-crisis-heres-whats-behind-this-selloff-in-financial-markets.html","promoImage":{"id":107072377,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107072377-NSC-OB-Photo-20220607-Press-8.jpg?v=1663947622","__typename":"infographic"},"dateLastPublishedSixHr":"","packageItems":[{"id":107123230,"type":"live_story","brand":"cnbc","premium":false,"contentClassification":[],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F22\u002Ffutures-inch-higher-following-another-day-of-losses-after-fed-rate-hike-sell-offs.html","dateLastPublished":"2022-09-23T21:06:50+0000","dateLastPublishedSixHr":"","coverageEndDate":"2022-09-23T20:00:08+0000","title":"Dow drops nearly 500 points to close at new low for 2022 on rising recession fears","headline":"Dow drops nearly 500 points to close at new low for 2022 on rising recession fears","eyebrow":"Dow drops nearly 500 points to close at new low for 2022 on rising recession fears","__typename":"live_story"}],"__typename":"cnbcnewsstory"},{"id":107123204,"type":"cnbcnewsstory","premium":false,"contentClassification":[],"description":"Google CEO Sundar Pichai expressed some annoyance at this week's all-hands meeting as he sought to clarify and defend cost cuts and address employee concerns.","brand":"cnbc","title":"Google CEO Pichai tells employees not to 'equate fun with money' in heated all-hands meeting ","headline":"Google CEO Pichai tells employees not to 'equate fun with money' in heated all-hands meeting ","shorterDescription":null,"coverageEndDate":null,"dateLastPublished":"2022-09-23T14:59:34+0000","creatorOverwrite":null,"author":[{"name":"Jennifer Elias","url":"https:\u002F\u002Fwww.cnbc.com\u002Fjennifer-elias\u002F","__typename":"creator"}],"section":{"eyebrow":"Tech","url":"https:\u002F\u002Fwww.cnbc.com\u002Ftechnology\u002F","__typename":"franchise"},"url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F23\u002Fgoogle-ceo-pichai-fields-questions-on-cost-cuts-at-all-hands-meeting-.html","promoImage":{"id":106629916,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F106629916-1595528838886-gettyimages-1195292757-AFP_1O5272.jpeg?v=1663938852","__typename":"infographic"},"dateLastPublishedSixHr":"","packageItems":[],"__typename":"cnbcnewsstory"},{"id":107123999,"type":"wirestory","premium":false,"contentClassification":[],"description":"North Korea fired a ballistic missile off its east coast on Sunday, ahead of military drills by South Korean and U.S. forces and a visit by Kamala Harris. ","brand":"cnbc","title":"North Korea fires ballistic missile into sea ahead of visit by U.S. VP Kamala Harris","headline":"North Korea fires ballistic missile into sea ahead of visit by U.S. VP Kamala Harris","shorterDescription":null,"coverageEndDate":null,"dateLastPublished":"2022-09-25T02:43:05+0000","creatorOverwrite":null,"author":[],"section":{"eyebrow":"Asia Politics","url":"https:\u002F\u002Fwww.cnbc.com\u002Fasia-politics\u002F","__typename":"franchise"},"url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F25\u002Fnorth-korea-fires-ballistic-missile-ahead-of-kamala-harris-visit.html","promoImage":{"id":107124000,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107124000-1664071555698-gettyimages-1243489102-AFP_32K338H.jpeg?v=1664072052","__typename":"infographic"},"dateLastPublishedSixHr":"2 hours ago","packageItems":[],"__typename":"wirestory"}],"__typename":"featuredNewsHero"},"__typename":"module"}],"__typename":"column"},{"span":"3","editable":false,"modules":[{"name":"latestNews","source":"104524607","canChangeLayout":false,"canChangeSource":false,"serverRenderPolicy":null,"attributes":{"id":104524607,"title":"Latest News","latestNewsClass":true,"isIntlHomepage":true},"options":{"pageSize":30,"include":["cnbcnewsstory","event","partnerstory","sponsored","blogpost","wirestory","pressrelease","slideshow","cnbcvideo","live_story","webresource"]},"data":{"id":104524607,"type":"franchise","brand":"cnbc","url":"https:\u002F\u002Fwww.cnbc.com\u002Flatest\u002F","title":"Latest News","description":"Read the latest business headlines and today's market news coverage from CNBC.","name":"latestNews","assets":[{"id":107123107,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F24\u002Fthree-rules-for-a-successful-open-relationship.html","title":"3 rules for a successful open relationship, from a therapist: 'More communication is nearly always better than less'","headline":"3 rules for a successful open relationship: 'More communication is nearly always better than less'","shorterHeadline":"3 rules for a successful open relationship, according to an NYC therapist","brand":"makeit","type":"cnbcnewsstory","section":{"liveURL":"\u002Fmake-it\u002Fpsychology-relationships\u002F","title":"Psychology and Relationships","__typename":"franchise"},"datePublished":"2022-09-24T18:00:01+0000","dateLastPublishedSixHr":"","coverageEndDate":null,"liveURL":"\u002F2022\u002F09\u002F24\u002Fthree-rules-for-a-successful-open-relationship.html","premium":false,"contentClassification":[],"__typename":"cnbcnewsstory"},{"id":107123990,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F24\u002Fbiden-administration-awards-1point5-billion-to-fight-opioid-crisis.html","title":"Biden administration awards $1.5 billion to fight opioid crisis","headline":"Biden administration awards $1.5 billion to fight opioid crisis","shorterHeadline":"Biden administration awards $1.5 billion to fight opioid crisis","brand":"cnbc","type":"cnbcnewsstory","section":{"liveURL":"\u002Fpolitics\u002F","title":"Politics","__typename":"franchise"},"datePublished":"2022-09-24T16:31:38+0000","dateLastPublishedSixHr":"","coverageEndDate":null,"liveURL":"\u002F2022\u002F09\u002F24\u002Fbiden-administration-awards-1point5-billion-to-fight-opioid-crisis.html","premium":false,"contentClassification":[],"__typename":"cnbcnewsstory"},{"id":107121276,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F24\u002Ftop-10-cities-with-the-best-pizzerias-worldwide-.html","title":"These 10 cities have the best pizzerias in the world—see where New York lands on the list","headline":"These 10 cities have the best pizzerias in the world—see where New York lands on the list","shorterHeadline":"Top 10 cities with the best pizzerias worldwide—see where NYC lands on the list","brand":"makeit","type":"cnbcnewsstory","section":{"liveURL":"\u002Fmake-it\u002Ffood-travel-and-tech\u002F","title":"Food, Travel, and Tech News","__typename":"franchise"},"datePublished":"2022-09-24T16:00:01+0000","dateLastPublishedSixHr":"3 hours ago","coverageEndDate":null,"liveURL":"\u002F2022\u002F09\u002F24\u002Ftop-10-cities-with-the-best-pizzerias-worldwide-.html","premium":false,"contentClassification":[],"__typename":"cnbcnewsstory"},{"id":107122933,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F24\u002Feasy-meals-for-two-under-20-from-black-girls-in-trader-joes-creator.html","title":"The creator of Black Girls in Trader Joe’s shares her top 5 favorite products, easy meals for under $20","headline":"Black Girls in Trader Joe’s creator shares her top five favorite products, easy meals for under $20","shorterHeadline":"Black Girls in Trader Joe’s creator shares her top five favorite products","brand":"makeit","type":"cnbcnewsstory","section":{"liveURL":"\u002Fmake-it\u002Ffood-travel-and-tech\u002F","title":"Food, Travel, and Tech News","__typename":"franchise"},"datePublished":"2022-09-24T15:05:01+0000","dateLastPublishedSixHr":"","coverageEndDate":null,"liveURL":"\u002F2022\u002F09\u002F24\u002Feasy-meals-for-two-under-20-from-black-girls-in-trader-joes-creator.html","premium":false,"contentClassification":[],"__typename":"cnbcnewsstory"},{"id":107081756,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F24\u002Fhow-to-raise-resilient-kids-by-developing-their-brains-with-nurturing-routines-parenting-expert.html","title":"Want to raise strong, resilient kids? Create 'nurturing routines,' says parenting expert—here’s how","headline":"Want to raise strong, resilient kids? Create 'nurturing routines,' says parenting expert—here’s how","shorterHeadline":"Want to raise strong, resilient kids? Create 'nurturing routines,' says parenting expert—here’s how","brand":"makeit","type":"cnbcnewsstory","section":{"liveURL":"\u002Fmake-it\u002Fraising-successful-kids\u002F","title":"Raising Successful Kids","__typename":"franchise"},"datePublished":"2022-09-24T14:17:18+0000","dateLastPublishedSixHr":"","coverageEndDate":null,"liveURL":"\u002F2022\u002F09\u002F24\u002Fhow-to-raise-resilient-kids-by-developing-their-brains-with-nurturing-routines-parenting-expert.html","premium":false,"contentClassification":[],"__typename":"cnbcnewsstory"},{"id":107107056,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F24\u002Fhow-airlines-plan-to-end-one-billion-tons-of-carbon-emissions.html","title":"Why the airline climate change, sustainable jet fuel plan is trailing autos and EVs","headline":"Why the airline climate change, sustainable jet fuel plan is trailing autos and EVs","shorterHeadline":"Why the airline climate change plan is trailing autos and EVs","brand":"cnbc","type":"cnbcnewsstory","section":{"liveURL":"\u002Fevolve\u002F","title":"Evolve","__typename":"franchise"},"datePublished":"2022-09-24T14:01:12+0000","dateLastPublishedSixHr":"","coverageEndDate":null,"liveURL":"\u002F2022\u002F09\u002F24\u002Fhow-airlines-plan-to-end-one-billion-tons-of-carbon-emissions.html","premium":false,"contentClassification":[],"__typename":"cnbcnewsstory"},{"id":107122394,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F24\u002Fqueer-eyes-karamo-brown-shares-morning-routine.html","title":"'Queer Eye's Karamo Brown on the morning routines that keep him motivated","headline":"'Queer Eye's Karamo Brown on the morning routines that keep him motivated","shorterHeadline":"'Queer Eye's Karamo Brown on the morning routines that keep him motivated","brand":"makeit","type":"cnbcnewsstory","section":{"liveURL":"\u002Fmake-it\u002Fget-ahead\u002F","title":"Get Ahead","__typename":"franchise"},"datePublished":"2022-09-24T14:00:01+0000","dateLastPublishedSixHr":"","coverageEndDate":null,"liveURL":"\u002F2022\u002F09\u002F24\u002Fqueer-eyes-karamo-brown-shares-morning-routine.html","premium":false,"contentClassification":[],"__typename":"cnbcnewsstory"},{"id":107123590,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F24\u002Fvermont-new-mexico-california-us-states-with-least-air-pollution.html","title":"These 7 states have the least air pollution in the U.S.","headline":"These 7 states have the least air pollution in the U.S.","shorterHeadline":"These 7 states have the least air pollution in the U.S.","brand":"makeit","type":"cnbcnewsstory","section":{"liveURL":"\u002Fmake-it\u002Flife\u002F","title":"Life","__typename":"franchise"},"datePublished":"2022-09-24T13:30:01+0000","dateLastPublishedSixHr":"","coverageEndDate":null,"liveURL":"\u002F2022\u002F09\u002F24\u002Fvermont-new-mexico-california-us-states-with-least-air-pollution.html","premium":false,"contentClassification":[],"__typename":"cnbcnewsstory"},{"id":107122995,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F24\u002Fnew-york-now-no-1-port-in-us-as-sea-change-in-trade-hits-west-coast.html","title":"New York is now the nation's busiest port in a historic tipping point for U.S.-bound trade","headline":"New York is now the nation's busiest port in a historic tipping point for U.S.-bound trade","shorterHeadline":"New York is now No. 1 port in a tipping point for U.S.-bound trade","brand":"cnbc","type":"cnbcnewsstory","section":{"liveURL":"\u002Fstate-of-freight\u002F","title":"State of Freight","__typename":"franchise"},"datePublished":"2022-09-24T13:17:32+0000","dateLastPublishedSixHr":"","coverageEndDate":null,"liveURL":"\u002F2022\u002F09\u002F24\u002Fnew-york-now-no-1-port-in-us-as-sea-change-in-trade-hits-west-coast.html","premium":false,"contentClassification":[],"__typename":"cnbcnewsstory"},{"id":107117636,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F24\u002Fanalysts-name-top-high-conviction-stocks-for-playing-market-turbulence.html","title":"Analysts name the top 'high conviction' stocks for playing the market turbulence","headline":"Analysts name the top 'high conviction' stocks for playing the market turbulence","shorterHeadline":"Analysts have 'high conviction' that these stocks have major upside.","brand":"cnbc","type":"cnbcnewsstory","section":{"liveURL":"\u002Fpro\u002Fstreet-calls\u002F","title":"Street Calls ","__typename":"franchise"},"datePublished":"2022-09-24T13:09:10+0000","dateLastPublishedSixHr":"","coverageEndDate":null,"liveURL":"\u002F2022\u002F09\u002F24\u002Fanalysts-name-top-high-conviction-stocks-for-playing-market-turbulence.html","premium":true,"contentClassification":["premium"],"__typename":"cnbcnewsstory"},{"id":107123979,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F24\u002Ffeared-stock-market-bottom-retest-is-now-underway.html","title":"Feared stock market bottom retest is now underway","headline":"Feared stock market bottom retest is now underway","shorterHeadline":"Feared stock market bottom retest is now underway","brand":"cnbc","type":"cnbcnewsstory","section":{"liveURL":"\u002Fpro\u002Fsantoli-on-stocks\u002F","title":"Santoli on Stocks","__typename":"franchise"},"datePublished":"2022-09-24T13:02:22+0000","dateLastPublishedSixHr":"","coverageEndDate":null,"liveURL":"\u002F2022\u002F09\u002F24\u002Ffeared-stock-market-bottom-retest-is-now-underway.html","premium":true,"contentClassification":["premium"],"__typename":"cnbcnewsstory"},{"id":107123686,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F24\u002Fwallethub-top-10-cities-to-retire-2022-nearly-half-are-in-florida.html","title":"The No. 1 best city to retire isn't in Florida—but several others in the top 10 for 2022 are","headline":"The No. 1 best city to retire isn't in Florida—but several others in the top 10 for 2022 are","shorterHeadline":"The No. 1 best city to retire isn't in Florida but the runner up is","brand":"makeit","type":"cnbcnewsstory","section":{"liveURL":"\u002Fmake-it\u002Fsave-and-invest\u002F","title":"Save and Invest","__typename":"franchise"},"datePublished":"2022-09-24T13:00:01+0000","dateLastPublishedSixHr":"","coverageEndDate":null,"liveURL":"\u002F2022\u002F09\u002F24\u002Fwallethub-top-10-cities-to-retire-2022-nearly-half-are-in-florida.html","premium":false,"contentClassification":[],"__typename":"cnbcnewsstory"},{"id":107122123,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F24\u002Fquantum-investing-perils-and-promise-of-quantum-computing-are-nearing.html","title":"The perils and promise of quantum computing are nearing. Here are ways to invest","headline":"The perils and promise of quantum computing are nearing. Here are ways to invest","shorterHeadline":"The perils and promise of quantum computing are nearing. Here are ways to invest","brand":"cnbc","type":"cnbcnewsstory","section":{"liveURL":"\u002Fpro\u002Fdeep-dives\u002F","title":"Deep Dives","__typename":"franchise"},"datePublished":"2022-09-24T12:56:22+0000","dateLastPublishedSixHr":"","coverageEndDate":null,"liveURL":"\u002F2022\u002F09\u002F24\u002Fquantum-investing-perils-and-promise-of-quantum-computing-are-nearing.html","premium":true,"contentClassification":["premium"],"__typename":"cnbcnewsstory"},{"id":107122140,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F24\u002Fwhat-parent-plus-borrowers-need-to-know-about-student-loan-forgiveness.html","title":"Everything parents need to know about student loan forgiveness ","headline":"Everything parents need to know about student loan forgiveness ","shorterHeadline":"Everything parents need to know about student loan forgiveness ","brand":"cnbc","type":"cnbcnewsstory","section":{"liveURL":"\u002Fpersonal-finance\u002F","title":"Personal Finance","__typename":"franchise"},"datePublished":"2022-09-24T12:01:01+0000","dateLastPublishedSixHr":"","coverageEndDate":null,"liveURL":"\u002F2022\u002F09\u002F24\u002Fwhat-parent-plus-borrowers-need-to-know-about-student-loan-forgiveness.html","premium":false,"contentClassification":[],"__typename":"cnbcnewsstory"},{"id":107119996,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F24\u002Fcheck-in-smoke-up-tune-out-cannabis-friendly-vacation-rentals-catch-on.html","title":"Check in, smoke up and tune out: Cannabis-friendly vacation rentals are catching on","headline":"Check in, smoke up and tune out: Cannabis-friendly vacation rentals are catching on","shorterHeadline":"Check in, smoke up and tune out: Cannabis-friendly vacation rentals are catching on","brand":"cnbc","type":"cnbcnewsstory","section":{"liveURL":"\u002Ftravel\u002F","title":"Travel","__typename":"franchise"},"datePublished":"2022-09-24T12:00:01+0000","dateLastPublishedSixHr":"","coverageEndDate":null,"liveURL":"\u002F2022\u002F09\u002F24\u002Fcheck-in-smoke-up-tune-out-cannabis-friendly-vacation-rentals-catch-on.html","premium":false,"contentClassification":[],"__typename":"cnbcnewsstory"},{"id":107123110,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F24\u002Fconvertible-sales-fall-in-us-amid-popularity-of-evs-suvs.html","title":"Convertibles drive into the sunset as automakers invest in electric vehicles","headline":"Convertibles drive into the sunset as automakers invest in electric vehicles","shorterHeadline":"Convertibles drive into the sunset as automakers invest in electric vehicles","brand":"cnbc","type":"cnbcnewsstory","section":{"liveURL":"\u002Fautos\u002F","title":"Autos","__typename":"franchise"},"datePublished":"2022-09-24T12:00:01+0000","dateLastPublishedSixHr":"","coverageEndDate":null,"liveURL":"\u002F2022\u002F09\u002F24\u002Fconvertible-sales-fall-in-us-amid-popularity-of-evs-suvs.html","premium":false,"contentClassification":[],"__typename":"cnbcnewsstory"},{"id":107123978,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F24\u002Fliz-truss-britains-lurch-to-reaganomics-gets-thumbs-down-from-markets.html","title":"Britain's lurch toward 'Reaganomics' gets a thumbs down from the markets","headline":"Britain's lurch toward 'Reaganomics' gets a thumbs down from the markets","shorterHeadline":"Britain's lurch toward 'Reaganomics' gets a thumbs down from the markets","brand":"cnbc","type":"cnbcnewsstory","section":{"liveURL":"\u002Feurope-markets\u002F","title":"Europe Markets","__typename":"franchise"},"datePublished":"2022-09-24T08:38:35+0000","dateLastPublishedSixHr":"","coverageEndDate":null,"liveURL":"\u002F2022\u002F09\u002F24\u002Fliz-truss-britains-lurch-to-reaganomics-gets-thumbs-down-from-markets.html","premium":false,"contentClassification":[],"__typename":"cnbcnewsstory"},{"id":107123848,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F23\u002Fit-was-another-painful-week-to-own-stocks-but-we-have-a-new-plan-for-monday.html","title":"Here's our plan for Monday after another painful week to own stocks","headline":"Here's our plan for Monday after another painful week to own stocks","shorterHeadline":"Here's our plan for Monday after another painful week to own stocks","brand":"cnbc","type":"cnbcnewsstory","section":{"liveURL":"\u002Finvestingclub\u002Fanalysis\u002F","title":"Analysis","__typename":"franchise"},"datePublished":"2022-09-23T21:29:55+0000","dateLastPublishedSixHr":"","coverageEndDate":null,"liveURL":"\u002F2022\u002F09\u002F23\u002Fit-was-another-painful-week-to-own-stocks-but-we-have-a-new-plan-for-monday.html","premium":false,"contentClassification":["investingClub"],"__typename":"cnbcnewsstory"},{"id":107123661,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F23\u002Fstocks-could-continue-skittish-trading-until-interest-rate-move-calms-down.html","title":"Stocks could continue skittish trading until interest rate move calms down","headline":"Stocks could continue skittish trading until interest rate move settles","shorterHeadline":"What to watch in the markets in the week ahead","brand":"cnbc","type":"cnbcnewsstory","section":{"liveURL":"\u002Fpro\u002Finsight\u002F","title":"Pro Insight ","__typename":"franchise"},"datePublished":"2022-09-23T21:19:18+0000","dateLastPublishedSixHr":"","coverageEndDate":null,"liveURL":"\u002F2022\u002F09\u002F23\u002Fstocks-could-continue-skittish-trading-until-interest-rate-move-calms-down.html","premium":true,"contentClassification":["premium"],"__typename":"cnbcnewsstory"},{"id":107123842,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F23\u002Fpro-picks-watch-all-of-fridays-big-stock-calls-on-cnbc.html","title":"Pro Picks: Watch all of Friday's big stock calls on CNBC","headline":"Pro Picks: Watch all of Friday's big stock calls on CNBC","shorterHeadline":"Pro Picks: Watch all of Friday's big stock calls on CNBC","brand":"cnbc","type":"cnbcnewsstory","section":{"liveURL":"\u002Fpro\u002Fmarket-movers\u002F","title":"Market Movers","__typename":"franchise"},"datePublished":"2022-09-23T21:13:45+0000","dateLastPublishedSixHr":"","coverageEndDate":null,"liveURL":"\u002F2022\u002F09\u002F23\u002Fpro-picks-watch-all-of-fridays-big-stock-calls-on-cnbc.html","premium":true,"contentClassification":["premium"],"__typename":"cnbcnewsstory"},{"id":107123108,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F23\u002Fcareers-where-over-50percent-of-workers-are-happy-with-their-pay.html","title":"13 careers where over 50% of workers are happy with their pay","headline":"13 careers where over 50% of workers are happy with their pay","shorterHeadline":"13 careers where over 50% of workers are happy with their pay","brand":"makeit","type":"cnbcnewsstory","section":{"liveURL":"\u002Fmake-it\u002Fwork\u002F","title":"Work","__typename":"franchise"},"datePublished":"2022-09-23T21:05:50+0000","dateLastPublishedSixHr":"","coverageEndDate":null,"liveURL":"\u002F2022\u002F09\u002F23\u002Fcareers-where-over-50percent-of-workers-are-happy-with-their-pay.html","premium":false,"contentClassification":[],"__typename":"cnbcnewsstory"},{"id":107123860,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F23\u002Fnew-york-ag-wrongly-says-yankees-game-on-apple-tv-costs-extra.html","title":"New York AG wrongly said Yankees game on Apple TV+ costs extra — but it's free","headline":"New York AG wrongly said Yankees game on Apple TV+ costs extra — but it's free","shorterHeadline":"New York AG wrongly said Yankees game on Apple TV+ costs extra — but it's free","brand":"cnbc","type":"cnbcnewsstory","section":{"liveURL":"\u002Ftechnology\u002F","title":"Tech","__typename":"franchise"},"datePublished":"2022-09-23T21:01:48+0000","dateLastPublishedSixHr":"","coverageEndDate":null,"liveURL":"\u002F2022\u002F09\u002F23\u002Fnew-york-ag-wrongly-says-yankees-game-on-apple-tv-costs-extra.html","premium":false,"contentClassification":[],"__typename":"cnbcnewsstory"},{"id":107123669,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F23\u002Ftech-stocks-worst-two-week-stretch-since-the-start-of-pandemic.html","title":"Tech stocks just had their worst two-week stretch since the start of the pandemic","headline":"Tech stocks just had their worst two-week stretch since the start of the pandemic","shorterHeadline":"Tech stocks just had the worst two-week stretch since the start of the pandemic","brand":"cnbc","type":"cnbcnewsstory","section":{"liveURL":"\u002Ftechnology\u002F","title":"Tech","__typename":"franchise"},"datePublished":"2022-09-23T20:37:39+0000","dateLastPublishedSixHr":"","coverageEndDate":null,"liveURL":"\u002F2022\u002F09\u002F23\u002Ftech-stocks-worst-two-week-stretch-since-the-start-of-pandemic.html","premium":false,"contentClassification":[],"__typename":"cnbcnewsstory"},{"id":107123665,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F23\u002Fjim-cramer-sat-down-with-the-ceos-of-salesforce-and-slack-this-week.html","title":"Jim Cramer sat down with the CEOs of Salesforce and Slack this week — here are our takeaways","headline":"Jim Cramer sat down with the CEOs of Salesforce and Slack this week — here are our takeaways","shorterHeadline":"Takeaways from Jim Cramer's interviews with the CEOs of Salesforce and Slack ","brand":"cnbc","type":"cnbcnewsstory","section":{"liveURL":"\u002Finvestingclub\u002Fanalysis\u002F","title":"Analysis","__typename":"franchise"},"datePublished":"2022-09-23T19:57:38+0000","dateLastPublishedSixHr":"","coverageEndDate":null,"liveURL":"\u002F2022\u002F09\u002F23\u002Fjim-cramer-sat-down-with-the-ceos-of-salesforce-and-slack-this-week.html","premium":false,"contentClassification":["investingClub"],"__typename":"cnbcnewsstory"},{"id":107122812,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F23\u002Fsome-homebuyers-are-facing-payment-shock-ways-to-save-on-a-mortgage.html","title":"As 30-year mortgage rates hit 6.7%, homebuyers are facing 'payment shock.' Here are ways to save","headline":"As 30-year mortgage rates hit 6.7%, homebuyers are facing 'payment shock.' Here are ways to save","shorterHeadline":"Some homebuyers are facing mortgage 'payment shock.' Here are ways to save","brand":"cnbc","type":"cnbcnewsstory","section":{"liveURL":"\u002Fpersonal-finance\u002F","title":"Personal Finance","__typename":"franchise"},"datePublished":"2022-09-23T19:21:09+0000","dateLastPublishedSixHr":"","coverageEndDate":null,"liveURL":"\u002F2022\u002F09\u002F23\u002Fsome-homebuyers-are-facing-payment-shock-ways-to-save-on-a-mortgage.html","premium":false,"contentClassification":[],"__typename":"cnbcnewsstory"},{"id":107123725,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F23\u002Fether-is-down-almost-20percent-since-the-merge-heres-whats-going-on.html","title":"Ether is down almost 20% since the merge. Here’s what’s going on","headline":"Ether is down almost 20% since the merge. Here’s what’s going on","shorterHeadline":"Ether is down almost 20% since the merge. Here’s what’s going on","brand":"cnbc","type":"cnbcnewsstory","section":{"liveURL":"\u002Fpro\u002Fanalysis\u002F","title":"Pro Analysis","__typename":"franchise"},"datePublished":"2022-09-23T19:15:24+0000","dateLastPublishedSixHr":"","coverageEndDate":null,"liveURL":"\u002F2022\u002F09\u002F23\u002Fether-is-down-almost-20percent-since-the-merge-heres-whats-going-on.html","premium":true,"contentClassification":["premium"],"__typename":"cnbcnewsstory"},{"id":107061018,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F23\u002Felon-musk-direct-reports-at-tesla.html","title":"Elon Musk has more than 20 direct reports at Tesla — here are the ones we know about","headline":"Elon Musk has more than 20 direct reports at Tesla — here are the ones we know about","shorterHeadline":"Elon Musk has over 20 direct reports at Tesla — here are the ones we know about","brand":"cnbc","type":"cnbcnewsstory","section":{"liveURL":"\u002Ftechnology\u002F","title":"Tech","__typename":"franchise"},"datePublished":"2022-09-23T19:04:13+0000","dateLastPublishedSixHr":"","coverageEndDate":null,"liveURL":"\u002F2022\u002F09\u002F23\u002Felon-musk-direct-reports-at-tesla.html","premium":false,"contentClassification":[],"__typename":"cnbcnewsstory"},{"id":107123694,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F23\u002Ftrump-merger-partner-shares-fall-dramatically.html","title":"Trump-linked Digital World Acquisition Corp shares are now around $16 after hitting $97 earlier this year","headline":"Trump-linked SPAC's shares are now around $16 after hitting $97 earlier this year","shorterHeadline":"Trump SPAC shares are now around $16 after hitting $97 earlier this year","brand":"cnbc","type":"cnbcnewsstory","section":{"liveURL":"\u002Fmedia\u002F","title":"Media","__typename":"franchise"},"datePublished":"2022-09-23T18:55:34+0000","dateLastPublishedSixHr":"","coverageEndDate":null,"liveURL":"\u002F2022\u002F09\u002F23\u002Ftrump-merger-partner-shares-fall-dramatically.html","premium":false,"contentClassification":[],"__typename":"cnbcnewsstory"},{"id":107123573,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F23\u002Fus-fiscal-policy-is-undermining-the-feds-efforts-to-fight-inflation.html","title":"Here's why U.S. fiscal policy is undermining the Fed's aggressive efforts to fight inflation","headline":"Here's why U.S. fiscal policy is undermining the Fed's aggressive efforts to fight inflation","shorterHeadline":"Here's why U.S. fiscal policy is undermining the Fed's efforts to fight inflation","brand":"cnbc","type":"cnbcnewsstory","section":{"liveURL":"\u002Finvestingclub\u002Fanalysis\u002F","title":"Analysis","__typename":"franchise"},"datePublished":"2022-09-23T18:44:54+0000","dateLastPublishedSixHr":"","coverageEndDate":null,"liveURL":"\u002F2022\u002F09\u002F23\u002Fus-fiscal-policy-is-undermining-the-feds-efforts-to-fight-inflation.html","premium":false,"contentClassification":["subscriberAlert","investingClub"],"__typename":"cnbcnewsstory"},{"id":107123538,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F23\u002Fwhy-gold-and-cryptocurrencies-arent-inflation-proof-investments.html","title":"Gold and crypto have been called 'inflation-proof' investments—so far in 2022, neither seems to be a great hedge","headline":"Gold and crypto have been called 'inflation-proof' investments—so far in 2022, neither seems to be","shorterHeadline":"Why gold and crypto haven't proven to be 'inflation-proof' investments in 2022","brand":"makeit","type":"cnbcnewsstory","section":{"liveURL":"\u002Fmake-it\u002Fnext-gen-investing\u002F","title":"Next Gen Investing","__typename":"franchise"},"datePublished":"2022-09-23T18:35:47+0000","dateLastPublishedSixHr":"","coverageEndDate":null,"liveURL":"\u002F2022\u002F09\u002F23\u002Fwhy-gold-and-cryptocurrencies-arent-inflation-proof-investments.html","premium":false,"contentClassification":[],"__typename":"cnbcnewsstory"}],"__typename":"latestNews"},"__typename":"module"}],"__typename":"column"}],"__typename":"layout"},{"editable":false,"columns":[{"span":"3","editable":false,"modules":[{"name":"adBoxInline","source":"left","canChangeLayout":false,"canChangeSource":false,"serverRenderPolicy":"client","attributes":{"customStyles":"hpAdContainer"},"options":{},"data":{"__typename":"asset"},"__typename":"module"},{"name":"quoteFinder","source":null,"canChangeLayout":null,"canChangeSource":null,"serverRenderPolicy":null,"attributes":{},"options":null,"data":{"__typename":"asset"},"__typename":"module"},{"name":"marketMoversPlus","source":"left","canChangeLayout":false,"canChangeSource":false,"serverRenderPolicy":null,"attributes":{},"options":{},"data":{"__typename":"asset"},"__typename":"module"}],"__typename":"column"},{"span":"6","editable":false,"modules":[{"name":"riverPlus","source":"100727362","canChangeLayout":false,"canChangeSource":true,"serverRenderPolicy":null,"attributes":{},"options":{"pageSize":20,"maintainOffset":true,"offset":3},"data":{"brand":"cnbc","assets":[{"id":107123977,"brand":"cnbc","type":"wirestory","url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F24\u002Fus-sending-dangerous-signals-on-taiwan-china-tells-blinken.html","native":false,"datePublished":"2022-09-24T07:22:36+0000","coverageEndDate":null,"contentClassification":[],"title":"U.S. sending 'dangerous signals' on Taiwan, China tells Blinken","headline":"U.S. sending 'dangerous signals' on Taiwan, China tells Blinken","premium":false,"section":{"eyebrow":"Politics","type":"franchise","url":"https:\u002F\u002Fwww.cnbc.com\u002Fpolitics\u002F","subType":"section","__typename":"franchise"},"author":[],"dateLastPublishedSixHr":"","promoImage":{"id":107093163,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107093163-1658719942958-gettyimages-1241786710-AFP_32E43K3.jpeg?v=1664004156","__typename":"infographic"},"__typename":"wirestory"},{"id":107123725,"brand":"cnbc","type":"cnbcnewsstory","url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F23\u002Fether-is-down-almost-20percent-since-the-merge-heres-whats-going-on.html","native":false,"datePublished":"2022-09-23T19:15:24+0000","coverageEndDate":null,"contentClassification":["premium"],"title":"Ether is down almost 20% since the merge. Here’s what’s going on","headline":"Ether is down almost 20% since the merge. Here’s what’s going on","premium":true,"section":{"eyebrow":"Pro Analysis","type":"franchise","url":"https:\u002F\u002Fwww.cnbc.com\u002Fpro\u002Fanalysis\u002F","subType":"section","__typename":"franchise"},"author":[{"id":106888168,"name":"Tanaya Macheel","url":"https:\u002F\u002Fwww.cnbc.com\u002Ftanaya-macheel\u002F","__typename":"creator"}],"dateLastPublishedSixHr":"","promoImage":{"id":106885738,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F106885738-1621490902783-gettyimages-1317812942-dsc01436.jpeg?v=1663960524","__typename":"infographic"},"__typename":"cnbcnewsstory"},{"id":107122547,"brand":"cnbc","type":"cnbcvideo","url":"https:\u002F\u002Fwww.cnbc.com\u002Fvideo\u002F2022\u002F09\u002F22\u002F70-governments-in-77-years-why-italy-changes-governments-so-often.html","native":false,"datePublished":"2022-09-22T00:25:48+0000","coverageEndDate":null,"contentClassification":[],"title":"70 governments in 77 years: Why Italy changes governments so often","headline":"70 governments in 77 years: Why Italy changes governments so often","premium":false,"section":{"eyebrow":"International Digital Originals","type":"franchise","url":"https:\u002F\u002Fwww.cnbc.com\u002Finternational-digital-originals\u002F","subType":"special_report","__typename":"franchise"},"author":[{"id":104694340,"name":"Joumanna Bercetche","url":"https:\u002F\u002Fwww.cnbc.com\u002Fjoumanna-bercetche\u002F","__typename":"creator"}],"dateLastPublishedSixHr":"","promoImage":{"id":107122548,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107122548-Thumbnail_Digital_Originals_Italy_Clean.jpg?v=1663806348","__typename":"infographic"},"duration":408,"__typename":"cnbcvideo"},{"type":"InsertNativeUnit"},{"id":107121863,"brand":"cnbc","type":"cnbcnewsstory","url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F22\u002Fitalian-election-italy-turns-to-the-right-with-fdis-georgia-meloni.html","native":false,"datePublished":"2022-09-22T07:08:39+0000","coverageEndDate":null,"contentClassification":[],"title":"The far-right is expected to win Italy's election in Rome's biggest political shift for decades","headline":"The far-right is expected to win Italy's election in Rome's biggest political shift for decades","premium":false,"section":{"eyebrow":"Europe Politics","type":"franchise","url":"https:\u002F\u002Fwww.cnbc.com\u002Feurope-politics\u002F","subType":"section","__typename":"franchise"},"author":[{"id":47723405,"name":"Holly Ellyatt","url":"https:\u002F\u002Fwww.cnbc.com\u002Fholly-ellyatt\u002F","__typename":"creator"}],"dateLastPublishedSixHr":"","promoImage":{"id":105028155,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F105028155-GettyImages-924068802.jpg?v=1663830519","__typename":"infographic"},"__typename":"cnbcnewsstory"},{"id":107123979,"brand":"cnbc","type":"cnbcnewsstory","url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F24\u002Ffeared-stock-market-bottom-retest-is-now-underway.html","native":false,"datePublished":"2022-09-24T13:02:22+0000","coverageEndDate":null,"contentClassification":["premium"],"title":"Feared stock market bottom retest is now underway","headline":"Feared stock market bottom retest is now underway","premium":true,"section":{"eyebrow":"Santoli on Stocks","type":"franchise","url":"https:\u002F\u002Fwww.cnbc.com\u002Fpro\u002Fsantoli-on-stocks\u002F","subType":"section","__typename":"franchise"},"author":[{"id":103097040,"name":"Michael Santoli","url":"https:\u002F\u002Fwww.cnbc.com\u002Fmichael-santoli\u002F","__typename":"creator"}],"dateLastPublishedSixHr":"","promoImage":{"id":107123249,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107123249-16638844912022-09-22t220518z_655682612_rc2lmw9d7ov9_rtrmadp_0_usa-stocks.jpeg?v=1664024542","__typename":"infographic"},"__typename":"cnbcnewsstory"},{"id":107122995,"brand":"cnbc","type":"cnbcnewsstory","url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F24\u002Fnew-york-now-no-1-port-in-us-as-sea-change-in-trade-hits-west-coast.html","native":false,"datePublished":"2022-09-24T13:17:32+0000","coverageEndDate":null,"contentClassification":[],"title":"New York is now the nation's busiest port in a historic tipping point for U.S.-bound trade","headline":"New York is now the nation's busiest port in a historic tipping point for U.S.-bound trade","premium":false,"section":{"eyebrow":"State of Freight","type":"franchise","url":"https:\u002F\u002Fwww.cnbc.com\u002Fstate-of-freight\u002F","subType":"special_report","__typename":"franchise"},"author":[{"id":39152221,"name":"Lori Ann LaRocco","url":"https:\u002F\u002Fwww.cnbc.com\u002Flori-ann-larocco\u002F","__typename":"creator"}],"dateLastPublishedSixHr":"","promoImage":{"id":106860144,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F106860144-1616773597702-gettyimages-1309169058-mg_0865_ship04_03252021.jpeg?v=1664025452","__typename":"infographic"},"__typename":"cnbcnewsstory"},{"id":107123978,"brand":"cnbc","type":"cnbcnewsstory","url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F24\u002Fliz-truss-britains-lurch-to-reaganomics-gets-thumbs-down-from-markets.html","native":false,"datePublished":"2022-09-24T08:38:35+0000","coverageEndDate":null,"contentClassification":[],"title":"Britain's lurch toward 'Reaganomics' gets a thumbs down from the markets","headline":"Britain's lurch toward 'Reaganomics' gets a thumbs down from the markets","premium":false,"section":{"eyebrow":"Europe Markets","type":"franchise","url":"https:\u002F\u002Fwww.cnbc.com\u002Feurope-markets\u002F","subType":"section","__typename":"franchise"},"author":[{"id":100400877,"name":"Matt Clinch","url":"https:\u002F\u002Fwww.cnbc.com\u002Fmatt-clinch\u002F","__typename":"creator"}],"dateLastPublishedSixHr":"","promoImage":{"id":107114005,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107114005-16624671792022-09-05t121037z_993132917_rc20bw9ogitj_rtrmadp_0_britain-politics-leadership.jpeg?v=1664008715","__typename":"infographic"},"__typename":"cnbcnewsstory"},{"id":107121276,"brand":"makeit","type":"cnbcnewsstory","url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F24\u002Ftop-10-cities-with-the-best-pizzerias-worldwide-.html","native":false,"datePublished":"2022-09-24T16:00:01+0000","coverageEndDate":null,"contentClassification":[],"title":"These 10 cities have the best pizzerias in the world—see where New York lands on the list","headline":"These 10 cities have the best pizzerias in the world—see where New York lands on the list","premium":false,"section":{"eyebrow":"Food, Travel and Tech","type":"franchise","url":"https:\u002F\u002Fwww.cnbc.com\u002Fmake-it\u002Ffood-travel-and-tech\u002F","subType":"section","__typename":"franchise"},"author":[{"id":107096311,"name":"Celia Fernandez","url":"https:\u002F\u002Fwww.cnbc.com\u002Fcelia-fernandez\u002F","__typename":"creator"}],"dateLastPublishedSixHr":"3 hours ago","promoImage":{"id":107121306,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107121306-1663682946038-gettyimages-1258960420-dsc04579.jpeg?v=1664035201","__typename":"infographic"},"__typename":"cnbcnewsstory"},{"id":107081756,"brand":"makeit","type":"cnbcnewsstory","url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F24\u002Fhow-to-raise-resilient-kids-by-developing-their-brains-with-nurturing-routines-parenting-expert.html","native":false,"datePublished":"2022-09-24T14:17:18+0000","coverageEndDate":null,"contentClassification":[],"title":"Want to raise strong, resilient kids? Create 'nurturing routines,' says parenting expert—here’s how","headline":"Want to raise strong, resilient kids? Create 'nurturing routines,' says parenting expert—here’s how","premium":false,"section":{"eyebrow":"Raising Successful Kids","type":"franchise","url":"https:\u002F\u002Fwww.cnbc.com\u002Fmake-it\u002Fraising-successful-kids\u002F","subType":"section","__typename":"franchise"},"author":[{"id":107061641,"name":"Dana Suskind, Contributor","url":"https:\u002F\u002Fwww.cnbc.com\u002Fdr-dana-suskind\u002F","__typename":"creator"}],"dateLastPublishedSixHr":"","promoImage":{"id":107099199,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107099199-1659641806998-gettyimages-1328102254-dsc08361.jpeg?v=1664029038","__typename":"infographic"},"__typename":"cnbcnewsstory"},{"id":107123110,"brand":"cnbc","type":"cnbcnewsstory","url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F24\u002Fconvertible-sales-fall-in-us-amid-popularity-of-evs-suvs.html","native":false,"datePublished":"2022-09-24T12:00:01+0000","coverageEndDate":null,"contentClassification":[],"title":"Convertibles drive into the sunset as automakers invest in electric vehicles","headline":"Convertibles drive into the sunset as automakers invest in electric vehicles","premium":false,"section":{"eyebrow":"Autos","type":"franchise","url":"https:\u002F\u002Fwww.cnbc.com\u002Fautos\u002F","subType":"section","__typename":"franchise"},"author":[{"id":106023852,"name":"Michael Wayland","url":"https:\u002F\u002Fwww.cnbc.com\u002Fmichael-wayland\u002F","__typename":"creator"}],"dateLastPublishedSixHr":"","promoImage":{"id":106745090,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F106745090-1602742290875-gettyimages-125930696-17a401d3-cb8b-445e-a64a-8df9faaaab9f.jpeg?v=1664020801","__typename":"infographic"},"__typename":"cnbcnewsstory"},{"id":107112565,"brand":"cnbc","type":"cnbcnewsstory","url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F21\u002Fbig-businesses-trumpet-esg-credentials-scrutiny-is-on-the-rise.html","native":false,"datePublished":"2022-09-21T05:34:48+0000","coverageEndDate":null,"contentClassification":[],"title":"Big business likes to trumpet ESG credentials. But a 'greenwashing' reckoning could be on the horizon","headline":"Big business likes to trumpet ESG credentials. But a 'greenwashing' reckoning could be coming","premium":false,"section":{"eyebrow":"Sustainable Future","type":"franchise","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsustainable-future\u002F","subType":"special_report","__typename":"franchise"},"author":[{"id":104030533,"name":"Anmar Frangoul","url":"https:\u002F\u002Fwww.cnbc.com\u002Fanmar-frangoul-profile--cnbc\u002F","__typename":"creator"}],"dateLastPublishedSixHr":"","promoImage":{"id":107115250,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107115250-1662627296434-gettyimages-1090636062-AFP_1CS0F5.jpeg?v=1663738488","__typename":"infographic"},"__typename":"cnbcnewsstory"},{"id":107123003,"brand":"cnbc","type":"cnbcnewsstory","url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F23\u002Finside-the-250-million-penthouse-on-billionaires-row.html","native":false,"datePublished":"2022-09-23T17:51:02+0000","coverageEndDate":null,"contentClassification":[],"title":"Inside the $250 million penthouse on 'Billionaires' Row'","headline":"Inside the $250 million penthouse on 'Billionaires' Row'","premium":false,"section":{"eyebrow":"Real Estate","type":"franchise","url":"https:\u002F\u002Fwww.cnbc.com\u002Freal-estate\u002F","subType":"section","__typename":"franchise"},"author":[{"id":47445683,"name":"Robert Frank","url":"https:\u002F\u002Fwww.cnbc.com\u002Frobert-frank\u002F","__typename":"creator"}],"dateLastPublishedSixHr":"","promoImage":{"id":107123681,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107123681-CPT-PH-STAIRCASE-spans-floors-129-131-Photo-Credit-Evan-Joseph.jpg?v=1663955462","__typename":"infographic"},"__typename":"cnbcnewsstory"},{"id":107119965,"brand":"makeit","type":"cnbcnewsstory","url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F22\u002Fdiania-merriam-semi-retired-in-her-30s-now-she-works-7point5-hours-per-week.html","native":false,"datePublished":"2022-09-22T13:00:01+0000","coverageEndDate":null,"contentClassification":[],"title":"This 35-year-old has a net worth of $470,000 and is semi-retired—and she only works 7.5 hours a week","headline":"This 35-year-old has a net worth of $470,000 and is semi-retired—and she only works 7.5 hours a week","premium":false,"section":{"eyebrow":"Fired Up","type":"franchise","url":"https:\u002F\u002Fwww.cnbc.com\u002Ffired-up\u002F","subType":"section","__typename":"franchise"},"author":[{"id":106834928,"name":"Nicolas Vega","url":"https:\u002F\u002Fwww.cnbc.com\u002Fnicolas-vega\u002F","__typename":"creator"}],"dateLastPublishedSixHr":"","promoImage":{"id":107122091,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107122091-1663773479184-Diania_3.png?v=1663851601","__typename":"infographic"},"__typename":"cnbcnewsstory"},{"id":107123669,"brand":"cnbc","type":"cnbcnewsstory","url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F23\u002Ftech-stocks-worst-two-week-stretch-since-the-start-of-pandemic.html","native":false,"datePublished":"2022-09-23T20:37:39+0000","coverageEndDate":null,"contentClassification":[],"title":"Tech stocks just had their worst two-week stretch since the start of the pandemic","headline":"Tech stocks just had their worst two-week stretch since the start of the pandemic","premium":false,"section":{"eyebrow":"Tech","type":"franchise","url":"https:\u002F\u002Fwww.cnbc.com\u002Ftechnology\u002F","subType":"section","__typename":"franchise"},"author":[{"id":101750453,"name":"Ari Levy","url":"https:\u002F\u002Fwww.cnbc.com\u002Fari-levy\u002F","__typename":"creator"}],"dateLastPublishedSixHr":"","promoImage":{"id":103713991,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F103713991-GettyImages-537928502.jpg?v=1663965459","__typename":"infographic"},"__typename":"cnbcnewsstory"},{"id":107123402,"brand":"cnbc","type":"cnbcnewsstory","url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F23\u002Fbritish-pound-plunges-to-fresh-37-year-low-of-1point10-.html","native":false,"datePublished":"2022-09-23T10:31:38+0000","coverageEndDate":null,"contentClassification":[],"title":"British pound plunges, bonds sink after government announces tax cuts","headline":"British pound plunges, bonds sink after government announces tax cuts","premium":false,"section":{"eyebrow":"Markets","type":"franchise","url":"https:\u002F\u002Fwww.cnbc.com\u002Fmarkets\u002F","subType":"marketsection","__typename":"franchise"},"author":[{"id":107106382,"name":"Jenni Reid","url":"https:\u002F\u002Fwww.cnbc.com\u002Fjenni-reid\u002F","__typename":"creator"}],"dateLastPublishedSixHr":"","promoImage":{"id":106125846,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F106125846-1568288924889gettyimages-860933734.jpeg?v=1663929098","__typename":"infographic"},"__typename":"cnbcnewsstory"},{"id":107122123,"brand":"cnbc","type":"cnbcnewsstory","url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F24\u002Fquantum-investing-perils-and-promise-of-quantum-computing-are-nearing.html","native":false,"datePublished":"2022-09-24T12:56:22+0000","coverageEndDate":null,"contentClassification":["premium"],"title":"The perils and promise of quantum computing are nearing. Here are ways to invest","headline":"The perils and promise of quantum computing are nearing. Here are ways to invest","premium":true,"section":{"eyebrow":"Deep Dives","type":"franchise","url":"https:\u002F\u002Fwww.cnbc.com\u002Fpro\u002Fdeep-dives\u002F","subType":"section","__typename":"franchise"},"author":[{"id":105143350,"name":"Hugh Son","url":"https:\u002F\u002Fwww.cnbc.com\u002Fhugh-son\u002F","__typename":"creator"}],"dateLastPublishedSixHr":"","promoImage":{"id":106198807,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F106198807-1571848425507handoutgooglepichaiquantum.jpg?v=1664024182","__typename":"infographic"},"__typename":"cnbcnewsstory"},{"id":107061018,"brand":"cnbc","type":"cnbcnewsstory","url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F23\u002Felon-musk-direct-reports-at-tesla.html","native":false,"datePublished":"2022-09-23T19:04:13+0000","coverageEndDate":null,"contentClassification":[],"title":"Elon Musk has more than 20 direct reports at Tesla — here are the ones we know about","headline":"Elon Musk has more than 20 direct reports at Tesla — here are the ones we know about","premium":false,"section":{"eyebrow":"Tech","type":"franchise","url":"https:\u002F\u002Fwww.cnbc.com\u002Ftechnology\u002F","subType":"section","__typename":"franchise"},"author":[{"id":104520695,"name":"Lora Kolodny","url":"https:\u002F\u002Fwww.cnbc.com\u002Flora-kolodny\u002F","__typename":"creator"},{"id":107062607,"name":"Gabriel Cortés","url":"https:\u002F\u002Fwww.cnbc.com\u002Fgabriel-cortes-bio\u002F","__typename":"creator"}],"dateLastPublishedSixHr":"","promoImage":{"id":105530349,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F105530349-1540479216571rtx6em9q.jpg?v=1663959853","__typename":"infographic"},"__typename":"cnbcnewsstory"},{"id":107123383,"brand":"cnbc","type":"cnbcnewsstory","url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F23\u002Fmass-protests-in-iran-is-the-regimes-biggest-challenge-in-years.html","native":false,"datePublished":"2022-09-23T14:04:19+0000","coverageEndDate":null,"contentClassification":[],"title":"Mass protests in Iran, sparked by woman's death in police custody, are the regime's biggest challenge in years ","headline":"Protests in Iran, sparked by woman's death in police custody, are regime's biggest challenge in years","premium":false,"section":{"eyebrow":"World News","type":"franchise","url":"https:\u002F\u002Fwww.cnbc.com\u002Fworld-news\u002F","subType":"section","__typename":"franchise"},"author":[{"id":104849397,"name":"Natasha Turak","url":"https:\u002F\u002Fwww.cnbc.com\u002Fnatasha-turak\u002F","__typename":"creator"}],"dateLastPublishedSixHr":"","promoImage":{"id":107123490,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107123490-1663938696613-gettyimages-1243387458-AFP_32JR9ZT.jpeg?v=1663941859","__typename":"infographic"},"__typename":"cnbcnewsstory"},{"id":107123361,"brand":"cnbc","type":"cnbcnewsstory","url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F23\u002Fuk-government-dishes-out-tax-cuts-as-country-braces-for-recession.html","native":false,"datePublished":"2022-09-23T08:53:39+0000","coverageEndDate":null,"contentClassification":[],"title":"UK government dishes out extensive tax cuts as country braces for recession","headline":"UK government dishes out extensive tax cuts as country braces for recession","premium":false,"section":{"eyebrow":"Europe Economy","type":"franchise","url":"https:\u002F\u002Fwww.cnbc.com\u002Feurope-economy\u002F","subType":"section","__typename":"franchise"},"author":[{"id":107106382,"name":"Jenni Reid","url":"https:\u002F\u002Fwww.cnbc.com\u002Fjenni-reid\u002F","__typename":"creator"}],"dateLastPublishedSixHr":"","promoImage":{"id":107122365,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107122365-16637880092022-09-21t191810z_1236563986_rc2ulw9a30wh_rtrmadp_0_un-assembly.jpeg?v=1663923219","__typename":"infographic"},"__typename":"cnbcnewsstory"},{"id":107123380,"brand":"cnbc","type":"cnbcvideo","url":"https:\u002F\u002Fwww.cnbc.com\u002Fvideo\u002F2022\u002F09\u002F23\u002Ffinal-italian-polls-show-right-wing-coalition-to-win-more-than-45percent-of-national-vote.html","native":false,"datePublished":"2022-09-23T10:08:42+0000","coverageEndDate":null,"contentClassification":[],"title":"Final Italian polls show right-wing coalition to win more than 45% of national vote","headline":"Final Italian polls show right-wing coalition to win more than 45% of national vote","premium":false,"section":{"eyebrow":"Squawk Box Europe","type":"franchise","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsquawk-box-europe\u002F","subType":"news_show","__typename":"franchise"},"author":[],"dateLastPublishedSixHr":"","promoImage":{"id":107123388,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107123388-6ED4-REQ-092322-ITALYELEXRIGHTROME.jpg?v=1663927722","__typename":"infographic"},"duration":134,"__typename":"cnbcvideo"}],"__typename":"riverPlus"},"__typename":"module"}],"__typename":"column"},{"span":"3","editable":false,"modules":[{"name":"adBoxRail","source":"right","canChangeLayout":false,"canChangeSource":false,"serverRenderPolicy":"client","attributes":{"placement":"right"},"options":{},"data":{"__typename":"asset"},"__typename":"module"}],"__typename":"column"}],"__typename":"layout"},{"editable":false,"columns":[{"span":"12","editable":false,"modules":[{"name":"marketsModule","source":"102","canChangeLayout":false,"canChangeSource":false,"serverRenderPolicy":null,"attributes":{"sponsorLogoURL":"dist\u002F6666ac3191776af4dd3a97f772e6709a.jpgv","pollRate":10000},"options":{},"data":{"id":102,"relatedContent":[{"widget":{"widgetType":"market_movers_cnbc","widgetParams":{"exchange_name":"S&P,NASDAQ,DOW,EUR,ASIA,COVID19","exchange_symbol":"SP500,NASDAQ100,DOW30,EUR,ASIA,COVID19,KNEX","count":"5","rank_property":"changePct","rank_order":"Both","top_header_label":"TOP","bottom_header_label":"BOTTOM","widgetlabel":"Market MOVERS","widgethref":"\u002Fus-market-movers\u002F"}},"__typename":"webservice"}],"assets":[{"id":107123661,"headline":"Stocks could continue skittish trading until interest rate move settles","slug":"Stocks could continue skittish trading until interest rate move calms down","url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F23\u002Fstocks-could-continue-skittish-trading-until-interest-rate-move-calms-down.html","datePublished":"2022-09-23T21:19:18+0000","coverageEndDate":null,"contentClassification":["premium"],"dateLastPublishedSixHr":"","type":"cnbcnewsstory","author":[{"id":15987964,"name":"Patti Domm","url":"https:\u002F\u002Fwww.cnbc.com\u002Fpatti-domm\u002F","__typename":"creator"}],"title":"Stocks could continue skittish trading until interest rate move calms down","premium":true,"__typename":"cnbcnewsstory"},{"id":107123230,"headline":"Dow drops nearly 500 points to close at new low for 2022 on rising recession fears","slug":"Dow drops nearly 500 points to close at new low for 2022 on rising recession fears","url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F22\u002Ffutures-inch-higher-following-another-day-of-losses-after-fed-rate-hike-sell-offs.html","datePublished":"2022-09-22T22:10:10+0000","coverageEndDate":"2022-09-23T20:00:08+0000","contentClassification":[],"dateLastPublishedSixHr":"","type":"live_story","author":[{"id":106822396,"name":"Samantha Subin","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsamantha-subin\u002F","__typename":"creator"},{"id":106557494,"name":"Alex Harring","url":"https:\u002F\u002Fwww.cnbc.com\u002Falex-harring\u002F","__typename":"creator"}],"title":"Dow drops nearly 500 points to close at new low for 2022 on rising recession fears","premium":false,"__typename":"live_story"},{"id":107123364,"headline":"2-year Treasury tops 4.2%, a 15-year high as Fed continues to jolt short-term rates higher","slug":"2-year Treasury tops 4.2%, a 15-year high as Fed continues to jolt short-term rates higher","url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F23\u002F10-year-treasury-yield-falls-as-markets-digest-fed-rate-hike.html","datePublished":"2022-09-23T08:36:11+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"","type":"cnbcnewsstory","author":[{"id":106822396,"name":"Samantha Subin","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsamantha-subin\u002F","__typename":"creator"},{"id":107102341,"name":"Sophie Kiderlin","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsophie-kiderlin\u002F","__typename":"creator"}],"title":"2-year Treasury tops 4.2%, a 15-year high as Fed continues to jolt short-term rates higher","premium":false,"__typename":"cnbcnewsstory"},{"id":107123514,"headline":"From the Fed to Europe's currency crisis, here's what's behind this selloff in financial markets","slug":"From the Fed to Europe's currency crisis, here's what's behind this selloff in financial markets","url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F23\u002Ffrom-the-fed-to-europes-currency-crisis-heres-whats-behind-this-selloff-in-financial-markets.html","datePublished":"2022-09-23T15:40:22+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"","type":"cnbcnewsstory","author":[{"id":15987964,"name":"Patti Domm","url":"https:\u002F\u002Fwww.cnbc.com\u002Fpatti-domm\u002F","__typename":"creator"}],"title":"From the Fed to Europe's currency crisis, here's what's behind this selloff in financial markets","premium":false,"__typename":"cnbcnewsstory"}],"__typename":"marketsModule"},"__typename":"module"},{"name":"adMidResponsive","source":null,"canChangeLayout":false,"canChangeSource":false,"serverRenderPolicy":"client","attributes":{},"options":null,"data":{"__typename":"asset"},"__typename":"module"}],"__typename":"column"}],"__typename":"layout"},{"editable":false,"columns":[{"span":"full","editable":false,"modules":[{"name":"videoBreakerFeatured","source":"105237801","canChangeLayout":false,"canChangeSource":false,"serverRenderPolicy":null,"attributes":{"mode":"lightMode","headerTitle":"CNBC TV","numberOfPlaylistItems":3,"fwPlayerConfig":{"advertising":{"freewheel":{"sectionid":"cnbc_inline_homepage_vod"}}},"fwPlayerConfigWithXfinity":{"advertising":{"freewheel":{"sectionid":"cnbc_xfinitycobrand_cnbc_homepage_vod"}}}},"options":{"page":1,"pageSize":3,"include":["cnbcvideo"]},"data":{"id":105237801,"url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20TV%20MODULE","more":[],"assets":[{"id":107122305,"contentClassification":[],"type":"cnbcvideo","title":"How these startups are fixing water waste on farms","seoTitle":"How these startups are fixing water waste on farms","premium":false,"native":false,"headline":"How these startups are fixing water waste on farms","shorterHeadline":"How these startups are fixing water waste on farms","tagName":null,"tagNameFormatted":"NA","tagNameFormattedFull":"NA","slug":"Tech helping the drought video 220921 EVERS","url":"https:\u002F\u002Fwww.cnbc.com\u002Fvideo\u002F2022\u002F09\u002F22\u002Fhow-these-startups-are-fixing-water-waste-on-farms.html","description":"The western U.S. is experiencing a megadrought so severe, it is the driest two decades in at least 1,200 years. And no sector has felt the impact more than agriculture, which takes up about 70% of the world's fresh water. With water resources becoming more scarce, several companies are working to improve irrigation efficiency and help sustain food production.","author":[{"id":104624157,"name":"Andrew Evers","url":"https:\u002F\u002Fwww.cnbc.com\u002Fandrew-evers\u002F","tagName":"Andrew Evers","tagNameFormatted":"andrew evers","__typename":"creator"}],"sourceOrganization":[{"id":80000022,"slug":"CNBC US Source","tagName":"CNBC US Source","tagNameFormatted":"cnbc us source","tagNameFormattedFull":"cnbc us source","__typename":"source"}],"projectTeamContent":[{"id":105326775,"headline":null,"tagName":"CNBC Digital Original Video ","tagNameFormatted":"cnbc digital or","tagNameFormattedFull":"cnbc digital original video","__typename":"team"},{"id":105326781,"headline":"Tech Digital Original Video","tagName":"Tech Digital Original Video","tagNameFormatted":"tech digital or","tagNameFormattedFull":"tech digital original video","__typename":"team"}],"relatedTags":[{"id":105067437,"headline":null,"tagName":"Climate","tagNameFormatted":"climate","tagNameFormattedFull":"climate","type":"tag","__typename":"tag"},{"id":105056563,"headline":null,"tagName":"Technology","tagNameFormatted":"technology","tagNameFormattedFull":"technology","type":"tag","__typename":"tag"},{"id":105056940,"headline":null,"tagName":"Agriculture","tagNameFormatted":"agriculture","tagNameFormattedFull":"agriculture","type":"tag","__typename":"tag"},{"id":105081691,"headline":null,"tagName":"Water use","tagNameFormatted":"water use","tagNameFormattedFull":"water use","type":"tag","__typename":"tag"},{"id":105765375,"headline":null,"tagName":"Jain Irrigation Systems Ltd","tagNameFormatted":"jain irrigation","tagNameFormattedFull":"jain irrigation systems ltd","type":"company","__typename":"tag"},{"id":105110462,"headline":null,"tagName":"Water conservation and preservation","tagNameFormatted":"water conservat","tagNameFormattedFull":"water conservation and preservation","type":"tag","__typename":"tag"},{"id":105175227,"headline":null,"tagName":"Agriculture support services","tagNameFormatted":"agriculture sup","tagNameFormattedFull":"agriculture support services","type":"tag","__typename":"tag"},{"id":105089652,"headline":null,"tagName":"Agriculture regulation","tagNameFormatted":"agriculture reg","tagNameFormattedFull":"agriculture regulation","type":"tag","__typename":"tag"},{"id":105229731,"headline":null,"tagName":"Agricultural science","tagNameFormatted":"agricultural sc","tagNameFormattedFull":"agricultural science","type":"tag","__typename":"tag"},{"id":105809691,"headline":null,"tagName":"Agricultural land use","tagNameFormatted":"agricultural la","tagNameFormattedFull":"agricultural land use","type":"tag","__typename":"tag"}],"relatedTagsFilteredFormatted":"climate|technology|agriculture|water use|jain irrigation|water conservat|agriculture sup|agriculture reg|agricultural sc|agricultural la","relatedTagsFilteredFormattedFull":"climate|technology|agriculture|water use|jain irrigation systems ltd|water conservation and preservation|agriculture support services|agriculture regulation|agricultural science|agricultural land use","additionalSectionContent":[{"id":105368872,"headline":"CNBC Digital Original Video","tagName":"CNBC Digital Original Video","tagNameFormatted":"cnbc digital or","tagNameFormattedFull":"cnbc digital original video","type":"franchise","__typename":"tag"},{"id":105368888,"headline":"Tech Digital Original Video","tagName":"Tech Digital Original Video","tagNameFormatted":"tech digital or","tagNameFormattedFull":"tech digital original video","type":"franchise","__typename":"tag"},{"id":19854910,"headline":"Tech","tagName":"Technology","tagNameFormatted":"technology","tagNameFormattedFull":"technology","type":"franchise","__typename":"tag"},{"id":33198741,"headline":"Agriculture","tagName":"Agriculture","tagNameFormatted":"agriculture","tagNameFormattedFull":"agriculture","type":"franchise","__typename":"tag"},{"id":106915561,"headline":"Clean Tech","tagName":"Clean Tech","tagNameFormatted":"clean tech","tagNameFormattedFull":"clean tech","type":"franchise","__typename":"tag"}],"additionalSectionContentFormatted":"cnbc digital or|tech digital or|technology|agriculture|clean tech","additionalSectionContentFormattedFull":"cnbc digital original video|tech digital original video|technology|agriculture|clean tech","relatedVideoContent":[],"datePublished":"2022-09-22T11:59:01+0000","dateLastPublished":"2022-09-22T19:41:01+0000","sectionHierarchy":[{"id":19854910,"tagName":"Technology","tagNameFormatted":"technology","tagNameFormattedFull":"technology","order":2,"__typename":"sectionHierarchy"},{"id":106915556,"tagName":"Climate","tagNameFormatted":"climate","tagNameFormattedFull":"climate","order":1,"__typename":"sectionHierarchy"}],"sectionHierarchyFormatted":"technology|climate","sectionHierarchyFormattedFull":"technology|climate","creatorOverwrite":null,"projectContent":[],"promoImage":{"id":107122460,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107122460-1663795488775-gettyimages-863532222-171009_GBER_PHT13.jpeg?v=1663847941","__typename":"infographic"},"image":null,"section":{"headline":"Climate","id":106915556,"subType":"section","tagName":"Climate","tagNameFormatted":"climate","tagNameFormattedFull":"climate","title":"Climate","url":"https:\u002F\u002Fwww.cnbc.com\u002Fclimate\u002F","__typename":"franchise"},"projectTeamContentFormatted":"cnbc digital or|tech digital or","projectTeamContentFormattedFull":"cnbc digital original video|tech digital original video","projectContentFormatted":"NA","projectContentFormattedFull":"NA","creatorOverwriteFormatted":"NA","sourceOrganizationFormatted":"cnbc us source","sourceOrganizationFormattedFull":"cnbc us source","authorFormatted":"andrew evers","authorFormattedFull":"andrew evers","dateFirstPublished":"2022-09-22T11:59:01+0000","subDomain":"https:\u002F\u002Fwww.cnbc.com","liveURL":"\u002Fvideo\u002F2022\u002F09\u002F22\u002Fhow-these-startups-are-fixing-water-waste-on-farms.html","pageName":"7000264630|video\u002F2022\u002F09\u002F22\u002Fhow-these-startups-are-fixing-water-waste-on-farms","shortDatePublished":"9\u002F22\u002F2022","shortDateLastPublished":"9\u002F22\u002F2022","shortDateFirstPublished":"9\u002F22\u002F2022","airDate":"9\u002F22\u002F2022","brand":"cnbc","comScoreC2":"1000004","comScoreC3":"*null","comScoreC4":"CNBC.com VOD","comScoreC6":"*null","dayPart":"Others","duration":957,"network":"CNBC","platform":"web","playbackURL":"\u002F\u002Fcnbcmbr-vh.akamaihd.net\u002Fi\u002Fmp4\u002FVCPS\u002FY2022\u002FM09D22\u002F7000264824\u002F1663789718585-TechhelpingthedroughtDOTCOM_SRT_SRT_SRT_SRT_MBR_,0240,0300,0500,0700,0900,1300,1700,4500,.mp4.csmil\u002Fmaster.m3u8","playerConfig":{"autoPlay":false,"workflow":"VOD","sticky":true,"endCard":{"timer":5},"embedURL":"https:\u002F\u002Fplayer.cnbc.com\u002Fp\u002FgZWlPC\u002Fcnbc_global?playertype=synd&byGuid={VID}","hlshtml":true,"primary":"html5","share":true,"parsely":true,"playbackRateControls":false,"fwassetId":"cnbc_7000264630","mediaid":"cnbc_7000264630","key":"+9o3ihbMIU8\u002FixFry35xlHnkQ9tikKg9TU0io1QbWXfpeR0q","playList":false,"sharing":{"sites":["facebook","twitter","linkedin"],"link":"https:\u002F\u002Fwww.cnbc.com\u002Fvideo\u002F2022\u002F09\u002F22\u002Fhow-these-startups-are-fixing-water-waste-on-farms.html","code":"\u003Ciframe width=560 height=349 src=https:\u002F\u002Fplayer.cnbc.com\u002Fp\u002FgZWlPC\u002Fcnbc_global?playertype=synd&byGuid=7000264630 frameborder=0 scrolling=no allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen \u003E\u003C\u002Fiframe\u003E"},"mobileSFID":"7003948","IE11Profile":"169843:nbcu_web_flash_cs_moat_https","advertising":{"client":"freewheel","creativeTimeout":4000,"requestTimeout":4000,"vpaidcontrols":true,"freewheel":{"sectionid":"cnbc_inline_vod","networkid":169843,"profileid":"169843:nbcu_mobileweb_js_cs_moat_https","adManagerURL":"https:\u002F\u002Fmssl.fwmrm.net\u002Flibs\u002Fadm\u002F6.35.0\u002FAdManager.js","serverid":"\u002F\u002F29773.v.fwmrm.net\u002Fad\u002Fp\u002F1","sfid":"7006049","afid":"137705375","custom":{"metr":"1023","sfid":"7006049","afid":"137705375"}},"schedule":{"adbreak":{"offset":"pre","tag":"placeholder_preroll"}}},"analytics":{"onSite":true,"omniture":{"playername":"JW_Player","playerversion":"Universal","daypart":"Others","assetstatus":"Unrestricted","videoprogram":{"live":"iconic"},"videocontent":"Linear","title":"{partnername} Vod","guid":"{partnername} Vod","share":{"linksharepev2":"Video Control Rack","providerepev2":"Share","eVar15":"Video:Vod:","linktrknav":"video:share:Vod:","eVar14":": Share Published"}}},"embed":"\u003Ciframe width=560 height=349 src=https:\u002F\u002Fplayer.cnbc.com\u002Fp\u002FgZWlPC\u002Fcnbc_global?playertype=synd&byGuid=7000264630 frameborder=0 scrolling=no allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen \u003E\u003C\u002Fiframe\u003E"},"playerTech":"JW Player","subType":"digital_original","thumbnail":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107122460-1663795488775-gettyimages-863532222-171009_GBER_PHT13.jpeg?v=1663847941","usageRule":"NA","vcpsId":7000264630,"videoStatus":"Unrestricted","uploadDate":"2022-09-21T18:42:53+0000","__typename":"cnbcvideo"},{"id":107116921,"contentClassification":["applenewsautoplay"],"type":"cnbcvideo","title":"Why layoffs may be on the horizon in the U.S.","seoTitle":"Why layoffs may be on the horizon in the U.S.","premium":false,"native":false,"headline":"Why layoffs may be on the horizon in the U.S.","shorterHeadline":"Why layoffs may be on the horizon in the U.S.","tagName":null,"tagNameFormatted":"NA","tagNameFormattedFull":"NA","slug":"MP video recession layoffs 220922 MILLER WATERS","url":"https:\u002F\u002Fwww.cnbc.com\u002Fvideo\u002F2022\u002F09\u002F20\u002Fwhy-layoffs-may-be-on-the-horizon-in-the-us.html","description":"From red-hot inflation to a strong jobs market, and all the negative GDP in between, economists are divided on the health of the U.S. economy. A top concern for Americans: Are there layoffs on the horizon? Economists break down the data and economic indicator complexities brought upon by the Covid pandemic and the war in Europe. Watch the video above to learn more.","author":[{"id":105583027,"name":"Andrea Miller","url":"https:\u002F\u002Fwww.cnbc.com\u002Fandrea-miller\u002F","tagName":"Andrea Miller","tagNameFormatted":"andrea miller","__typename":"creator"},{"id":106940266,"name":"Carlos Waters","url":"https:\u002F\u002Fwww.cnbc.com\u002Fcarlos-waters\u002F","tagName":"Carlos Waters","tagNameFormatted":"carlos waters","__typename":"creator"},{"id":107084509,"name":"Christina Locopo","url":"https:\u002F\u002Fwww.cnbc.com\u002Fchristina-locopo\u002F","tagName":"Christina Locopo","tagNameFormatted":"christina locop","__typename":"creator"},{"id":106116848,"name":"Lindsey Jacobson","url":"https:\u002F\u002Fwww.cnbc.com\u002Flindsey-jacobson\u002F","tagName":"Lindsey Jacobson","tagNameFormatted":"lindsey jacobso","__typename":"creator"}],"sourceOrganization":[{"id":80000022,"slug":"CNBC US Source","tagName":"CNBC US Source","tagNameFormatted":"cnbc us source","tagNameFormattedFull":"cnbc us source","__typename":"source"}],"projectTeamContent":[{"id":105326785,"headline":"Markets & Politics Digital Original Video ","tagName":"Markets and Politics Digital Original Video ","tagNameFormatted":"markets and pol","tagNameFormattedFull":"markets and politics digital original video","__typename":"team"},{"id":105326775,"headline":null,"tagName":"CNBC Digital Original Video ","tagNameFormatted":"cnbc digital or","tagNameFormattedFull":"cnbc digital original video","__typename":"team"}],"relatedTags":[{"id":105070229,"headline":null,"tagName":"Recessions and depressions","tagNameFormatted":"recessions and ","tagNameFormattedFull":"recessions and depressions","type":"tag","__typename":"tag"},{"id":106366993,"headline":null,"tagName":"Coronavirus","tagNameFormatted":"coronavirus","tagNameFormattedFull":"coronavirus","type":"tag","__typename":"tag"},{"id":106442657,"headline":null,"tagName":"COVID-19","tagNameFormatted":"covid19","tagNameFormattedFull":"covid19","type":"tag","__typename":"tag"},{"id":105558981,"headline":null,"tagName":"Pandemics","tagNameFormatted":"pandemics","tagNameFormattedFull":"pandemics","type":"tag","__typename":"tag"},{"id":106504867,"headline":null,"tagName":"War","tagNameFormatted":"war","tagNameFormattedFull":"war","type":"tag","__typename":"tag"},{"id":107017320,"headline":null,"tagName":"Russia-Ukraine Crisis","tagNameFormatted":"russiaukraine c","tagNameFormattedFull":"russiaukraine crisis","type":"tag","__typename":"tag"},{"id":105061004,"headline":null,"tagName":"Shipping","tagNameFormatted":"shipping","tagNameFormattedFull":"shipping","type":"tag","__typename":"tag"},{"id":105877220,"headline":null,"tagName":"Janet Yellen","tagNameFormatted":"janet yellen","tagNameFormattedFull":"janet yellen","type":"tag","__typename":"tag"},{"id":105470513,"headline":null,"tagName":"Jerome Powell","tagNameFormatted":"jerome powell","tagNameFormattedFull":"jerome powell","type":"tag","__typename":"tag"},{"id":105161789,"headline":null,"tagName":"Mark Zandi","tagNameFormatted":"mark zandi","tagNameFormattedFull":"mark zandi","type":"tag","__typename":"tag"},{"id":106499196,"headline":null,"tagName":"Economist","tagNameFormatted":"economist","tagNameFormattedFull":"economist","type":"tag","__typename":"tag"},{"id":105171496,"headline":null,"tagName":"Leading economic indicators","tagNameFormatted":"leading economi","tagNameFormattedFull":"leading economic indicators","type":"tag","__typename":"tag"},{"id":105062178,"headline":null,"tagName":"Economic outlook","tagNameFormatted":"economic outloo","tagNameFormattedFull":"economic outlook","type":"tag","__typename":"tag"},{"id":105065610,"headline":null,"tagName":"Economic policy","tagNameFormatted":"economic policy","tagNameFormattedFull":"economic policy","type":"tag","__typename":"tag"},{"id":105070429,"headline":null,"tagName":"Economic growth","tagNameFormatted":"economic growth","tagNameFormattedFull":"economic growth","type":"tag","__typename":"tag"},{"id":105061757,"headline":null,"tagName":"Wages and salaries","tagNameFormatted":"wages and salar","tagNameFormattedFull":"wages and salaries","type":"tag","__typename":"tag"},{"id":105056637,"headline":null,"tagName":"Restaurants","tagNameFormatted":"restaurants","tagNameFormattedFull":"restaurants","type":"tag","__typename":"tag"},{"id":105056562,"headline":null,"tagName":"Travel","tagNameFormatted":"travel","tagNameFormattedFull":"travel","type":"tag","__typename":"tag"},{"id":105130758,"headline":null,"tagName":"Hospitality and leisure industry","tagNameFormatted":"hospitality and","tagNameFormattedFull":"hospitality and leisure industry","type":"tag","__typename":"tag"},{"id":105289563,"headline":null,"tagName":"Losing a job","tagNameFormatted":"losing a job","tagNameFormattedFull":"losing a job","type":"tag","__typename":"tag"},{"id":105056608,"headline":null,"tagName":"Unemployment","tagNameFormatted":"unemployment","tagNameFormattedFull":"unemployment","type":"tag","__typename":"tag"},{"id":105110075,"headline":null,"tagName":"Job hunting","tagNameFormatted":"job hunting","tagNameFormattedFull":"job hunting","type":"tag","__typename":"tag"},{"id":105089670,"headline":null,"tagName":"Changing jobs","tagNameFormatted":"changing jobs","tagNameFormattedFull":"changing jobs","type":"tag","__typename":"tag"},{"id":105056680,"headline":null,"tagName":"Layoffs","tagNameFormatted":"layoffs","tagNameFormattedFull":"layoffs","type":"tag","__typename":"tag"},{"id":105060537,"headline":null,"tagName":"Labor economy","tagNameFormatted":"labor economy","tagNameFormattedFull":"labor economy","type":"tag","__typename":"tag"},{"id":105056686,"headline":null,"tagName":"Inflation","tagNameFormatted":"inflation","tagNameFormattedFull":"inflation","type":"tag","__typename":"tag"},{"id":105108975,"headline":null,"tagName":"Monetary policy","tagNameFormatted":"monetary policy","tagNameFormattedFull":"monetary policy","type":"tag","__typename":"tag"},{"id":105056788,"headline":null,"tagName":"Federal Reserve System","tagNameFormatted":"federal reserve","tagNameFormattedFull":"federal reserve system","type":"organization","__typename":"tag"},{"id":105056584,"headline":null,"tagName":"Interest Rates","tagNameFormatted":"interest rates","tagNameFormattedFull":"interest rates","type":"tag","__typename":"tag"},{"id":105268775,"headline":null,"tagName":"Gross domestic product","tagNameFormatted":"gross domestic ","tagNameFormattedFull":"gross domestic product","type":"tag","__typename":"tag"},{"id":105056924,"headline":null,"tagName":"Jobs","tagNameFormatted":"jobs","tagNameFormattedFull":"jobs","type":"tag","__typename":"tag"},{"id":105059409,"headline":null,"tagName":"U.S. Economy","tagNameFormatted":"us economy","tagNameFormattedFull":"us economy","type":"tag","__typename":"tag"},{"id":105056897,"headline":null,"tagName":"Economy","tagNameFormatted":"economy","tagNameFormattedFull":"economy","type":"tag","__typename":"tag"},{"id":106965244,"headline":null,"tagName":"Video First","tagNameFormatted":"video first","tagNameFormattedFull":"video first","type":"tag","__typename":"tag"},{"id":105056716,"headline":null,"tagName":"Markets","tagNameFormatted":"markets","tagNameFormattedFull":"markets","type":"tag","__typename":"tag"},{"id":105056648,"headline":null,"tagName":"Politics","tagNameFormatted":"politics","tagNameFormattedFull":"politics","type":"tag","__typename":"tag"},{"id":105062932,"headline":null,"tagName":"Housing vacancies and homeownership","tagNameFormatted":"housing vacanci","tagNameFormattedFull":"housing vacancies and homeownership","type":"tag","__typename":"tag"}],"relatedTagsFilteredFormatted":"recessions and |coronavirus|covid19|pandemics|war|russiaukraine c|shipping|janet yellen|jerome powell|mark zandi|economist|leading economi|economic outloo|economic policy|economic growth|wages and salar|restaurants|travel|hospitality and|losing a job|unemployment|job hunting|changing jobs|layoffs|labor economy|inflation|monetary policy|federal reserve|interest rates|gross domestic |jobs|us economy|economy|video first|markets|politics|cnbc digital or|markets and pol|housing vacanci","relatedTagsFilteredFormattedFull":"recessions and depressions|coronavirus|covid19|pandemics|war|russiaukraine crisis|shipping|janet yellen|jerome powell|mark zandi|economist|leading economic indicators|economic outlook|economic policy|economic growth|wages and salaries|restaurants|travel|hospitality and leisure industry|losing a job|unemployment|job hunting|changing jobs|layoffs|labor economy|inflation|monetary policy|federal reserve system|interest rates|gross domestic product|jobs|us economy|economy|video first|markets|politics|cnbc digital original video|markets and politics digital original video|housing vacancies and homeownership","additionalSectionContent":[{"id":105368872,"headline":"CNBC Digital Original Video","tagName":"CNBC Digital Original Video","tagNameFormatted":"cnbc digital or","tagNameFormattedFull":"cnbc digital original video","type":"franchise","__typename":"tag"},{"id":102,"headline":"Markets","tagName":"Markets","tagNameFormatted":"markets","tagNameFormattedFull":"markets","type":"franchise","__typename":"tag"},{"id":10000113,"headline":"Politics","tagName":"Politics","tagNameFormatted":"politics","tagNameFormattedFull":"politics","type":"franchise","__typename":"tag"},{"id":107102864,"headline":"Fed Notes","tagName":"Fed Notes","tagNameFormatted":"fed notes","tagNameFormattedFull":"fed notes","type":"franchise","__typename":"tag"},{"id":10000795,"headline":"Recession","tagName":"Recession","tagNameFormatted":"recession","tagNameFormattedFull":"recession","type":"franchise","__typename":"tag"},{"id":10000689,"headline":"Layoffs","tagName":"Layoffs","tagNameFormatted":"layoffs","tagNameFormattedFull":"layoffs","type":"franchise","__typename":"tag"},{"id":20910258,"headline":"Economy","tagName":"Economy","tagNameFormatted":"economy","tagNameFormattedFull":"economy","type":"franchise","__typename":"tag"},{"id":100010507,"headline":"US Economy","tagName":"US Economy","tagNameFormatted":"us economy","tagNameFormattedFull":"us economy","type":"franchise","__typename":"tag"},{"id":10000828,"headline":"Economic Forecasting","tagName":"Economic Forecasting","tagNameFormatted":"economic foreca","tagNameFormattedFull":"economic forecasting","type":"franchise","__typename":"tag"},{"id":10000833,"headline":"Economic Theory","tagName":"Economic Theory","tagNameFormatted":"economic theory","tagNameFormattedFull":"economic theory","type":"franchise","__typename":"tag"},{"id":10000829,"headline":"Economic Measures","tagName":"Economic Measures","tagNameFormatted":"economic measur","tagNameFormattedFull":"economic measures","type":"franchise","__typename":"tag"},{"id":10000837,"headline":"Jobs","tagName":"Jobs","tagNameFormatted":"jobs","tagNameFormattedFull":"jobs","type":"franchise","__typename":"tag"},{"id":10000709,"headline":"The Fed","tagName":"The Fed","tagNameFormatted":"the fed","tagNameFormattedFull":"the fed","type":"franchise","__typename":"tag"},{"id":10000793,"headline":"Inflation","tagName":"Inflation","tagNameFormatted":"inflation","tagNameFormattedFull":"inflation","type":"franchise","__typename":"tag"},{"id":105368909,"headline":"Markets and Politics Digital Original Video","tagName":"Markets and Politics Digital Original Video","tagNameFormatted":"markets and pol","tagNameFormattedFull":"markets and politics digital original video","type":"franchise","__typename":"tag"}],"additionalSectionContentFormatted":"cnbc digital or|markets|politics|fed notes|recession|layoffs|economy|us economy|economic foreca|economic theory|economic measur|jobs|the fed|inflation|markets and pol","additionalSectionContentFormattedFull":"cnbc digital original video|markets|politics|fed notes|recession|layoffs|economy|us economy|economic forecasting|economic theory|economic measures|jobs|the fed|inflation|markets and politics digital original video","relatedVideoContent":[],"datePublished":"2022-09-20T10:55:01+0000","dateLastPublished":"2022-09-23T17:25:53+0000","sectionHierarchy":[{"id":15837856,"tagName":"CNBC TV","tagNameFormatted":"cnbc tv","tagNameFormattedFull":"cnbc tv","order":3,"__typename":"sectionHierarchy"},{"id":104266428,"tagName":"Digital Original","tagNameFormatted":"digital origina","tagNameFormattedFull":"digital original","order":2,"__typename":"sectionHierarchy"},{"id":107102864,"tagName":"Fed Notes","tagNameFormatted":"fed notes","tagNameFormattedFull":"fed notes","order":1,"__typename":"sectionHierarchy"}],"sectionHierarchyFormatted":"cnbc tv|digital origina|fed notes","sectionHierarchyFormattedFull":"cnbc tv|digital original|fed notes","creatorOverwrite":null,"projectContent":[],"promoImage":{"id":101174509,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F101174509-91624842.jpg?v=1663671301","__typename":"infographic"},"image":null,"section":{"headline":"Fed Notes","id":107102864,"subType":"section","tagName":"Fed Notes","tagNameFormatted":"fed notes","tagNameFormattedFull":"fed notes","title":"Fed Notes","url":"https:\u002F\u002Fwww.cnbc.com\u002Ffed-notes\u002F","__typename":"franchise"},"projectTeamContentFormatted":"markets and pol|cnbc digital or","projectTeamContentFormattedFull":"markets and politics digital original video|cnbc digital original video","projectContentFormatted":"NA","projectContentFormattedFull":"NA","creatorOverwriteFormatted":"NA","sourceOrganizationFormatted":"cnbc us source","sourceOrganizationFormattedFull":"cnbc us source","authorFormatted":"andrea miller|carlos waters|christina locop|lindsey jacobso","authorFormattedFull":"andrea miller|carlos waters|christina locopo|lindsey jacobson","dateFirstPublished":"2022-09-20T10:55:01+0000","subDomain":"https:\u002F\u002Fwww.cnbc.com","liveURL":"\u002Fvideo\u002F2022\u002F09\u002F20\u002Fwhy-layoffs-may-be-on-the-horizon-in-the-us.html","pageName":"7000264200|video\u002F2022\u002F09\u002F20\u002Fwhy-layoffs-may-be-on-the-horizon-in-the-us","shortDatePublished":"9\u002F20\u002F2022","shortDateLastPublished":"9\u002F23\u002F2022","shortDateFirstPublished":"9\u002F20\u002F2022","airDate":"9\u002F20\u002F2022","brand":"cnbc","comScoreC2":"1000004","comScoreC3":"*null","comScoreC4":"CNBC.com VOD","comScoreC6":"*null","dayPart":"Others","duration":588,"network":"CNBC","platform":"web","playbackURL":"\u002F\u002Fcnbcmbr-vh.akamaihd.net\u002Fi\u002Fmp4\u002FVCPS\u002FY2022\u002FM09D23\u002F7000264988\u002F1663952731523-220920_FED_layoffs_carbon_v3_SRT_MBR_,0240,0300,0500,0700,0900,1300,1700,4500,.mp4.csmil\u002Fmaster.m3u8","playerConfig":{"autoPlay":false,"workflow":"VOD","sticky":true,"endCard":{"timer":5},"embedURL":"https:\u002F\u002Fplayer.cnbc.com\u002Fp\u002FgZWlPC\u002Fcnbc_global?playertype=synd&byGuid={VID}","hlshtml":true,"primary":"html5","share":true,"parsely":true,"playbackRateControls":false,"fwassetId":"cnbc_7000264200","mediaid":"cnbc_7000264200","key":"+9o3ihbMIU8\u002FixFry35xlHnkQ9tikKg9TU0io1QbWXfpeR0q","playList":false,"sharing":{"sites":["facebook","twitter","linkedin"],"link":"https:\u002F\u002Fwww.cnbc.com\u002Fvideo\u002F2022\u002F09\u002F20\u002Fwhy-layoffs-may-be-on-the-horizon-in-the-us.html","code":"\u003Ciframe width=560 height=349 src=https:\u002F\u002Fplayer.cnbc.com\u002Fp\u002FgZWlPC\u002Fcnbc_global?playertype=synd&byGuid=7000264200 frameborder=0 scrolling=no allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen \u003E\u003C\u002Fiframe\u003E"},"mobileSFID":"7003948","IE11Profile":"169843:nbcu_web_flash_cs_moat_https","advertising":{"client":"freewheel","creativeTimeout":4000,"requestTimeout":4000,"vpaidcontrols":true,"freewheel":{"sectionid":"cnbc_inline_vod","networkid":169843,"profileid":"169843:nbcu_mobileweb_js_cs_moat_https","adManagerURL":"https:\u002F\u002Fmssl.fwmrm.net\u002Flibs\u002Fadm\u002F6.35.0\u002FAdManager.js","serverid":"\u002F\u002F29773.v.fwmrm.net\u002Fad\u002Fp\u002F1","sfid":"7006049","afid":"137705375","custom":{"metr":"1023","sfid":"7006049","afid":"137705375"}},"schedule":{"adbreak":{"offset":"pre","tag":"placeholder_preroll"}}},"analytics":{"onSite":true,"omniture":{"playername":"JW_Player","playerversion":"Universal","daypart":"Others","assetstatus":"Unrestricted","videoprogram":{"live":"iconic"},"videocontent":"Linear","title":"{partnername} Vod","guid":"{partnername} Vod","share":{"linksharepev2":"Video Control Rack","providerepev2":"Share","eVar15":"Video:Vod:","linktrknav":"video:share:Vod:","eVar14":": Share Published"}}},"embed":"\u003Ciframe width=560 height=349 src=https:\u002F\u002Fplayer.cnbc.com\u002Fp\u002FgZWlPC\u002Fcnbc_global?playertype=synd&byGuid=7000264200 frameborder=0 scrolling=no allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen \u003E\u003C\u002Fiframe\u003E"},"playerTech":"JW Player","subType":"digital_original","thumbnail":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F101174509-91624842.jpg?v=1663671301","usageRule":"NA","vcpsId":7000264200,"videoStatus":"Unrestricted","uploadDate":"2022-09-12T15:38:20+0000","__typename":"cnbcvideo"},{"id":107123803,"contentClassification":[],"type":"cnbcvideo","title":"The Fed will have to take the terminal funds rate higher in '23, says former KC Fed president","seoTitle":"The Fed will have to take the terminal funds rate higher in '23, says former KC Fed president","premium":false,"native":false,"headline":"The Fed will have to take the terminal funds rate higher in '23, says former KC Fed president","shorterHeadline":"The Fed will have to take the terminal funds rate higher in '23, says former KC Fed president","tagName":null,"tagNameFormatted":"NA","tagNameFormattedFull":"NA","slug":"The Federal Reserve will have to take the terminal federal funds rate higher in '23, says former KC Fed president 1663960765","url":"https:\u002F\u002Fwww.cnbc.com\u002Fvideo\u002F2022\u002F09\u002F23\u002Fthe-fed-will-have-to-take-the-terminal-funds-rate-higher-in-23-says-former-kc-fed-president.html","description":"Thomas Hoenig, former Kansas City Fed president, joins 'Closing Bell' to discuss if it matters how the Federal Reserve got to where they are now, the chances that the Fed lowers the terminal federal funds rate in 2023 and more.","author":[],"sourceOrganization":[{"id":80000022,"slug":"CNBC US Source","tagName":"CNBC US Source","tagNameFormatted":"cnbc us source","tagNameFormattedFull":"cnbc us source","__typename":"source"}],"projectTeamContent":[],"relatedTags":[{"id":105056584,"headline":null,"tagName":"Interest Rates","tagNameFormatted":"interest rates","tagNameFormattedFull":"interest rates","type":"tag","__typename":"tag"},{"id":105059409,"headline":null,"tagName":"U.S. Economy","tagNameFormatted":"us economy","tagNameFormattedFull":"us economy","type":"tag","__typename":"tag"},{"id":105056686,"headline":null,"tagName":"Inflation","tagNameFormatted":"inflation","tagNameFormattedFull":"inflation","type":"tag","__typename":"tag"}],"relatedTagsFilteredFormatted":"interest rates|us economy|inflation","relatedTagsFilteredFormattedFull":"interest rates|us economy|inflation","additionalSectionContent":[{"id":10000709,"headline":"The Fed","tagName":"The Fed","tagNameFormatted":"the fed","tagNameFormattedFull":"the fed","type":"franchise","__typename":"tag"},{"id":10000793,"headline":"Inflation","tagName":"Inflation","tagNameFormatted":"inflation","tagNameFormattedFull":"inflation","type":"franchise","__typename":"tag"},{"id":100010507,"headline":"US Economy","tagName":"US Economy","tagNameFormatted":"us economy","tagNameFormattedFull":"us economy","type":"franchise","__typename":"tag"},{"id":10000836,"headline":"Interest Rates","tagName":"Interest Rates","tagNameFormatted":"interest rates","tagNameFormattedFull":"interest rates","type":"franchise","__typename":"tag"}],"additionalSectionContentFormatted":"the fed|inflation|us economy|interest rates","additionalSectionContentFormattedFull":"the fed|inflation|us economy|interest rates","relatedVideoContent":[],"datePublished":"2022-09-23T19:46:27+0000","dateLastPublished":"2022-09-23T19:46:27+0000","sectionHierarchy":[{"id":15837856,"tagName":"CNBC TV","tagNameFormatted":"cnbc tv","tagNameFormattedFull":"cnbc tv","order":2,"__typename":"sectionHierarchy"},{"id":15838421,"tagName":"Closing Bell","tagNameFormatted":"closing bell","tagNameFormattedFull":"closing bell","order":1,"__typename":"sectionHierarchy"}],"sectionHierarchyFormatted":"cnbc tv|closing bell","sectionHierarchyFormattedFull":"cnbc tv|closing bell","creatorOverwrite":null,"projectContent":[],"promoImage":{"id":107123804,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107123804-16639607681663960765-25619834915-1080pnbcnews.jpg?v=1663962387","__typename":"infographic"},"image":null,"section":{"headline":"Closing Bell","id":15838421,"subType":"news_show","tagName":"Closing Bell","tagNameFormatted":"closing bell","tagNameFormattedFull":"closing bell","title":"Closing Bell","url":"https:\u002F\u002Fwww.cnbc.com\u002Fclosing-bell\u002F","__typename":"franchise"},"projectTeamContentFormatted":"NA","projectTeamContentFormattedFull":"NA","projectContentFormatted":"NA","projectContentFormattedFull":"NA","creatorOverwriteFormatted":"NA","sourceOrganizationFormatted":"cnbc us source","sourceOrganizationFormattedFull":"cnbc us source","authorFormatted":"NA","authorFormattedFull":"NA","dateFirstPublished":"2022-09-23T19:46:27+0000","subDomain":"https:\u002F\u002Fwww.cnbc.com","liveURL":"\u002Fvideo\u002F2022\u002F09\u002F23\u002Fthe-fed-will-have-to-take-the-terminal-funds-rate-higher-in-23-says-former-kc-fed-president.html","pageName":"7000265025|video\u002F2022\u002F09\u002F23\u002Fthe-fed-will-have-to-take-the-terminal-funds-rate-higher-in-23-says-former-kc-fed-president","shortDatePublished":"9\u002F23\u002F2022","shortDateLastPublished":"9\u002F23\u002F2022","shortDateFirstPublished":"9\u002F23\u002F2022","airDate":"9\u002F23\u002F2022","brand":"cnbc","comScoreC2":"1000004","comScoreC3":"*null","comScoreC4":"CNBC.com VOD","comScoreC6":"*null","dayPart":"Others","duration":203,"network":"CNBC","platform":"web","playbackURL":"\u002F\u002Fcnbcmbr-vh.akamaihd.net\u002Fi\u002Fmp4\u002FVCPS\u002FY2022\u002FM09D23\u002F7000265025\u002F1663960765-25619834915-hd_MBR_,0240,0300,0500,0700,0900,1300,1700,4500,.mp4.csmil\u002Fmaster.m3u8","playerConfig":{"autoPlay":false,"workflow":"VOD","sticky":true,"endCard":{"timer":5},"embedURL":"https:\u002F\u002Fplayer.cnbc.com\u002Fp\u002FgZWlPC\u002Fcnbc_global?playertype=synd&byGuid={VID}","hlshtml":true,"primary":"html5","share":true,"parsely":true,"playbackRateControls":false,"fwassetId":"cnbc_7000265025","mediaid":"cnbc_7000265025","key":"+9o3ihbMIU8\u002FixFry35xlHnkQ9tikKg9TU0io1QbWXfpeR0q","playList":false,"sharing":{"sites":["facebook","twitter","linkedin"],"link":"https:\u002F\u002Fwww.cnbc.com\u002Fvideo\u002F2022\u002F09\u002F23\u002Fthe-fed-will-have-to-take-the-terminal-funds-rate-higher-in-23-says-former-kc-fed-president.html","code":"\u003Ciframe width=560 height=349 src=https:\u002F\u002Fplayer.cnbc.com\u002Fp\u002FgZWlPC\u002Fcnbc_global?playertype=synd&byGuid=7000265025 frameborder=0 scrolling=no allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen \u003E\u003C\u002Fiframe\u003E"},"mobileSFID":"7003948","IE11Profile":"169843:nbcu_web_flash_cs_moat_https","advertising":{"client":"freewheel","creativeTimeout":4000,"requestTimeout":4000,"vpaidcontrols":true,"freewheel":{"sectionid":"cnbc_inline_vod","networkid":169843,"profileid":"169843:nbcu_mobileweb_js_cs_moat_https","adManagerURL":"https:\u002F\u002Fmssl.fwmrm.net\u002Flibs\u002Fadm\u002F6.35.0\u002FAdManager.js","serverid":"\u002F\u002F29773.v.fwmrm.net\u002Fad\u002Fp\u002F1","sfid":"7006049","afid":"137705375","custom":{"metr":"1023","sfid":"7006049","afid":"137705375"}},"schedule":{"adbreak":{"offset":"pre","tag":"placeholder_preroll"}}},"analytics":{"onSite":true,"omniture":{"playername":"JW_Player","playerversion":"Universal","daypart":"Others","assetstatus":"Unrestricted","videoprogram":{"live":"iconic"},"videocontent":"Linear","title":"{partnername} Vod","guid":"{partnername} Vod","share":{"linksharepev2":"Video Control Rack","providerepev2":"Share","eVar15":"Video:Vod:","linktrknav":"video:share:Vod:","eVar14":": Share Published"}}},"embed":"\u003Ciframe width=560 height=349 src=https:\u002F\u002Fplayer.cnbc.com\u002Fp\u002FgZWlPC\u002Fcnbc_global?playertype=synd&byGuid=7000265025 frameborder=0 scrolling=no allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen \u003E\u003C\u002Fiframe\u003E"},"playerTech":"JW Player","subType":"clips","thumbnail":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107123804-16639607681663960765-25619834915-1080pnbcnews.jpg?v=1663962387","usageRule":"NA","vcpsId":7000265025,"videoStatus":"Unrestricted","uploadDate":"2022-09-23T19:19:27+0000","__typename":"cnbcvideo"}],"__typename":"videoBreakerFeatured"},"__typename":"module"}],"__typename":"column"}],"__typename":"layout"},{"editable":false,"columns":[{"span":"full","editable":false,"modules":[{"name":"featuredBreaker","source":"105230157","canChangeLayout":false,"canChangeSource":false,"serverRenderPolicy":null,"attributes":{},"options":{},"data":{"url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=Special%20Reports","type":"franchise","title":"Special Reports","subType":"package","sectionLabel":"Special Reports","logo":null,"shorterHeadline":"Special Reports","assets":[{"id":107121553,"brand":"cnbc","type":"cnbcnewsstory","premium":false,"native":false,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F21\u002Fwhat-the-fed-raising-rates-by-0point75percent-means-for-main-street-economy.html","datePublished":"2022-09-21T18:01:48+0000","dateLastPublishedSixHr":"","title":"Federal Reserve's increasing interest rate hikes put Main Street economy 'dangerously close' to edge of lending cliff","linkHeadline":"The Fed's increasing rate hikes put Main Street 'dangerously close' to edge of lending cliff","shorterHeadline":"How the Fed's mounting rate hikes will hit the majority of America's businesses","slug":"Federal Reserve's increasing interest rate hikes put Main Street economy 'dangerously close' to edge of lending cliff","subType":null,"section":{"subType":"special_report","__typename":"franchise"},"sectionHierarchy":[{"tagName":"Business News","__typename":"sectionHierarchy"},{"tagName":"Small Business","__typename":"sectionHierarchy"},{"tagName":"Small Business Playbook","__typename":"sectionHierarchy"}],"promoImage":{"id":107094949,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107094949-16589488462022-07-27t185755z_1401356456_rc2ikv9v3blg_rtrmadp_0_usa-fed.jpeg?v=1663783308","__typename":"infographic"},"author":[{"name":"Eric Rosenbaum","__typename":"creator"}],"sourceOrganization":[{"name":"CNBC.com","__typename":"source"}],"creatorOverwrite":null,"__typename":"cnbcnewsstory"},{"id":107119880,"brand":"cnbc","type":"cnbcnewsstory","premium":false,"native":false,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F16\u002Fnew-york-city-is-nearing-the-tipping-point-in-return-to-office-work.html","datePublished":"2022-09-16T15:29:13+0000","dateLastPublishedSixHr":"","title":"New York City is getting closer to the tipping point in return to office work","linkHeadline":"New York City is getting closer to the tipping point in return to office work","shorterHeadline":"New York City is getting closer to the tipping point in return to office work","slug":"New York City is getting closer to the tipping point in return to office work","subType":null,"section":{"subType":"special_report","__typename":"franchise"},"sectionHierarchy":[{"tagName":"Technology","__typename":"sectionHierarchy"},{"tagName":"At Work","__typename":"sectionHierarchy"}],"promoImage":{"id":106918099,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F106918099-1627481905164-gettyimages-1233454475-GOLDMAN_SACHS_RTO.jpeg?v=1663342153","__typename":"infographic"},"author":[{"name":"Eric Rosenbaum","__typename":"creator"}],"sourceOrganization":[{"name":"CNBC.com","__typename":"source"}],"creatorOverwrite":null,"__typename":"cnbcnewsstory"},{"id":107122995,"brand":"cnbc","type":"cnbcnewsstory","premium":false,"native":false,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F24\u002Fnew-york-now-no-1-port-in-us-as-sea-change-in-trade-hits-west-coast.html","datePublished":"2022-09-24T13:17:32+0000","dateLastPublishedSixHr":"","title":"New York is now the nation's busiest port in a historic tipping point for U.S.-bound trade","linkHeadline":"New York is now the nation's busiest port in a historic tipping point for U.S.-bound trade","shorterHeadline":"New York is now No. 1 port in a tipping point for U.S.-bound trade","slug":"New York is now the nation's busiest port in a historic tipping point for U.S.-bound trade","subType":null,"section":{"subType":"special_report","__typename":"franchise"},"sectionHierarchy":[{"tagName":"Business News","__typename":"sectionHierarchy"},{"tagName":"Transportation","__typename":"sectionHierarchy"},{"tagName":"State of Freight","__typename":"sectionHierarchy"}],"promoImage":{"id":106860144,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F106860144-1616773597702-gettyimages-1309169058-mg_0865_ship04_03252021.jpeg?v=1664025452","__typename":"infographic"},"author":[{"name":"Lori Ann LaRocco","__typename":"creator"}],"sourceOrganization":[{"name":"CNBC.com","__typename":"source"}],"creatorOverwrite":null,"__typename":"cnbcnewsstory"},{"id":107120814,"brand":"cnbc","type":"cnbcnewsstory","premium":false,"native":false,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F20\u002Fuk-dock-worker-strikes-hits-supply-chain-for-companies-including-ford.html","datePublished":"2022-09-20T14:27:36+0000","dateLastPublishedSixHr":"","title":"With new UK port worker strikes, Ford's supply chain problems aren't over","linkHeadline":"With new UK port worker strikes, Ford's supply chain problems aren't over","shorterHeadline":"New UK port worker strikes mean Ford's supply chain problems aren't done","slug":"With new UK port worker strikes, Ford's supply chain problems aren't over","subType":null,"section":{"subType":"special_report","__typename":"franchise"},"sectionHierarchy":[{"tagName":"Business News","__typename":"sectionHierarchy"},{"tagName":"Transportation","__typename":"sectionHierarchy"},{"tagName":"State of Freight","__typename":"sectionHierarchy"}],"promoImage":{"id":107121265,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107121265-1663680225539-gettyimages-1243378731-UK_DOCK_WORKERS.jpeg?v=1663684056","__typename":"infographic"},"author":[{"name":"Lori Ann LaRocco","__typename":"creator"}],"sourceOrganization":[{"name":"CNBC.com","__typename":"source"}],"creatorOverwrite":null,"__typename":"cnbcnewsstory"},{"id":107118782,"brand":"makeit","type":"cnbcnewsstory","premium":false,"native":false,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F15\u002Fdownsides-of-early-retirement-according-to-a-37-year-old-retiree.html","datePublished":"2022-09-15T18:08:11+0000","dateLastPublishedSixHr":"","title":"37-year-old self-made millionaire: Don't retire early before you consider these 2 things","linkHeadline":"37-year-old self-made millionaire: Don't retire early before you consider these 2 things","shorterHeadline":"2 'downsides' of early retirement, according to a self-made millionaire","slug":"37-year-old self-made millionaire: Don't retire early before you consider these 2 things","subType":null,"section":{"subType":"section","__typename":"franchise"},"sectionHierarchy":[{"tagName":"Make It - Money","__typename":"sectionHierarchy"},{"tagName":"Make It Fired Up ","__typename":"sectionHierarchy"}],"promoImage":{"id":105930535,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F105930535-1558640656857millennialmoney313.jpg?v=1663265291","__typename":"infographic"},"author":[{"name":"Ryan Ermey","__typename":"creator"}],"sourceOrganization":[{"name":"CNBC.com","__typename":"source"}],"creatorOverwrite":null,"__typename":"cnbcnewsstory"},{"id":107119343,"brand":"cnbc","type":"cnbcnewsstory","premium":false,"native":false,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F15\u002Fglobalization-of-trade-isnt-ending-despite-covid-war-inflation.html","datePublished":"2022-09-15T22:30:01+0000","dateLastPublishedSixHr":"","title":"Globalization of trade isn't ending, despite Covid, war, inflation","linkHeadline":"Globalization of trade isn't ending, despite Covid, war, inflation","shorterHeadline":"Globalization of trade isn't ending, despite Covid, war, inflation","slug":"Globalization of trade isn't ending, despite Covid, war, inflation","subType":null,"section":{"subType":"special_report","__typename":"franchise"},"sectionHierarchy":[{"tagName":"Business News","__typename":"sectionHierarchy"},{"tagName":"Transportation","__typename":"sectionHierarchy"},{"tagName":"State of Freight","__typename":"sectionHierarchy"}],"promoImage":{"id":106272676,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F106272676-1575261079246gettyimages-527457518.jpeg?v=1663281001","__typename":"infographic"},"author":[{"name":"Lori Ann LaRocco","__typename":"creator"}],"sourceOrganization":[{"name":"CNBC.com","__typename":"source"}],"creatorOverwrite":null,"__typename":"cnbcnewsstory"},{"id":107117805,"brand":"cnbc","type":"cnbcnewsstory","premium":false,"native":false,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F15\u002Fchevron-is-starting-to-talk-to-retail-investors-in-a-brand-new-way.html","datePublished":"2022-09-15T16:22:55+0000","dateLastPublishedSixHr":"","title":"Chevron is starting to talk to retail investors in a brand new way ","linkHeadline":"Chevron is starting to talk to retail investors in a brand new way ","shorterHeadline":"Chevron is starting to talk to retail investors in a brand new way ","slug":"Chevron is starting to talk to retail investors in a brand new way ","subType":null,"section":{"subType":"special_report","__typename":"franchise"},"sectionHierarchy":[{"tagName":"Markets","__typename":"sectionHierarchy"},{"tagName":"CNBC Global CFO Council","__typename":"sectionHierarchy"}],"promoImage":{"id":106919127,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F106919127-1627588106965-gettyimages-1331330476-dscf8437_2021072921141384.jpeg?v=1663258975","__typename":"infographic"},"author":[{"name":"Eric Rosenbaum","__typename":"creator"}],"sourceOrganization":[{"name":"CNBC.com","__typename":"source"}],"creatorOverwrite":null,"__typename":"cnbcnewsstory"},{"id":107119128,"brand":"cnbc","type":"cnbcnewsstory","premium":false,"native":false,"url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F15\u002Fthe-one-esg-issue-that-americans-agree-isnt-politically-polarizing.html","datePublished":"2022-09-15T15:38:09+0000","dateLastPublishedSixHr":"","title":"The one ESG issue that Americans agree isn't politically polarizing","linkHeadline":"The one ESG issue that Americans agree isn't politically polarizing","shorterHeadline":"The one ESG issue that Americans agree isn't politically polarizing","slug":"The one ESG issue that Americans agree isn't politically polarizing","subType":null,"section":{"subType":"special_report","__typename":"franchise"},"sectionHierarchy":[{"tagName":"Technology","__typename":"sectionHierarchy"},{"tagName":"At Work","__typename":"sectionHierarchy"}],"promoImage":{"id":107117992,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107117992-1663102053877-ford.jpg?v=1663256289","__typename":"infographic"},"author":[{"name":"Eric Rosenbaum","__typename":"creator"}],"sourceOrganization":[{"name":"CNBC.com","__typename":"source"}],"creatorOverwrite":null,"__typename":"cnbcnewsstory"}],"__typename":"featuredBreaker"},"__typename":"module"}],"__typename":"column"}],"__typename":"layout"},{"editable":false,"columns":[{"span":"12","editable":false,"modules":[{"name":"trendingNowBreaker","source":"100727362","canChangeLayout":false,"canChangeSource":false,"serverRenderPolicy":null,"attributes":{},"options":{},"data":{"brand":"cnbc","assets":[{"title":"Google CEO Pichai tells employees not to 'equate fun with money' in heated all-hands meeting ","url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F23\u002Fgoogle-ceo-pichai-fields-questions-on-cost-cuts-at-all-hands-meeting-.html","linkHeadline":"Google CEO Pichai tells employees not to 'equate fun with money' in heated all-hands meeting ","contentClassification":[],"__typename":"cnbcnewsstory"},{"title":"If you file taxes in these 17 states, you could be getting an inflation-relief check from the government—here's who qualifies","url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F21\u002Finflation-relief-checks-residents-in-17-states-could-get-money-soon.html","linkHeadline":"Residents in 17 states are getting inflation-relief checks—here's who qualifies for the money","contentClassification":[],"__typename":"cnbcnewsstory"},{"title":"This 35-year-old has a net worth of $470,000 and is semi-retired—and she only works 7.5 hours a week","url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F22\u002Fdiania-merriam-semi-retired-in-her-30s-now-she-works-7point5-hours-per-week.html","linkHeadline":"This 35-year-old has a net worth of $470,000 and is semi-retired—and she only works 7.5 hours a week","contentClassification":[],"__typename":"cnbcnewsstory"},{"title":"The No. 1 best city to retire isn't in Florida—but several others in the top 10 for 2022 are","url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F24\u002Fwallethub-top-10-cities-to-retire-2022-nearly-half-are-in-florida.html","linkHeadline":"The No. 1 best city to retire isn't in Florida—but several others in the top 10 for 2022 are","contentClassification":[],"__typename":"cnbcnewsstory"},{"title":"Want to raise strong, resilient kids? Create 'nurturing routines,' says parenting expert—here’s how","url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F24\u002Fhow-to-raise-resilient-kids-by-developing-their-brains-with-nurturing-routines-parenting-expert.html","linkHeadline":"Want to raise strong, resilient kids? Create 'nurturing routines,' says parenting expert—here’s how","contentClassification":[],"__typename":"cnbcnewsstory"}],"__typename":"trendingNowBreaker"},"__typename":"module"}],"__typename":"column"}],"__typename":"layout"},{"editable":false,"columns":[{"span":"9","editable":false,"modules":[{"name":"twoColumnImageDense","source":"102138233","canChangeLayout":true,"canChangeSource":true,"serverRenderPolicy":null,"attributes":{"truncate":{"firstElement":130,"otherElements":110},"displayThumbnailPreviews":false},"options":{"pageSize":8,"promoted":true},"data":{"id":102138233,"brand":"cnbc","eyebrow":"Pro News and Analysis","url":"https:\u002F\u002Fwww.cnbc.com\u002Fpro\u002Fnews\u002F","assets":[{"id":107117636,"title":"Analysts name the top 'high conviction' stocks for playing the market turbulence","type":"cnbcnewsstory","brand":"cnbc","linkHeadline":"Analysts name the top 'high conviction' stocks for playing the market turbulence","shorterHeadline":"Analysts have 'high conviction' that these stocks have major upside.","premium":true,"native":false,"promoImage":{"id":106413616,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F106413616-1582815498409img_9095r.jpg?v=1664024950","__typename":"infographic"},"author":[{"id":102249058,"name":"Michael Bloom","url":"https:\u002F\u002Fwww.cnbc.com\u002Fmichael-bloom\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F24\u002Fanalysts-name-top-high-conviction-stocks-for-playing-market-turbulence.html","creatorOverwrite":null,"datePublished":"2022-09-24T13:09:10+0000","coverageEndDate":null,"contentClassification":["premium"],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Sat, Sep 24th 2022","sourceOrganization":[{"id":80000022,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20US","__typename":"source"}],"__typename":"cnbcnewsstory"},{"id":107123979,"title":"Feared stock market bottom retest is now underway","type":"cnbcnewsstory","brand":"cnbc","linkHeadline":"Feared stock market bottom retest is now underway","shorterHeadline":"Feared stock market bottom retest is now underway","premium":true,"native":false,"promoImage":{"id":107123249,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107123249-16638844912022-09-22t220518z_655682612_rc2lmw9d7ov9_rtrmadp_0_usa-stocks.jpeg?v=1664024542","__typename":"infographic"},"author":[{"id":103097040,"name":"Michael Santoli","url":"https:\u002F\u002Fwww.cnbc.com\u002Fmichael-santoli\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F24\u002Ffeared-stock-market-bottom-retest-is-now-underway.html","creatorOverwrite":null,"datePublished":"2022-09-24T13:02:22+0000","coverageEndDate":null,"contentClassification":["premium"],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Sat, Sep 24th 2022","sourceOrganization":[{"id":80000022,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20US","__typename":"source"}],"__typename":"cnbcnewsstory"},{"id":107122123,"title":"The perils and promise of quantum computing are nearing. Here are ways to invest","type":"cnbcnewsstory","brand":"cnbc","linkHeadline":"The perils and promise of quantum computing are nearing. Here are ways to invest","shorterHeadline":"The perils and promise of quantum computing are nearing. Here are ways to invest","premium":true,"native":false,"promoImage":{"id":106198807,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F106198807-1571848425507handoutgooglepichaiquantum.jpg?v=1664024182","__typename":"infographic"},"author":[{"id":105143350,"name":"Hugh Son","url":"https:\u002F\u002Fwww.cnbc.com\u002Fhugh-son\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F24\u002Fquantum-investing-perils-and-promise-of-quantum-computing-are-nearing.html","creatorOverwrite":null,"datePublished":"2022-09-24T12:56:22+0000","coverageEndDate":null,"contentClassification":["premium"],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Sat, Sep 24th 2022","sourceOrganization":[{"id":80000022,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20US","__typename":"source"}],"__typename":"cnbcnewsstory"},{"id":107123661,"title":"Stocks could continue skittish trading until interest rate move calms down","type":"cnbcnewsstory","brand":"cnbc","linkHeadline":"Stocks could continue skittish trading until interest rate move calms down","shorterHeadline":"What to watch in the markets in the week ahead","premium":true,"native":false,"promoImage":{"id":107110721,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107110721-1661789175637-nyse7.jpg?v=1663967958","__typename":"infographic"},"author":[{"id":15987964,"name":"Patti Domm","url":"https:\u002F\u002Fwww.cnbc.com\u002Fpatti-domm\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F23\u002Fstocks-could-continue-skittish-trading-until-interest-rate-move-calms-down.html","creatorOverwrite":null,"datePublished":"2022-09-23T21:19:18+0000","coverageEndDate":null,"contentClassification":["premium"],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Fri, Sep 23rd 2022","sourceOrganization":[{"id":80000022,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20US","__typename":"source"}],"__typename":"cnbcnewsstory"},{"id":107123842,"title":"Pro Picks: Watch all of Friday's big stock calls on CNBC","type":"cnbcnewsstory","brand":"cnbc","linkHeadline":"Pro Picks: Watch all of Friday's big stock calls on CNBC","shorterHeadline":"Pro Picks: Watch all of Friday's big stock calls on CNBC","premium":true,"native":false,"promoImage":{"id":107123868,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107123868-1663965213507-Movers_09_23.png?v=1663967625","__typename":"infographic"},"author":[{"id":107071749,"name":"Joshua Natoli","url":"https:\u002F\u002Fwww.cnbc.com\u002Fjoshua-natoli\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F23\u002Fpro-picks-watch-all-of-fridays-big-stock-calls-on-cnbc.html","creatorOverwrite":null,"datePublished":"2022-09-23T21:13:45+0000","coverageEndDate":null,"contentClassification":["premium"],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Fri, Sep 23rd 2022","sourceOrganization":[{"id":80000022,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20US","__typename":"source"}],"__typename":"cnbcnewsstory"},{"id":107123725,"title":"Ether is down almost 20% since the merge. Here’s what’s going on","type":"cnbcnewsstory","brand":"cnbc","linkHeadline":"Ether is down almost 20% since the merge. Here’s what’s going on","shorterHeadline":"Ether is down almost 20% since the merge. Here’s what’s going on","premium":true,"native":false,"promoImage":{"id":106885738,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F106885738-1621490902783-gettyimages-1317812942-dsc01436.jpeg?v=1663960524","__typename":"infographic"},"author":[{"id":106888168,"name":"Tanaya Macheel","url":"https:\u002F\u002Fwww.cnbc.com\u002Ftanaya-macheel\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F23\u002Fether-is-down-almost-20percent-since-the-merge-heres-whats-going-on.html","creatorOverwrite":null,"datePublished":"2022-09-23T19:15:24+0000","coverageEndDate":null,"contentClassification":["premium"],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Fri, Sep 23rd 2022","sourceOrganization":[{"id":80000022,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20US","__typename":"source"}],"__typename":"cnbcnewsstory"},{"id":107123575,"title":"Bond market plunge means the low for stocks is not in yet, Bank of America's Hartnett says","type":"cnbcnewsstory","brand":"cnbc","linkHeadline":"Bond market plunge means the low for stocks is not in yet, Bank of America's Hartnett says","shorterHeadline":"Bond market plunge means the low for stocks is not in yet, Bank of America says","premium":true,"native":false,"promoImage":{"id":107122926,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107122926-1663861517066-nys1.jpg?v=1663948311","__typename":"infographic"},"author":[{"id":36003787,"name":"Jeff Cox","url":"https:\u002F\u002Fwww.cnbc.com\u002Fjeff-cox\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F23\u002Fbond-market-plunge-means-the-low-for-stocks-is-not-in-yet-bank-of-americas-hartnett-says.html","creatorOverwrite":null,"datePublished":"2022-09-23T15:51:51+0000","coverageEndDate":null,"contentClassification":["premium"],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Fri, Sep 23rd 2022","sourceOrganization":[{"id":80000022,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20US","__typename":"source"}],"__typename":"cnbcnewsstory"},{"id":107123023,"title":"Inventory is piling up as consumer demand slows. That’s bad news for these stocks","type":"cnbcnewsstory","brand":"cnbc","linkHeadline":"Inventory is piling up as consumer demand slows. That’s bad news for these stocks","shorterHeadline":"Inventory is piling up as consumer demand slows. Bad news for these stocks","premium":true,"native":false,"promoImage":{"id":107115580,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107115580-16626572852022-09-08t170021z_1721239977_rc29ow86zrac_rtrmadp_0_usa-china-gpu-biren.jpeg?v=1663948054","__typename":"infographic"},"author":[{"id":107022882,"name":"Sarah Min","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsarah-min\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F23\u002Finventory-is-piling-up-as-consumer-demand-slows-thats-bad-news-for-these-stocks.html","creatorOverwrite":null,"datePublished":"2022-09-23T15:47:34+0000","coverageEndDate":null,"contentClassification":["premium"],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Fri, Sep 23rd 2022","sourceOrganization":[{"id":80000022,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20US","__typename":"source"}],"__typename":"cnbcnewsstory"}],"__typename":"twoColumnImageDense"},"__typename":"module"},{"name":"twoColumnImageDense","source":"106858698","canChangeLayout":true,"canChangeSource":true,"serverRenderPolicy":null,"attributes":{"truncate":{"firstElement":130,"otherElements":110},"displayThumbnailPreviews":false},"options":{"pageSize":8,"promoted":true},"data":{"id":106858698,"brand":"cnbc","eyebrow":"Sustainable Future","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsustainable-future\u002F","assets":[{"id":107112565,"title":"Big business likes to trumpet ESG credentials. But a 'greenwashing' reckoning could be on the horizon","type":"cnbcnewsstory","brand":"cnbc","linkHeadline":"Big business likes to trumpet ESG credentials. But a 'greenwashing' reckoning could be coming","shorterHeadline":"Big businesses like to trumpet ESG credentials. But scrutiny is on the rise","premium":false,"native":false,"promoImage":{"id":107115250,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107115250-1662627296434-gettyimages-1090636062-AFP_1CS0F5.jpeg?v=1663738488","__typename":"infographic"},"author":[{"id":104030533,"name":"Anmar Frangoul","url":"https:\u002F\u002Fwww.cnbc.com\u002Fanmar-frangoul-profile--cnbc\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F21\u002Fbig-businesses-trumpet-esg-credentials-scrutiny-is-on-the-rise.html","creatorOverwrite":null,"datePublished":"2022-09-21T05:34:48+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Thu, Sep 22nd 2022","sourceOrganization":[{"id":100005495,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20Europe","__typename":"source"}],"__typename":"cnbcnewsstory"},{"id":107121087,"title":"UN secretary general says 'polluters must pay,' calls for extra tax on fossil fuel profits","type":"cnbcnewsstory","brand":"cnbc","linkHeadline":"UN secretary general says 'polluters must pay,' calls for extra tax on fossil fuel profits","shorterHeadline":"UN's Guterres says 'polluters must pay', calls for extra tax on fossil fuels","premium":false,"native":false,"promoImage":{"id":107121090,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107121090-1663667814812-gettyimages-1235384474-United_Nations_General_Assembly.jpeg?v=1663680393","__typename":"infographic"},"author":[{"id":104030533,"name":"Anmar Frangoul","url":"https:\u002F\u002Fwww.cnbc.com\u002Fanmar-frangoul-profile--cnbc\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F20\u002Funs-guterres-says-polluters-must-pay-calls-for-tax-on-fossil-fuels.html","creatorOverwrite":null,"datePublished":"2022-09-20T13:26:33+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Tue, Sep 20th 2022","sourceOrganization":[{"id":100005495,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20Europe","__typename":"source"}],"__typename":"cnbcnewsstory"},{"id":107114536,"title":"'Deeply worrying': Liz Truss' pick for Britain's energy chief slammed by climate campaigners","type":"cnbcnewsstory","brand":"cnbc","linkHeadline":"'Deeply worrying': Liz Truss' pick for Britain's energy chief slammed by climate campaigners","shorterHeadline":"Liz Truss' pick for Britain's energy chief slammed by climate campaigners","premium":false,"native":false,"promoImage":{"id":107114538,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107114538-1662546650902-gettyimages-1243006666-cc208313.jpeg?v=1662546794","__typename":"infographic"},"author":[{"id":104030533,"name":"Anmar Frangoul","url":"https:\u002F\u002Fwww.cnbc.com\u002Fanmar-frangoul-profile--cnbc\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F07\u002Fuks-new-energy-chief-says-fracking-interesting-we-need-fossil-fuels.html","creatorOverwrite":null,"datePublished":"2022-09-07T13:26:58+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Wed, Sep 7th 2022","sourceOrganization":[{"id":100005495,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20Europe","__typename":"source"}],"__typename":"cnbcnewsstory"},{"id":107115312,"title":"UNDP's Human Development Report: 'Uncertain times, Unsettled lives.'","type":"cnbcvideo","brand":"cnbc","linkHeadline":"UNDP's Human Development Report: 'Uncertain times, Unsettled lives.'","shorterHeadline":"UNDP's Human Development Report: 'Uncertain times, Unsettled lives.'","premium":false,"native":false,"promoImage":{"id":107115317,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107115317-Tania_and_achim_steiner_human_development.jpg?v=1662634925","__typename":"infographic"},"author":[{"id":43169106,"name":"Tania Bryer","url":"https:\u002F\u002Fwww.cnbc.com\u002Ftania-bryer\u002F","__typename":"creator","tagName":"Tania Bryer","tagNameFormatted":"tania bryer"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002Fvideo\u002F2022\u002F09\u002F08\u002Fundps-human-development-report-uncertain-times-unsettled-lives.html","creatorOverwrite":null,"datePublished":"2022-09-08T13:51:28+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Thu, Sep 8th 2022","sourceOrganization":[{"id":100005495,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20Europe","__typename":"source","slug":"CNBC Europe Source","tagName":"CNBC Europe Source","tagNameFormatted":"cnbc europe sou","tagNameFormattedFull":"cnbc europe source"}],"seoTitle":"UNDP's Human Development Report: 'Uncertain times, Unsettled lives.'","headline":"UNDP's Human Development Report: 'Uncertain times, Unsettled lives.'","tagName":null,"tagNameFormatted":"NA","tagNameFormattedFull":"NA","slug":"UNDP's Human Development Report: 'Uncertain times, Unsettled lives.'","description":"UNDP Administrator, Achim Steiner, talks to CNBC's Tania Bryer about the agency's latest Human Development Report that saw an unprecedented fall in human development globally, including statistics that show the U.S. fell out of the top 20 for the first time ever.","projectTeamContent":[],"relatedTags":[{"id":10000938,"headline":null,"tagName":"United Nations","tagNameFormatted":"united nations","tagNameFormattedFull":"united nations","type":"organization","__typename":"tag"},{"id":106090267,"headline":null,"tagName":"Developmental disorders","tagNameFormatted":"developmental d","tagNameFormattedFull":"developmental disorders","type":"tag","__typename":"tag"},{"id":106626256,"headline":null,"tagName":"Achim Steiner","tagNameFormatted":"achim steiner","tagNameFormattedFull":"achim steiner","type":"tag","__typename":"tag"}],"relatedTagsFilteredFormatted":"united nations|developmental d|achim steiner","relatedTagsFilteredFormattedFull":"united nations|developmental disorders|achim steiner","additionalSectionContent":[],"additionalSectionContentFormatted":"NA","additionalSectionContentFormattedFull":"NA","relatedVideoContent":[],"dateLastPublished":"2022-09-08T13:51:28+0000","sectionHierarchy":[{"id":10001147,"tagName":"Business News","tagNameFormatted":"business news","tagNameFormattedFull":"business news","order":2,"__typename":"sectionHierarchy"},{"id":106858698,"tagName":"Sustainable Future","tagNameFormatted":"sustainable fut","tagNameFormattedFull":"sustainable future","order":1,"__typename":"sectionHierarchy"}],"sectionHierarchyFormatted":"business news|sustainable fut","sectionHierarchyFormattedFull":"business news|sustainable future","projectContent":[],"image":null,"section":{"headline":"Sustainable Future","id":106858698,"subType":"special_report","tagName":"Sustainable Future","tagNameFormatted":"sustainable fut","tagNameFormattedFull":"sustainable future","title":"Sustainable Future","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsustainable-future\u002F","__typename":"franchise"},"projectTeamContentFormatted":"NA","projectTeamContentFormattedFull":"NA","projectContentFormatted":"NA","projectContentFormattedFull":"NA","creatorOverwriteFormatted":"NA","sourceOrganizationFormatted":"cnbc europe sou","sourceOrganizationFormattedFull":"cnbc europe source","authorFormatted":"tania bryer","authorFormattedFull":"tania bryer","dateFirstPublished":"2022-09-08T13:51:28+0000","subDomain":"https:\u002F\u002Fwww.cnbc.com","liveURL":"\u002Fvideo\u002F2022\u002F09\u002F08\u002Fundps-human-development-report-uncertain-times-unsettled-lives.html","pageName":"7000262531|video\u002F2022\u002F09\u002F08\u002Fundps-human-development-report-uncertain-times-unsettled-lives","shortDatePublished":"9\u002F08\u002F2022","shortDateLastPublished":"9\u002F08\u002F2022","shortDateFirstPublished":"9\u002F08\u002F2022","airDate":"9\u002F8\u002F2022","comScoreC2":"1000004","comScoreC3":"*null","comScoreC4":"CNBC.com VOD","comScoreC6":"*null","dayPart":"Others","duration":869,"network":"CNBC","platform":"web","playbackURL":"\u002F\u002Fcnbcmbr-vh.akamaihd.net\u002Fi\u002Fmp4\u002FVCPS\u002FY2022\u002FM09D08\u002F7000262531\u002F1662634584494-AchimSteinerSEPT22FULLFINAL_MBR_,0240,0300,0500,0700,0900,1300,1700,4500,.mp4.csmil\u002Fmaster.m3u8","playerConfig":{"autoPlay":false,"workflow":"VOD","sticky":true,"endCard":{"timer":5},"embedURL":"https:\u002F\u002Fplayer.cnbc.com\u002Fp\u002FgZWlPC\u002Fcnbc_global?playertype=synd&byGuid={VID}","hlshtml":true,"primary":"html5","share":true,"parsely":true,"playbackRateControls":false,"fwassetId":"cnbc_7000262531","mediaid":"cnbc_7000262531","key":"+9o3ihbMIU8\u002FixFry35xlHnkQ9tikKg9TU0io1QbWXfpeR0q","playList":false,"sharing":{"sites":["facebook","twitter","linkedin"],"link":"https:\u002F\u002Fwww.cnbc.com\u002Fvideo\u002F2022\u002F09\u002F08\u002Fundps-human-development-report-uncertain-times-unsettled-lives.html","code":"\u003Ciframe width=560 height=349 src=https:\u002F\u002Fplayer.cnbc.com\u002Fp\u002FgZWlPC\u002Fcnbc_global?playertype=synd&byGuid=7000262531 frameborder=0 scrolling=no allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen \u003E\u003C\u002Fiframe\u003E"},"mobileSFID":"7003948","IE11Profile":"169843:nbcu_web_flash_cs_moat_https","advertising":{"client":"freewheel","creativeTimeout":4000,"requestTimeout":4000,"vpaidcontrols":true,"freewheel":{"sectionid":"cnbc_inline_vod","networkid":169843,"profileid":"169843:nbcu_mobileweb_js_cs_moat_https","adManagerURL":"https:\u002F\u002Fmssl.fwmrm.net\u002Flibs\u002Fadm\u002F6.35.0\u002FAdManager.js","serverid":"\u002F\u002F29773.v.fwmrm.net\u002Fad\u002Fp\u002F1","sfid":"7006049","afid":"137705375","custom":{"metr":"1023","sfid":"7006049","afid":"137705375"}},"schedule":{"adbreak":{"offset":"pre","tag":"placeholder_preroll"}}},"analytics":{"onSite":true,"omniture":{"playername":"JW_Player","playerversion":"Universal","daypart":"Others","assetstatus":"Unrestricted","videoprogram":{"live":"iconic"},"videocontent":"Linear","title":"{partnername} Vod","guid":"{partnername} Vod","share":{"linksharepev2":"Video Control Rack","providerepev2":"Share","eVar15":"Video:Vod:","linktrknav":"video:share:Vod:","eVar14":": Share Published"}}},"embed":"\u003Ciframe width=560 height=349 src=https:\u002F\u002Fplayer.cnbc.com\u002Fp\u002FgZWlPC\u002Fcnbc_global?playertype=synd&byGuid=7000262531 frameborder=0 scrolling=no allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen \u003E\u003C\u002Fiframe\u003E"},"playerTech":"JW Player","subType":"full_length","thumbnail":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107115317-Tania_and_achim_steiner_human_development.jpg?v=1662634925","usageRule":"NA","vcpsId":7000262531,"videoStatus":"Unrestricted","uploadDate":"2022-09-08T10:56:08+0000","__typename":"cnbcvideo"},{"id":107111869,"title":"The world's biggest offshore wind farm is now fully operational","type":"cnbcnewsstory","brand":"cnbc","linkHeadline":"The world's biggest offshore wind farm is now fully operational","shorterHeadline":"The world's biggest offshore wind farm is now fully operational","premium":false,"native":false,"promoImage":{"id":107111843,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107111843-1661943988440-Hornsea_2_from_air.jpg?v=1661944112","__typename":"infographic"},"author":[{"id":104030533,"name":"Anmar Frangoul","url":"https:\u002F\u002Fwww.cnbc.com\u002Fanmar-frangoul-profile--cnbc\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F01\u002Fhuge-offshore-wind-farm-hornsea-2-is-fully-operational-orsted-says.html","creatorOverwrite":null,"datePublished":"2022-09-01T05:17:14+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Thu, Sep 1st 2022","sourceOrganization":[{"id":100005495,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20Europe","__typename":"source"}],"__typename":"cnbcnewsstory"},{"id":107111776,"title":"Toyota pledges up to $5.6 billion for EV battery production, ramps up investment in North Carolina plant","type":"cnbcnewsstory","brand":"cnbc","linkHeadline":"Toyota pledges up to $5.6 billion for EV battery production, ramps up investment in U.S. plant","shorterHeadline":"Toyota pledges billions for EV battery production, ramps up investment in U.S.","premium":false,"native":false,"promoImage":{"id":107111778,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107111778-1661932874011-gettyimages-1231052731-JAPAN_CARS.jpeg?v=1661933019","__typename":"infographic"},"author":[{"id":104030533,"name":"Anmar Frangoul","url":"https:\u002F\u002Fwww.cnbc.com\u002Fanmar-frangoul-profile--cnbc\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F08\u002F31\u002Ftoyota-says-it-will-invest-extra-2point5-billion-in-north-carolina-plant.html","creatorOverwrite":null,"datePublished":"2022-08-31T11:36:02+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Wed, Aug 31st 2022","sourceOrganization":[{"id":100005495,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20Europe","__typename":"source"}],"__typename":"cnbcnewsstory"},{"id":107113094,"title":"ABB Process Automation: 20% of total abatement contribution could be green hydrogen by 2050","type":"cnbcvideo","brand":"cnbc","linkHeadline":"ABB Process Automation: 20% of total abatement contribution could be green hydrogen by 2050","shorterHeadline":"ABB Process Automation: 20% of total abatement contribution could be green hydrogen by 2050","premium":false,"native":false,"promoImage":{"id":107113095,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107113095-16621075721662107569-25233951346-1080pnbcnews.jpg?v=1662107571","__typename":"infographic"},"author":[],"url":"https:\u002F\u002Fwww.cnbc.com\u002Fvideo\u002F2022\u002F09\u002F02\u002Fabb-process-automation-20-percent-of-total-abatement-contribution-could-be-green-hydrogen-by-2050.html","creatorOverwrite":null,"datePublished":"2022-09-02T09:49:00+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Fri, Sep 2nd 2022","sourceOrganization":[{"id":100005495,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20Europe","__typename":"source","slug":"CNBC Europe Source","tagName":"CNBC Europe Source","tagNameFormatted":"cnbc europe sou","tagNameFormattedFull":"cnbc europe source"}],"seoTitle":"ABB Process Automation: 20% of total abatement contribution could be green hydrogen by 2050","headline":"ABB Process Automation: 20% of total abatement contribution could be green hydrogen by 2050","tagName":null,"tagNameFormatted":"NA","tagNameFormattedFull":"NA","slug":"ABB Process Automation: 20% of total abatement contribution could be green hydrogen by 2050 1662107569","description":"Peter Terwiesch, president at ABB Process Automation, discusses green hydrogen and its credentials as a sustainable energy source.","projectTeamContent":[],"relatedTags":[],"relatedTagsFilteredFormatted":"NA","relatedTagsFilteredFormattedFull":"NA","additionalSectionContent":[{"id":106865379,"headline":"Investment","tagName":"Sustainable Future: Investment","tagNameFormatted":"sustainable fut","tagNameFormattedFull":"sustainable future investment","type":"franchise","__typename":"tag"}],"additionalSectionContentFormatted":"sustainable fut","additionalSectionContentFormattedFull":"sustainable future investment","relatedVideoContent":[],"dateLastPublished":"2022-09-02T09:49:00+0000","sectionHierarchy":[{"id":10001147,"tagName":"Business News","tagNameFormatted":"business news","tagNameFormattedFull":"business news","order":2,"__typename":"sectionHierarchy"},{"id":106858698,"tagName":"Sustainable Future","tagNameFormatted":"sustainable fut","tagNameFormattedFull":"sustainable future","order":1,"__typename":"sectionHierarchy"}],"sectionHierarchyFormatted":"business news|sustainable fut","sectionHierarchyFormattedFull":"business news|sustainable future","projectContent":[],"image":null,"section":{"headline":"Sustainable Future","id":106858698,"subType":"special_report","tagName":"Sustainable Future","tagNameFormatted":"sustainable fut","tagNameFormattedFull":"sustainable future","title":"Sustainable Future","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsustainable-future\u002F","__typename":"franchise"},"projectTeamContentFormatted":"NA","projectTeamContentFormattedFull":"NA","projectContentFormatted":"NA","projectContentFormattedFull":"NA","creatorOverwriteFormatted":"NA","sourceOrganizationFormatted":"cnbc europe sou","sourceOrganizationFormattedFull":"cnbc europe source","authorFormatted":"NA","authorFormattedFull":"NA","dateFirstPublished":"2022-09-02T09:49:00+0000","subDomain":"https:\u002F\u002Fwww.cnbc.com","liveURL":"\u002Fvideo\u002F2022\u002F09\u002F02\u002Fabb-process-automation-20-percent-of-total-abatement-contribution-could-be-green-hydrogen-by-2050.html","pageName":"7000261769|video\u002F2022\u002F09\u002F02\u002Fabb-process-automation-20-percent-of-total-abatement-contribution-could-be-green-hydrogen-by-2050","shortDatePublished":"9\u002F02\u002F2022","shortDateLastPublished":"9\u002F02\u002F2022","shortDateFirstPublished":"9\u002F02\u002F2022","airDate":"9\u002F2\u002F2022","comScoreC2":"1000004","comScoreC3":"*null","comScoreC4":"CNBC.com VOD","comScoreC6":"*null","dayPart":"Others","duration":159,"network":"CNBC","platform":"web","playbackURL":"\u002F\u002Fcnbcmbr-vh.akamaihd.net\u002Fi\u002Fmp4\u002FVCPS\u002FY2022\u002FM09D02\u002F7000261769\u002F1662107569-25233951346-hd_MBR_,0240,0300,0500,0700,0900,1300,1700,4500,.mp4.csmil\u002Fmaster.m3u8","playerConfig":{"autoPlay":false,"workflow":"VOD","sticky":true,"endCard":{"timer":5},"embedURL":"https:\u002F\u002Fplayer.cnbc.com\u002Fp\u002FgZWlPC\u002Fcnbc_global?playertype=synd&byGuid={VID}","hlshtml":true,"primary":"html5","share":true,"parsely":true,"playbackRateControls":false,"fwassetId":"cnbc_7000261769","mediaid":"cnbc_7000261769","key":"+9o3ihbMIU8\u002FixFry35xlHnkQ9tikKg9TU0io1QbWXfpeR0q","playList":false,"sharing":{"sites":["facebook","twitter","linkedin"],"link":"https:\u002F\u002Fwww.cnbc.com\u002Fvideo\u002F2022\u002F09\u002F02\u002Fabb-process-automation-20-percent-of-total-abatement-contribution-could-be-green-hydrogen-by-2050.html","code":"\u003Ciframe width=560 height=349 src=https:\u002F\u002Fplayer.cnbc.com\u002Fp\u002FgZWlPC\u002Fcnbc_global?playertype=synd&byGuid=7000261769 frameborder=0 scrolling=no allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen \u003E\u003C\u002Fiframe\u003E"},"mobileSFID":"7003948","IE11Profile":"169843:nbcu_web_flash_cs_moat_https","advertising":{"client":"freewheel","creativeTimeout":4000,"requestTimeout":4000,"vpaidcontrols":true,"freewheel":{"sectionid":"cnbc_inline_vod","networkid":169843,"profileid":"169843:nbcu_mobileweb_js_cs_moat_https","adManagerURL":"https:\u002F\u002Fmssl.fwmrm.net\u002Flibs\u002Fadm\u002F6.35.0\u002FAdManager.js","serverid":"\u002F\u002F29773.v.fwmrm.net\u002Fad\u002Fp\u002F1","sfid":"7006049","afid":"137705375","custom":{"metr":"1023","sfid":"7006049","afid":"137705375"}},"schedule":{"adbreak":{"offset":"pre","tag":"placeholder_preroll"}}},"analytics":{"onSite":true,"omniture":{"playername":"JW_Player","playerversion":"Universal","daypart":"Others","assetstatus":"Unrestricted","videoprogram":{"live":"iconic"},"videocontent":"Linear","title":"{partnername} Vod","guid":"{partnername} Vod","share":{"linksharepev2":"Video Control Rack","providerepev2":"Share","eVar15":"Video:Vod:","linktrknav":"video:share:Vod:","eVar14":": Share Published"}}},"embed":"\u003Ciframe width=560 height=349 src=https:\u002F\u002Fplayer.cnbc.com\u002Fp\u002FgZWlPC\u002Fcnbc_global?playertype=synd&byGuid=7000261769 frameborder=0 scrolling=no allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen \u003E\u003C\u002Fiframe\u003E"},"playerTech":"JW Player","subType":"clips","thumbnail":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107113095-16621075721662107569-25233951346-1080pnbcnews.jpg?v=1662107571","usageRule":"NA","vcpsId":7000261769,"videoStatus":"Unrestricted","uploadDate":"2022-09-02T08:32:51+0000","__typename":"cnbcvideo"},{"id":107105015,"title":"Drought conditions in Britain prompt water restrictions for millions of Londoners","type":"cnbcnewsstory","brand":"cnbc","linkHeadline":"Drought conditions in Britain prompt water restrictions for millions of Londoners","shorterHeadline":"Drought conditions in Britain prompt water restrictions for millions of Londoners","premium":false,"native":false,"promoImage":{"id":107105018,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107105018-1660732283754-gettyimages-1242496825-68310264.jpeg?v=1660732496","__typename":"infographic"},"author":[{"id":104030533,"name":"Anmar Frangoul","url":"https:\u002F\u002Fwww.cnbc.com\u002Fanmar-frangoul-profile--cnbc\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F08\u002F17\u002Flondon-to-face-water-restrictions-from-next-week-thames-water-says-.html","creatorOverwrite":null,"datePublished":"2022-08-17T12:26:20+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Thu, Aug 18th 2022","sourceOrganization":[{"id":100005495,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20Europe","__typename":"source"}],"__typename":"cnbcnewsstory"}],"__typename":"twoColumnImageDense"},"__typename":"module"},{"name":"twoColumnImageDense","source":"106366920","canChangeLayout":true,"canChangeSource":true,"serverRenderPolicy":null,"attributes":{"truncate":{"firstElement":130,"otherElements":110},"displayThumbnailPreviews":false},"options":{"pageSize":8,"promoted":true},"data":{"id":106366920,"brand":"cnbc","eyebrow":"Coronavirus","url":"https:\u002F\u002Fwww.cnbc.com\u002Fcoronavirus\u002F","assets":[{"id":107123522,"title":"Moderna asks FDA to authorize omicron Covid boosters for children as young as 6 years old","type":"cnbcnewsstory","brand":"cnbc","linkHeadline":"Moderna asks FDA to authorize omicron Covid boosters for children as young as 6 years old","shorterHeadline":"Moderna asks FDA to authorize omicron Covid boosters for kids 6- to 11-year-olds","premium":false,"native":false,"promoImage":{"id":107078438,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107078438-16558263742022-06-21t154536z_2018793951_rc2ewu9cgozl_rtrmadp_0_health-coronavirus-usa.jpeg?v=1663949211","__typename":"infographic"},"author":[{"id":104678681,"name":"Spencer Kimball","url":"https:\u002F\u002Fwww.cnbc.com\u002Fspencer-kimball\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F23\u002Fmoderna-asks-fda-to-authorize-omicron-covid-boosters-for-children-as-young-as-6-years-old.html","creatorOverwrite":null,"datePublished":"2022-09-23T16:06:51+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Fri, Sep 23rd 2022","sourceOrganization":[{"id":80000022,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20US","__typename":"source"}],"__typename":"cnbcnewsstory"},{"id":107122888,"title":"WHO warns ability to identify new Covid variants is diminishing as testing declines ","type":"cnbcnewsstory","brand":"cnbc","linkHeadline":"WHO warns ability to identify new Covid variants is diminishing as testing declines ","shorterHeadline":"WHO warns ability to identify new Covid variants is falling as testing declines ","premium":false,"native":false,"promoImage":{"id":106913619,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F106913619-16267937592020-01-29t000000z_1387970559_rc2spe9j1gzp_rtrmadp_0_china-health-who.jpeg?v=1663869077","__typename":"infographic"},"author":[{"id":104678681,"name":"Spencer Kimball","url":"https:\u002F\u002Fwww.cnbc.com\u002Fspencer-kimball\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F22\u002Fwho-warns-ability-to-identify-new-covid-variants-is-diminishing-as-testing-declines-.html","creatorOverwrite":null,"datePublished":"2022-09-22T17:51:17+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Thu, Sep 22nd 2022","sourceOrganization":[{"id":80000022,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20US","__typename":"source"}],"__typename":"cnbcnewsstory"},{"id":107121668,"title":"Watch live: Ukrainian President Volodymyr Zelenskyy address global leaders at the U.N. General Assembly","type":"cnbcnewsstory","brand":"cnbc","linkHeadline":"Watch live: Ukrainian President Volodymyr Zelenskyy addresses leaders at the U.N. General Assembly","shorterHeadline":"Watch live: Ukrainian President Zelenskyy to address the U.N. General Assembly","premium":false,"native":false,"promoImage":{"id":107121684,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107121684-1663713341589-gettyimages-1240982059-AA_29052022_748437.jpeg?v=1663879322","__typename":"infographic"},"author":[],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F21\u002Fwatch-ukrainian-president-zelenskyy-addresses-un-general-assembly.html","creatorOverwrite":null,"datePublished":"2022-09-21T20:45:30+0000","coverageEndDate":null,"contentClassification":["watchLive"],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Wed, Sep 21st 2022","sourceOrganization":[{"id":80000022,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20US","__typename":"source"}],"__typename":"cnbcnewsstory"},{"id":107121219,"title":"Here's what the Federal Reserve's third 75 basis point interest rate hike means for you","type":"cnbcnewsstory","brand":"cnbc","linkHeadline":"The Federal Reserve hiked rates another 75 basis points — what its 'tough love' move means for you","shorterHeadline":"What the Fed's third 75 basis point interest rate hikes mean for you","premium":false,"native":false,"promoImage":{"id":104582226,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F104582226-104582226.jpg?v=1663783257","__typename":"infographic"},"author":[{"id":103125331,"name":"Jessica Dickler","url":"https:\u002F\u002Fwww.cnbc.com\u002Fjessica-dickler\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F21\u002Fwhat-another-major-rate-hike-by-the-federal-reserve-means-to-you.html","creatorOverwrite":null,"datePublished":"2022-09-21T18:00:57+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Wed, Sep 21st 2022","sourceOrganization":[{"id":80000022,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20US","__typename":"source"}],"__typename":"cnbcnewsstory"},{"id":107116913,"title":"Layoffs loom on the horizon, some economists say","type":"cnbcnewsstory","brand":"cnbc","linkHeadline":"Layoffs loom on the horizon, some economists say","shorterHeadline":"Layoffs loom on the horizon, some economists say","premium":false,"native":false,"promoImage":{"id":101906698,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F101906698-466189489.jpg?v=1663671601","__typename":"infographic"},"author":[{"id":105583027,"name":"Andrea Miller","url":"https:\u002F\u002Fwww.cnbc.com\u002Fandrea-miller\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F20\u002Flayoffs-loom-on-the-horizon-some-economists-say.html","creatorOverwrite":null,"datePublished":"2022-09-20T11:00:01+0000","coverageEndDate":null,"contentClassification":["applenewsautoplay"],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Tue, Sep 20th 2022","sourceOrganization":[{"id":80000022,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20US","__typename":"source"}],"__typename":"cnbcnewsstory"},{"id":107118581,"title":"Biden announces first round of funding for EV charging network across 35 states","type":"cnbcnewsstory","brand":"cnbc","linkHeadline":"Biden announces first round of funding for EV charging network across 35 states","shorterHeadline":"Biden announces first round of funding for EV charging network across 35 states","premium":false,"native":false,"promoImage":{"id":107118704,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107118704-16631824722022-09-14t190507z_557211963_rc26hw97u7am_rtrmadp_0_usa-biden.jpeg?v=1663586606","__typename":"infographic"},"author":[{"id":107112615,"name":"Emma Kinery","url":"https:\u002F\u002Fwww.cnbc.com\u002Femma-kinery\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F14\u002Fwatch-live-biden-touts-electric-vehicles-at-the-detroit-auto-show.html","creatorOverwrite":null,"datePublished":"2022-09-14T18:00:10+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Wed, Sep 14th 2022","sourceOrganization":[{"id":80000022,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20US","__typename":"source"}],"__typename":"cnbcnewsstory"},{"id":107118359,"title":"U.S. monkeypox outbreak is slowing, CDC director says ","type":"cnbcnewsstory","brand":"cnbc","linkHeadline":"U.S. monkeypox outbreak is slowing, CDC director says ","shorterHeadline":"U.S. monkeypox outbreak is slowing, CDC director says ","premium":false,"native":false,"promoImage":{"id":107095736,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107095736-16590436402022-07-28t205141z_1930568801_rc22lv92tiio_rtrmadp_0_health-monkeypox-new-york.jpeg?v=1663168411","__typename":"infographic"},"author":[{"id":107088256,"name":"Ashley Capoot","url":"https:\u002F\u002Fwww.cnbc.com\u002Fashley-capoot\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F14\u002Fus-monkeypox-outbreak-is-slowing-cdc-official-says-.html","creatorOverwrite":null,"datePublished":"2022-09-14T15:13:31+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Wed, Sep 14th 2022","sourceOrganization":[{"id":80000022,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20US","__typename":"source"}],"__typename":"cnbcnewsstory"},{"id":107116079,"title":"Los Angeles health officials are investigating the death of a person who had monkeypox","type":"cnbcnewsstory","brand":"cnbc","linkHeadline":"Los Angeles health officials are investigating the death of a person who had monkeypox","shorterHeadline":"LA health officials are investigating the death of a person who had monkeypox","premium":false,"native":false,"promoImage":{"id":107101502,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107101502-gettyimages-1242407829-AFP_32GA6XE.jpeg?v=1662734625","__typename":"infographic"},"author":[{"id":104678681,"name":"Spencer Kimball","url":"https:\u002F\u002Fwww.cnbc.com\u002Fspencer-kimball\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F09\u002Flos-angeles-is-investigating-the-death-of-a-person-who-had-monkeypox.html","creatorOverwrite":null,"datePublished":"2022-09-09T15:00:52+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Fri, Sep 9th 2022","sourceOrganization":[{"id":80000022,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20US","__typename":"source"}],"__typename":"cnbcnewsstory"}],"__typename":"twoColumnImageDense"},"__typename":"module"},{"name":"twoColumnImageDense","source":"105749512","canChangeLayout":true,"canChangeSource":true,"serverRenderPolicy":null,"attributes":{"truncate":{"firstElement":130,"otherElements":110},"displayThumbnailPreviews":false},"options":{"pageSize":8,"promoted":true},"data":{"id":105749512,"brand":"cnbc","eyebrow":"CNBC Travel","url":"https:\u002F\u002Fwww.cnbc.com\u002Fcnbc-travel\u002F","assets":[{"id":107117440,"title":"The most common crime in UK hotels isn't theft","type":"cnbcnewsstory","brand":"cnbc","linkHeadline":"The most common crime in UK hotels isn't theft","shorterHeadline":"The most common crime in UK hotels isn't theft","premium":false,"native":false,"promoImage":{"id":107120453,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107120453-1663576889123-gettyimages-125141457-000016873331_Full.jpeg?v=1663805842","__typename":"infographic"},"author":[{"id":107106382,"name":"Jenni Reid","url":"https:\u002F\u002Fwww.cnbc.com\u002Fjenni-reid\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F22\u002Fwhat-are-the-most-common-crimes-in-hotels-not-theft-say-uk-police-.html","creatorOverwrite":null,"datePublished":"2022-09-22T00:17:22+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Wed, Sep 21st 2022","sourceOrganization":[{"id":100005495,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20Europe","__typename":"source"}],"__typename":"cnbcnewsstory"},{"id":107119718,"title":"You can visit Bhutan again — if you're willing to cough up $200 a day in fees","type":"cnbcnewsstory","brand":"cnbc","linkHeadline":"You can visit Bhutan again — if you're willing to cough up $200 a day in fees","shorterHeadline":"You can visit Bhutan again — if you're willing to cough up $200 a day in fees","premium":false,"native":false,"promoImage":{"id":107119726,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107119726-1663311901491-gettyimages-157191255-000002326547_Large.jpeg?v=1663559196","__typename":"infographic"},"author":[{"id":106203801,"name":"Monica Buchanan Pitrelli","url":"https:\u002F\u002Fwww.cnbc.com\u002Fmonica-pitrelli\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F19\u002Fhow-much-does-it-cost-to-visit-bhutan-200-a-day-plus-travel-costs-.html","creatorOverwrite":null,"datePublished":"2022-09-18T23:04:59+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Wed, Sep 21st 2022","sourceOrganization":[{"id":100005489,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20Asia","__typename":"source"}],"__typename":"cnbcnewsstory"},{"id":107118216,"title":"A purchase at a small town sale turned out to be a 'priceless' de Kooning painting stolen in 1985","type":"cnbcnewsstory","brand":"cnbc","linkHeadline":"A purchase at a small town sale turned out to be a 'priceless' de Kooning painting stolen in 1985","shorterHeadline":" An estate sale purchase turned out to be a ‘priceless’ painting stolen in 1985","premium":false,"native":false,"promoImage":{"id":107118919,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107118919-1663210693149-9_Getty_Exhibition.JPG?v=1663286997","__typename":"infographic"},"author":[{"id":106203801,"name":"Monica Buchanan Pitrelli","url":"https:\u002F\u002Fwww.cnbc.com\u002Fmonica-pitrelli\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F16\u002Fwoman-ochre-de-koonings-painting-from-theft-to-its-return-home.html","creatorOverwrite":null,"datePublished":"2022-09-16T00:09:57+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Thu, Sep 15th 2022","sourceOrganization":[{"id":100005489,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20Asia","__typename":"source"}],"__typename":"cnbcnewsstory"},{"id":107113679,"title":"Shanghai, Mumbai, Melbourne and beyond: CNBC names the best Asia-Pacific hotels for business travel","type":"cnbcnewsstory","brand":"cnbc","linkHeadline":"Shanghai, Mumbai, Melbourne and beyond: CNBC names the best Asia-Pacific hotels for business travel","shorterHeadline":"Exclusive: CNBC names the best hotels for business travel across Asia-Pacific","premium":false,"native":false,"promoImage":{"id":107115151,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107115151-1662596518763-gettyimages-1261595520-isc1533303.jpeg?v=1662938251","__typename":"infographic"},"author":[{"id":106203801,"name":"Monica Buchanan Pitrelli","url":"https:\u002F\u002Fwww.cnbc.com\u002Fmonica-pitrelli\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F12\u002Fbest-hotels-for-business-travelers-in-asia-pacific.html","creatorOverwrite":null,"datePublished":"2022-09-11T23:17:31+0000","coverageEndDate":null,"contentClassification":["webOnly","evergreen"],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Wed, Sep 21st 2022","sourceOrganization":[{"id":100005489,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20Asia","__typename":"source"}],"__typename":"cnbcnewsstory"},{"id":107114493,"title":"For Russians, vacations aren't what they used to be. But they still have options","type":"cnbcnewsstory","brand":"cnbc","linkHeadline":"For Russians, vacations aren't what they used to be. But they still have options","shorterHeadline":"Where are Russians going on holiday since the war? Here are some countries","premium":false,"native":false,"promoImage":{"id":107114495,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107114495-1662539870695-gettyimages-1242935324-ODOGMANSP3_002.jpeg?v=1663845473","__typename":"infographic"},"author":[{"id":107099361,"name":"Lee Ying Shan","url":"https:\u002F\u002Fwww.cnbc.com\u002Flee-ying-shan\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F09\u002Fwhere-russians-go-on-vacation-since-the-ukraine-war-started.html","creatorOverwrite":null,"datePublished":"2022-09-09T04:00:54+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Fri, Sep 9th 2022","sourceOrganization":[{"id":100005489,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20Asia","__typename":"source"}],"__typename":"cnbcnewsstory"},{"id":107111777,"title":"Google Flights just busted a popular myth about saving money on flights","type":"cnbcnewsstory","brand":"cnbc","linkHeadline":"Google Flights just busted a popular myth about saving money on flights","shorterHeadline":"Google Flights just busted a popular myth about saving money on flights","premium":false,"native":false,"promoImage":{"id":107112323,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107112323-1661990104608-gettyimages-91495778-blm000818.jpeg?v=1661993669","__typename":"infographic"},"author":[{"id":106203801,"name":"Monica Buchanan Pitrelli","url":"https:\u002F\u002Fwww.cnbc.com\u002Fmonica-pitrelli\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F01\u002Fcheapest-airline-tickets-how-to-save-money-on-flights-and-airfare.html","creatorOverwrite":null,"datePublished":"2022-09-01T00:58:16+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Thu, Sep 1st 2022","sourceOrganization":[{"id":100005489,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20Asia","__typename":"source"}],"__typename":"cnbcnewsstory"},{"id":107106983,"title":"Three people with travel 'dream jobs' explain how they scored them","type":"cnbcnewsstory","brand":"cnbc","linkHeadline":"Three people with travel 'dream jobs' explain how they scored them","shorterHeadline":"Three people with travel 'dream jobs' explain how they scored them","premium":false,"native":false,"promoImage":{"id":107109720,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107109720-1661496564068-comp2.jpg?v=1661742800","__typename":"infographic"},"author":[{"id":106203801,"name":"Monica Buchanan Pitrelli","url":"https:\u002F\u002Fwww.cnbc.com\u002Fmonica-pitrelli\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F08\u002F29\u002Fhow-to-blog-about-travel-how-to-host-a-tv-show-about-travel-.html","creatorOverwrite":null,"datePublished":"2022-08-29T05:20:15+0000","coverageEndDate":null,"contentClassification":["evergreen"],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Mon, Aug 29th 2022","sourceOrganization":[{"id":100005489,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20Asia","__typename":"source"}],"__typename":"cnbcnewsstory"},{"id":107108426,"title":"Which website has the cheapest hotel rates? A new study compared prices to find out","type":"cnbcnewsstory","brand":"cnbc","linkHeadline":"Which website has the cheapest hotel rates? A new study compared prices to find out","shorterHeadline":"Which website has the cheapest hotel rates? A study compared prices in 20 cities","premium":false,"native":false,"promoImage":{"id":107108454,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107108454-1661326782655-gettyimages-912972174-booking_hotel_onlineeps.jpeg?v=1661405477","__typename":"infographic"},"author":[{"id":106203801,"name":"Monica Buchanan Pitrelli","url":"https:\u002F\u002Fwww.cnbc.com\u002Fmonica-pitrelli\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F08\u002F26\u002Fhow-to-find-cheap-hotel-rooms-survey-compares-popular-website-rates.html","creatorOverwrite":null,"datePublished":"2022-08-25T23:21:31+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Fri, Aug 26th 2022","sourceOrganization":[{"id":100005489,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20Asia","__typename":"source"}],"__typename":"cnbcnewsstory"}],"__typename":"twoColumnImageDense"},"__typename":"module"},{"name":"twoColumnImageDense","source":"103395579","canChangeLayout":true,"canChangeSource":true,"serverRenderPolicy":null,"attributes":{"truncate":{"firstElement":130,"otherElements":110},"displayThumbnailPreviews":false},"options":{"pageSize":8,"promoted":true},"data":{"id":103395579,"brand":"makeit","eyebrow":"Make It","url":"https:\u002F\u002Fwww.cnbc.com\u002Fmake-it\u002F","assets":[{"id":107123107,"title":"3 rules for a successful open relationship, from a therapist: 'More communication is nearly always better than less'","type":"cnbcnewsstory","brand":"makeit","linkHeadline":"3 rules for a successful open relationship: 'More communication is nearly always better than less'","shorterHeadline":"3 rules for a successful open relationship, according to an NYC therapist","premium":false,"native":false,"promoImage":{"id":107096352,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107096352-1659128674317-gettyimages-1384887904-ex_lala_s_wineyard_p2a9762.jpeg?v=1664042401","__typename":"infographic"},"author":[{"id":107090826,"name":"Aditi Shrikant","url":"https:\u002F\u002Fwww.cnbc.com\u002Faditi-shrikant-bio\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F24\u002Fthree-rules-for-a-successful-open-relationship.html","creatorOverwrite":null,"datePublished":"2022-09-24T18:00:01+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Sat, Sep 24th 2022","sourceOrganization":[{"id":80000022,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20US","__typename":"source"}],"__typename":"cnbcnewsstory"},{"id":107121276,"title":"These 10 cities have the best pizzerias in the world—see where New York lands on the list","type":"cnbcnewsstory","brand":"makeit","linkHeadline":"These 10 cities have the best pizzerias in the world—see where New York lands on the list","shorterHeadline":"Top 10 cities with the best pizzerias worldwide—see where NYC lands on the list","premium":false,"native":false,"promoImage":{"id":107121306,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107121306-1663682946038-gettyimages-1258960420-dsc04579.jpeg?v=1664035201","__typename":"infographic"},"author":[{"id":107096311,"name":"Celia Fernandez","url":"https:\u002F\u002Fwww.cnbc.com\u002Fcelia-fernandez\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F24\u002Ftop-10-cities-with-the-best-pizzerias-worldwide-.html","creatorOverwrite":null,"datePublished":"2022-09-24T16:00:01+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"3 hours ago","dateLastPublishedFormattedWithoutTime":"Sat, Sep 24th 2022","sourceOrganization":[{"id":80000022,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20US","__typename":"source"}],"__typename":"cnbcnewsstory"},{"id":107122933,"title":"The creator of Black Girls in Trader Joe’s shares her top 5 favorite products, easy meals for under $20","type":"cnbcnewsstory","brand":"makeit","linkHeadline":"Black Girls in Trader Joe’s creator shares her top five favorite products, easy meals for under $20","shorterHeadline":"Black Girls in Trader Joe’s creator shares her top five favorite products","premium":false,"native":false,"promoImage":{"id":107116162,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107116162-1663960086510-photoAssett_2022_0923_deeTJ_forReneeOnque.png?v=1664031901","__typename":"infographic"},"author":[{"id":107077230,"name":"Renée Onque","url":"https:\u002F\u002Fwww.cnbc.com\u002Frenee-onque\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F24\u002Feasy-meals-for-two-under-20-from-black-girls-in-trader-joes-creator.html","creatorOverwrite":null,"datePublished":"2022-09-24T15:05:01+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Sat, Sep 24th 2022","sourceOrganization":[{"id":80000022,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20US","__typename":"source"}],"__typename":"cnbcnewsstory"},{"id":107081756,"title":"Want to raise strong, resilient kids? Create 'nurturing routines,' says parenting expert—here’s how","type":"cnbcnewsstory","brand":"makeit","linkHeadline":"Want to raise strong, resilient kids? Create 'nurturing routines,' says parenting expert—here’s how","shorterHeadline":"Want to raise strong, resilient kids? Create 'nurturing routines,' says parenting expert—here’s how","premium":false,"native":false,"promoImage":{"id":107099199,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107099199-1659641806998-gettyimages-1328102254-dsc08361.jpeg?v=1664029038","__typename":"infographic"},"author":[{"id":107061641,"name":"Dana Suskind, Contributor","url":"https:\u002F\u002Fwww.cnbc.com\u002Fdr-dana-suskind\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F24\u002Fhow-to-raise-resilient-kids-by-developing-their-brains-with-nurturing-routines-parenting-expert.html","creatorOverwrite":null,"datePublished":"2022-09-24T14:17:18+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Sat, Sep 24th 2022","sourceOrganization":[{"id":80000022,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20US","__typename":"source"}],"__typename":"cnbcnewsstory"},{"id":107122394,"title":"'Queer Eye's Karamo Brown on the morning routines that keep him motivated","type":"cnbcnewsstory","brand":"makeit","linkHeadline":"'Queer Eye's Karamo Brown on the morning routines that keep him motivated","shorterHeadline":"'Queer Eye's Karamo Brown on the morning routines that keep him motivated","premium":false,"native":false,"promoImage":{"id":106812327,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F106812327-1608144105480-gettyimages-1285864602-rjp24120_2020111552157274.jpeg?v=1664028001","__typename":"infographic"},"author":[{"id":106964777,"name":"Ashton Jackson","url":"https:\u002F\u002Fwww.cnbc.com\u002Fashton-jackson\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F24\u002Fqueer-eyes-karamo-brown-shares-morning-routine.html","creatorOverwrite":null,"datePublished":"2022-09-24T14:00:01+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Sat, Sep 24th 2022","sourceOrganization":[{"id":80000022,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20US","__typename":"source"}],"__typename":"cnbcnewsstory"},{"id":107123590,"title":"These 7 states have the least air pollution in the U.S.","type":"cnbcnewsstory","brand":"makeit","linkHeadline":"These 7 states have the least air pollution in the U.S.","shorterHeadline":"These 7 states have the least air pollution in the U.S.","premium":false,"native":false,"promoImage":{"id":106493472,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F106493472-1587125187494gettyimages-1209898398.jpeg?v=1664026201","__typename":"infographic"},"author":[{"id":106893859,"name":"Annika Kim Constantino","url":"https:\u002F\u002Fwww.cnbc.com\u002Fannika-kim-constantino\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F24\u002Fvermont-new-mexico-california-us-states-with-least-air-pollution.html","creatorOverwrite":null,"datePublished":"2022-09-24T13:30:01+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Sat, Sep 24th 2022","sourceOrganization":[{"id":80000022,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20US","__typename":"source"}],"__typename":"cnbcnewsstory"},{"id":107123108,"title":"13 careers where over 50% of workers are happy with their pay","type":"cnbcnewsstory","brand":"makeit","linkHeadline":"13 careers where over 50% of workers are happy with their pay","shorterHeadline":"13 careers where over 50% of workers are happy with their pay","premium":false,"native":false,"promoImage":{"id":107123168,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107123168-1663876874752-gettyimages-1327443348-g2109_0684.jpeg?v=1663967150","__typename":"infographic"},"author":[{"id":106065560,"name":"Jennifer Liu","url":"https:\u002F\u002Fwww.cnbc.com\u002Fjennifer-liu\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F23\u002Fcareers-where-over-50percent-of-workers-are-happy-with-their-pay.html","creatorOverwrite":null,"datePublished":"2022-09-23T21:05:50+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Fri, Sep 23rd 2022","sourceOrganization":[{"id":80000022,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20US","__typename":"source"}],"__typename":"cnbcnewsstory"},{"id":107123538,"title":"Gold and crypto have been called 'inflation-proof' investments—so far in 2022, neither seems to be a great hedge","type":"cnbcnewsstory","brand":"makeit","linkHeadline":"Gold and crypto have been called 'inflation-proof' investments—so far in 2022, neither seems to be","shorterHeadline":"Why gold and crypto haven't proven to be 'inflation-proof' investments in 2022","premium":false,"native":false,"promoImage":{"id":107123557,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107123557-1663943330270-GettyImages-1335958440.jpg?v=1663958147","__typename":"infographic"},"author":[{"id":106977691,"name":"Mike Winters","url":"https:\u002F\u002Fwww.cnbc.com\u002Fmike-winters\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F09\u002F23\u002Fwhy-gold-and-cryptocurrencies-arent-inflation-proof-investments.html","creatorOverwrite":null,"datePublished":"2022-09-23T18:35:47+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Fri, Sep 23rd 2022","sourceOrganization":[{"id":80000022,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20US","__typename":"source"}],"__typename":"cnbcnewsstory"}],"__typename":"twoColumnImageDense"},"__typename":"module"}],"__typename":"column"},{"span":"3","editable":false,"modules":[{"name":"adBoxRail","source":"right","canChangeLayout":false,"canChangeSource":false,"serverRenderPolicy":"client","attributes":{"placement":"right"},"options":{},"data":{"__typename":"asset"},"__typename":"module"}],"__typename":"column"}],"__typename":"layout"},{"editable":false,"columns":[{"span":"12","editable":false,"modules":[{"name":"halfHalfBreaker","source":"100004038","canChangeLayout":false,"canChangeSource":false,"serverRenderPolicy":"client","attributes":{},"options":{},"data":{"__typename":"asset"},"__typename":"module"}],"__typename":"column"}],"__typename":"layout"},{"editable":false,"columns":[{"span":"9","editable":false,"modules":[{"name":"twoColumnImageDense","source":"105843063","canChangeLayout":true,"canChangeSource":true,"serverRenderPolicy":null,"attributes":{"truncate":{"firstElement":130,"otherElements":110},"displayThumbnailPreviews":false},"options":{"pageSize":8,"promoted":true},"data":{"id":105843063,"brand":"cnbc","eyebrow":"Investing in supertrends","url":"https:\u002F\u002Fwww.cnbc.com\u002Finvesting-in-supertrends\u002F","assets":[{"id":107104973,"title":"Web3 is in chaos and metaverses are in their own walled gardens, says Randi Zuckerberg","type":"cnbcnewsstory","brand":"cnbc","linkHeadline":"Web3 is in chaos and metaverses are in their own walled gardens, says Randi Zuckerberg","shorterHeadline":"Web3 is in chaos and metaverses are in walled gardens: Randi Zuckerberg","premium":false,"native":false,"promoImage":{"id":107105564,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107105564-1660781055185-gettyimages-1365200314-crypto-virtual-museum.jpeg?v=1660796358","__typename":"infographic"},"author":[{"id":107031844,"name":"Goh Chiew Tong","url":"https:\u002F\u002Fwww.cnbc.com\u002Fgoh-chiew-tong\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F08\u002F18\u002Fweb3-is-in-chaos-metaverses-in-walled-gardens-randi-zuckerberg.html","creatorOverwrite":null,"datePublished":"2022-08-18T05:15:29+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Thu, Aug 18th 2022","sourceOrganization":[{"id":100005489,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20Asia","__typename":"source"}],"__typename":"cnbcnewsstory"},{"id":107104926,"title":"Japanese support for a nuclear restart is at its highest since Fukushima disaster, says former IEA executive director","type":"cnbcnewsstory","brand":"cnbc","linkHeadline":"Japanese support for a nuclear restart is at its highest since Fukushima: Ex-IEA executive director","shorterHeadline":"Japanese support for nuclear restart highest since Fukushima: Ex-IEA director","premium":false,"native":false,"promoImage":{"id":107104927,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107104927-1660708298881-gettyimages-1148304899-338653565_1-5.jpeg?v=1660716821","__typename":"infographic"},"author":[{"id":107099361,"name":"Lee Ying Shan","url":"https:\u002F\u002Fwww.cnbc.com\u002Flee-ying-shan\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F08\u002F17\u002Fjapan-support-for-nuclear-restart-is-highest-since-fukushima-disaster.html","creatorOverwrite":null,"datePublished":"2022-08-17T08:00:05+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Wed, Aug 17th 2022","sourceOrganization":[{"id":100005489,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20Asia","__typename":"source"}],"__typename":"cnbcnewsstory"},{"id":107099360,"title":"Australia, India and Singapore companies are still hiring. Here's where the jobs are","type":"cnbcnewsstory","brand":"cnbc","linkHeadline":"Australia, India and Singapore companies are still hiring. Here's where the jobs are","shorterHeadline":"Australia, India and Singapore companies are still hiring. Here's where the jobs are","premium":false,"native":false,"promoImage":{"id":107099502,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107099502-1659691998572-gettyimages-1331269558-dsc03641-edit.jpeg?v=1659692133","__typename":"infographic"},"author":[{"id":106915801,"name":"Charmaine Jacob","url":"https:\u002F\u002Fwww.cnbc.com\u002Fcharmaine-jacob\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F08\u002F10\u002Findia-australia-singapore-firms-jobs-are-in-these-sectors-linkedin.html","creatorOverwrite":null,"datePublished":"2022-08-09T23:44:17+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Tue, Aug 9th 2022","sourceOrganization":[{"id":100005489,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20Asia","__typename":"source"}],"__typename":"cnbcnewsstory"},{"id":107100110,"title":"Baidu's robotaxis don't need any human staff in these parts of China","type":"cnbcnewsstory","brand":"cnbc","linkHeadline":"Baidu's robotaxis don't need any human staff in these parts of China","shorterHeadline":"Baidu's robotaxis don't need any human staff in these parts of China","premium":false,"native":false,"promoImage":{"id":107100111,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F107100111-1659921398203-Image_from_iOS_64.jpg?v=1659924662","__typename":"infographic"},"author":[{"id":101069441,"name":"Evelyn Cheng","url":"https:\u002F\u002Fwww.cnbc.com\u002Fevelyn-cheng\u002F","__typename":"creator"}],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2022\u002F08\u002F08\u002Fbaidus-robotaxis-dont-need-any-human-staff-in-these-parts-of-china.html","creatorOverwrite":null,"datePublished":"2022-08-08T02:23:25+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Mon, Aug 8th 2022","sourceOrganization":[{"id":100005489,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20Asia","__typename":"source"}],"__typename":"cnbcnewsstory"},{"id":106916518,"title":"Action on climate change can provide a shot in the arm for the global economy, economist says","type":"cnbcnewsstory","brand":"cnbc","linkHeadline":"Action on climate change can provide a shot in the arm for the global economy, economist says","shorterHeadline":"Climate change action can provide a shot in the arm for economy: Economist","premium":false,"native":false,"promoImage":{"id":106884038,"url":"https:\u002F\u002Fimage.cnbcfm.com\u002Fapi\u002Fv1\u002Fimage\u002F106884038-1621271309996-gettyimages-1232952177-AFP_9A764Z.jpeg?v=1638917441","__typename":"infographic"},"author":[],"url":"https:\u002F\u002Fwww.cnbc.com\u002F2021\u002F07\u002F26\u002Faction-on-climate-change-can-boost-global-economy-economist-says.html","creatorOverwrite":"Jonathan Keane","datePublished":"2021-07-26T05:58:28+0000","coverageEndDate":null,"contentClassification":[],"dateLastPublishedSixHr":"","dateLastPublishedFormattedWithoutTime":"Mon, Jul 26th 2021","sourceOrganization":[{"id":100005495,"name":"CNBC.com","url":"https:\u002F\u002Fwww.cnbc.com\u002Fsearch\u002F?query=CNBC%20Europe","__typename":"source"}],"__typename":"cnbcnewsstory"}],"__typename":"twoColumnImageDense"},"__typename":"module"}],"__typename":"column"},{"span":"3","editable":false,"modules":[{"name":"adBoxRail","source":"right","canChangeLayout":false,"canChangeSource":false,"serverRenderPolicy":"client","attributes":{"placement":"right"},"options":{},"data":{"__typename":"asset"},"__typename":"module"}],"__typename":"column"}],"__typename":"layout"}],"aboutThisSection":null,"additionalMetadata":null,"additionalSectionContentFormatted":"NA","additionalSectionContentFormattedFull":"NA","authorFormatted":"NA","authorFormattedFull":"NA","brand":"cnbc","color":null,"contentClassification":[],"cmsTemplate":"Topic Template","creatorOverwrite":null,"creatorOverwriteFormatted":"NA","dateFirstPublished":"2013-05-10T14:41:50+0000","dateLastPublished":"2022-09-25T02:46:19+0000","datePublished":"2016-09-27T13:00:09+0000","description":"CNBC International is the world leader for news on business, technology, China, trade, oil prices, the Middle East and markets.","expires":null,"headline":"World News & Analysis","id":100727362,"liveURL":"\u002Fworld-top-news\u002F","native":false,"pageName":"100727362|world-top-news","premium":false,"projectContentFormatted":"NA","projectContentFormattedFull":"NA","projectTeamContentFormatted":"cnbc europe tea|cnbc asia team","projectTeamContentFormattedFull":"cnbc europe team|cnbc asia team","relatedTagsFilteredFormatted":"cnbc meets|charting asia","relatedTagsFilteredFormattedFull":"cnbc meets|charting asia","sectionHierarchyFormatted":"international t","sectionHierarchyFormattedFull":"international top news and analysis","seoTitle":"International Business, World News & Global Stock Market Analysis","shortDateFirstPublished":"05\u002F10\u002F2013","shortDateLastPublished":"9\u002F24\u002F2022","shortDatePublished":"9\u002F27\u002F2016","shortenedUrls":null,"slug":"International: Top News and Analysis","sourceOrganizationFormatted":"NA","sourceOrganizationFormattedFull":"NA","subDomain":"https:\u002F\u002Fwww.cnbc.com","subType":"section","tagName":"International: Top News And Analysis","tagNameFormatted":"international t","tagNameFormattedFull":"international top news and analysis","template":"Home Page International","title":"International: Top News And Analysis","type":"franchise","url":"https:\u002F\u002Fwww.cnbc.com\u002Fworld\u002F","canonicalUrlOverride":null,"vcpsId":null,"additionalSectionContent":[],"author":[],"featuredMedia":null,"projectContent":[],"projectTeamContent":[{"headline":null,"id":100002778,"tagName":"CNBC Europe Team","tagNameFormatted":"cnbc europe tea","tagNameFormattedFull":"cnbc europe team","__typename":"team"},{"headline":null,"id":100002784,"tagName":"CNBC Asia Team","tagNameFormatted":"cnbc asia team","tagNameFormattedFull":"cnbc asia team","__typename":"team"}],"promoImage":null,"publisher":{"logo":"https:\u002F\u002Fsc.cnbcfm.com\u002Fapplications\u002Fcnbc.com\u002Fstaticcontent\u002Fimg\u002Fcnbc-hdr-logo2.png","name":"CNBC","__typename":"publisher"},"relatedContent":[{"headline":"U.S. News","id":15837362,"tagName":"US: News","tagNameFormatted":"us news","tagNameFormattedFull":"us news","type":"franchise","__typename":"tag"},{"headline":"Asia-Pacific News","id":19832390,"tagName":"Asia News","tagNameFormatted":"asia news","tagNameFormattedFull":"asia news","type":"franchise","__typename":"tag"},{"headline":"Europe News","id":19794221,"tagName":"Europe News","tagNameFormatted":"europe news","tagNameFormattedFull":"europe news","type":"franchise","__typename":"tag"}],"relatedTags":[{"id":43025367,"name":"CNBC Meets","tagName":"CNBC Meets","__typename":"tag"},{"id":23103686,"name":"Charting Asia with Daryl Guppy","tagName":"Charting Asia","__typename":"tag"}],"relatedTagsFiltered":[{"headline":"CNBC Meets","id":43025367,"name":"CNBC Meets","tagName":"CNBC Meets","tagNameFormatted":"cnbc meets","tagNameFormattedFull":"cnbc meets","type":"franchise","__typename":"tag"},{"headline":"Charting Asia with Daryl Guppy","id":23103686,"name":"Charting Asia with Daryl Guppy","tagName":"Charting Asia","tagNameFormatted":"charting asia","tagNameFormattedFull":"charting asia","type":"franchise","__typename":"tag"}],"section":{"eyebrow":"CNBC Utilities Page","headline":"CNBC Utilities Page","id":101050794,"subType":"section","tagName":"CNBC Utilities Page","tagNameFormatted":"cnbc utilities ","tagNameFormattedFull":"cnbc utilities page","title":"CNBC Utilities Page","type":"franchise","url":"https:\u002F\u002Fwww.cnbc.com\u002Futility-page\u002F","__typename":"franchise"},"sectionHierarchy":[{"id":100727362,"order":1,"tagName":"International: Top News And Analysis","tagNameFormatted":"international t","tagNameFormattedFull":"international top news and analysis","__typename":"sectionHierarchy"}],"sourceOrganization":null,"__typename":"page","queryParams":{}}},"menu":{"menu":{"header":{"expanded":[{"name":"markets","label":"Markets","host":"","path":"\u002Fmarkets\u002F","items":[{"name":"pre_markets","label":"Pre-Markets","host":"","path":"\u002Fpre-markets\u002F","items":[]},{"name":"us_markets","label":"U.S. Markets","host":"","path":"\u002Fus-markets\u002F","items":[]},{"name":"europe_markets","label":"Europe Markets","host":"","path":"\u002Fmarkets-europe\u002F","region":"WORLD","items":[]},{"name":"china_markets","label":"China Markets","host":"","path":"\u002Fchina-markets\u002F","region":"WORLD","items":[]},{"name":"asia_markets","label":"Asia Markets","host":"","path":"\u002Fmarkets-asia-pacific\u002F","region":"WORLD","items":[]},{"name":"world_markets","label":"World Markets","host":"","path":"\u002Fworld-markets\u002F","region":"WORLD","items":[]},{"name":"currencies","label":"Currencies","host":"","path":"\u002Fcurrencies\u002F","items":[]},{"name":"cryptocurrency","label":"Cryptocurrency","host":"","path":"\u002Fcryptocurrency\u002F","items":[]},{"name":"futures & commodities","label":"Futures & Commodities","host":"","path":"\u002Ffutures-and-commodities\u002F","items":[]},{"name":"bonds","label":"Bonds","host":"","path":"\u002Fbonds\u002F","items":[]},{"name":"funds & etfs","label":"Funds & ETFs","host":"","path":"\u002Ffunds-and-etfs\u002F","items":[]}]},{"name":"business_news","label":"Business","host":"","path":"\u002Fbusiness\u002F","items":[{"name":"economy","label":"Economy","host":"","path":"\u002Feconomy\u002F","items":[]},{"name":"finance","label":"Finance","host":"","path":"\u002Ffinance\u002F","items":[]},{"name":"health & science","label":"Health & Science","host":"","path":"\u002Fhealth-and-science\u002F","items":[]},{"name":"media","label":"Media","host":"","path":"\u002Fmedia\u002F","items":[]},{"name":"real_estate","label":"Real Estate","host":"","path":"\u002Freal-estate\u002F","items":[]},{"name":"energy","label":"Energy","host":"","path":"\u002Fenergy\u002F","items":[]},{"name":"climate","label":"Climate","host":"","path":"\u002Fclimate\u002F","items":[]},{"name":"transportation","label":"Transportation","host":"","path":"\u002Ftransportation\u002F","items":[]},{"name":"industrials","label":"Industrials","host":"","path":"\u002Findustrials\u002F","items":[]},{"name":"retail","label":"Retail","host":"","path":"\u002Fretail\u002F","items":[]},{"name":"wealth","label":"Wealth","host":"","path":"\u002Fwealth\u002F","items":[]},{"name":"life","label":"Life","host":"","path":"\u002Flife\u002F","items":[]},{"name":"small_business","label":"Small Business","host":"","path":"\u002Fsmall-business\u002F","items":[]}]},{"name":"investing","label":"Investing","host":"","path":"\u002Finvesting\u002F","items":[{"name":"personal_finance","label":"Personal Finance","host":"","path":"\u002Fpersonal-finance\u002F","items":[]},{"name":"fintech","label":"Fintech","host":"","path":"\u002Ffintech\u002F","items":[]},{"name":"financial_advisors","label":"Financial Advisors","host":"","path":"\u002Ffinancial-advisors\u002F","items":[]},{"name":"options_action","label":"Options Action","host":"","path":"\u002Foptions-action\u002F","items":[]},{"name":"etf_street","label":"ETF Street","host":"","path":"\u002Fetf-street\u002F","items":[]},{"name":"buffett_archive","label":"Buffett Archive","host":"https:\u002F\u002Fbuffett.cnbc.com","path":"","items":[]},{"name":"earnings","label":"Earnings","host":"","path":"\u002Fearnings\u002F","items":[]},{"name":"trader_talk","label":"Trader Talk","host":"","path":"\u002Ftrader-talk\u002F","items":[]}]},{"name":"tech","label":"Tech","host":"","path":"\u002Ftechnology\u002F","items":[{"name":"cybersecurity","label":"Cybersecurity","host":"","path":"\u002Fcybersecurity\u002F","items":[]},{"name":"enterprise","label":"Enterprise","host":"","path":"\u002Fenterprise\u002F","items":[]},{"name":"internet","label":"Internet","host":"","path":"\u002Finternet\u002F","items":[]},{"name":"media","label":"Media","host":"","path":"\u002Fmedia\u002F","items":[]},{"name":"mobile","label":"Mobile","host":"","path":"\u002Fmobile\u002F","items":[]},{"name":"social_media","label":"Social Media","host":"","path":"\u002Fsocial-media\u002F","items":[]},{"name":"cnbc_disruptors","label":"CNBC Disruptor 50","host":"","path":"\u002Fcnbc-disruptors\u002F","items":[]},{"name":"tech_guide","label":"Tech Guide","host":"","path":"\u002Ftech-guide\u002F","items":[]}]},{"name":"politics","label":"Politics","host":"","path":"\u002Fpolitics\u002F","items":[{"name":"white_house","label":"White House","host":"","path":"\u002Fwhite-house\u002F","items":[]},{"name":"policy","label":"Policy","host":"","path":"\u002Fpolicy\u002F","items":[]},{"name":"defense","label":"Defense","host":"","path":"\u002Fdefense\u002F","items":[]},{"name":"congress","label":"Congress","host":"","path":"\u002Fcongress\u002F","items":[]},{"name":"equity_opportunity","label":"Equity and Opportunity","host":"","path":"\u002Fequity-opportunity\u002F","items":[]},{"name":"europe","label":"Europe Politics","host":"","path":"\u002Feurope-politics\u002F","region":"WORLD","items":[]},{"name":"china","label":"China Politics","host":"","path":"\u002Fchina-politics\u002F","region":"WORLD","items":[]},{"name":"asia","label":"Asia Politics","host":"","path":"\u002Fasia-politics\u002F","region":"WORLD","items":[]},{"name":"world","label":"World Politics","host":"","path":"\u002Fworld-politics\u002F","region":"WORLD","items":[]}]},{"name":"cnbc_tv","label":"CNBC TV","host":"","path":"\u002Ftv\u002F","items":[{"name":"live_audio","label":"Live Audio","host":"","path":"\u002Flive-audio\u002F","items":[]},{"name":"latest_videos","label":"Latest Video","host":"","path":"\u002Flatest-video\u002F","items":[]},{"name":"top_video","label":"Top Video","host":"","path":"\u002Ftop-video\u002F","items":[]},{"name":"ceo_interviews","label":"CEO Interviews","host":"","path":"\u002Fvideo-ceo-interviews\u002F","items":[]},{"name":"europe_tv","label":"Europe TV","host":"","path":"\u002Feurope-television\u002F","region":"WORLD","items":[]},{"name":"asia_tv","label":"Asia TV","host":"","path":"\u002Fasia-business-day\u002F","region":"WORLD","items":[]},{"name":"cnbc_podcasts","label":"CNBC Podcasts","host":"","path":"\u002Fpodcast\u002F","items":[]},{"name":"digital_originals","label":"Digital Originals","host":"","path":"\u002Fdigital-original\u002F","items":[]}]},{"name":"investing_club","label":"Investing Club","host":"","path":"\u002Finvestingclub\u002F","items":[{"name":"trade_alerts","label":"Trade Alerts","host":"","path":"\u002Finvestingclub\u002Fcramer-trade-alert\u002F","items":[]},{"name":"jims_morning_thoughts","label":"Jim's Morning Thoughts","host":"","path":"\u002Finvestingclub\u002Fcramers-morning-thoughts\u002F","items":[]},{"name":"analysis","label":"Analysis","host":"","path":"\u002Finvestingclub\u002Fanalysis\u002F","items":[]},{"name":"morning_meeting","label":"Morning Meeting","host":"","path":"\u002Finvestingclub\u002Fmorning-meeting\u002F","items":[]},{"name":"trust_portfolio","label":"Trust Portfolio","host":"","path":"\u002Finvestingclub\u002Fcharitable-trust\u002F","items":[]}]},{"name":"pro","label":"PRO","host":"","path":"\u002Fpro\u002F","items":[{"name":"pro_news","label":"Pro News","host":"","path":"\u002Fpro\u002Fnews\u002F","items":[]},{"name":"pro_live","label":"Pro Live","host":"","path":"\u002Fpro\u002F","items":[]},{"name":"subscribe_to_pro","label":"Subscribe","host":"","path":"\u002Fapplication\u002Fpro","items":[]},{"name":"user_signin","label":"Sign In","host":"","items":[]}]},{"name":"watchlist","label":"Watchlist","host":"","path":"\u002Fwatchlist\u002F","items":[]},{"name":"user_signin","label":"Sign In","host":"","path":"javascript:void(0);","items":[]},{"name":"account","label":"My Account","host":"","path":"","items":[{"name":"email","label":"","host":"","path":"","items":[]},{"name":"profile","label":"Profile","host":"","path":"\u002Faccount\u002F#profile","items":[]},{"name":"notifications","label":"Notifications","host":"","path":"\u002Faccount\u002F#notifications","items":[]},{"name":"subscriptions","label":"Subscriptions","host":"","path":"\u002Faccount\u002F#subscriptions","items":[]},{"name":"help","label":"Help","host":"","path":"\u002Faccount\u002F#help","items":[]},{"name":"user_signout","label":"Sign Out","host":"","path":"\u002Fpro\u002F","items":[]}]},{"name":"advertise_with_us","label":"Advertise With Us","host":"https:\u002F\u002Ftogether.nbcuni.com\u002Fadvertise\u002F?utm_source=cnbc&utm_medium=referral&utm_campaign=property_ad_pages&utm_content=header","path":"","items":[]},{"name":"Events","label":"Events","host":"www.cnbc.com","path":"\u002Fevents-nav-menu\u002F","items":[{"name":"Delivering Alpha","label":"Delivering Alpha","host":"www.cnbcevents.com","path":"\u002Fdelivering-alpha-2022\u002F?__source=meganav|events","capacity":0,"startDate":"2022-09-28T04:00:00+0000","items":[]},{"name":"ESG Impact","label":"ESG Impact","host":"www.cnbcevents.com","path":"\u002Fesg-impact-2022\u002F","capacity":0,"startDate":"2022-10-06T04:00:00+0000","items":[]},{"name":"D50X Summit","label":"D50X Summit","host":"www.cnbcevents.com","path":"\u002Fd50x-2022\u002F?__source=meganav|events","capacity":0,"startDate":"2022-10-20T04:00:00+0000","items":[]},{"name":"CNBC Work Summit","label":"CNBC Work Summit","host":"www.cnbcevents.com","path":"\u002Fwork-summit-2022\u002F","endDate":"2022-10-27T03:59:00+0000","capacity":0,"startDate":"2022-10-25T04:00:00+0000","items":[]},{"name":"CNBC Your Money","label":"CNBC Your Money","host":"www.cnbcevents.com","path":"\u002Fyour-money-2022\u002F?__source=meganav|events","capacity":0,"items":[]},{"name":"Financial Advisor Summit","label":"Financial Advisor Summit","host":"www.cnbcevents.com","path":"\u002Ffinancial-advisor-summit-december-2022\u002F?__source=meganav|events","capacity":0,"items":[]}]},{"name":"Special Reports","label":"Special Reports","host":"www.cnbc.com","path":"\u002Fspecial-reports\u002F","items":[{"name":"Crypto World","label":"Crypto World","host":"www.cnbc.com","path":"\u002Fcryptoworld\u002F","items":[]},{"name":"Evolve","label":"Evolve","host":"www.cnbc.com","path":"\u002Fevolve\u002F","items":[]},{"name":"Fired Up","label":"Fired Up","host":"www.cnbc.com","path":"\u002Ffired-up\u002F","items":[]},{"name":"State of Freight","label":"State of Freight","host":"www.cnbc.com","path":"\u002Fstate-of-freight\u002F","items":[]},{"name":"Delivering Alpha","label":"Delivering Alpha","host":"www.cnbc.com","path":"\u002Fdelivering-alpha\u002F","items":[]},{"name":"The Bottom Line","label":"The Bottom Line","host":"www.cnbc.com","path":"\u002Fglobal-cfo-council\u002F","items":[]},{"name":"CNBC Disruptor 50","label":"CNBC Disruptor 50","host":"www.cnbc.com","path":"\u002Fcnbc-disruptors\u002F","items":[]},{"name":"CNBC Work","label":"CNBC Work","host":"www.cnbc.com","path":"\u002Fwork\u002F","items":[]},{"name":"FA Playbook","label":"FA Playbook","host":"www.cnbc.com","path":"\u002Ffa-playbook\u002F","items":[]},{"name":"Investor Toolkit","label":"Investor Toolkit","host":"www.cnbc.com","path":"\u002Finvestor-toolkit\u002F","items":[]},{"name":"Technology Executive Council","label":"Technology Executive Council","host":"www.cnbc.com","path":"\u002Ftec\u002F","items":[]},{"name":"Small Business Playbook","label":"Small Business Playbook","host":"www.cnbc.com","path":"\u002Fsmall-business-playbook\u002F","items":[]},{"name":"CNBC Millionaire Survey","label":"CNBC Millionaire Survey","host":"www.cnbc.com","path":"\u002Fmillionaire-survey\u002F","items":[]},{"name":"Your Money, Your Future","label":"Your Money, Your Future","host":"www.cnbc.com","path":"\u002Fyour-money-your-future\u002F","items":[]},{"name":"Executive Edge","label":"Executive Edge","host":"www.cnbc.com","path":"\u002Fexecutive-edge\u002F","items":[]},{"name":"5 Things to Know","label":"5 Things to Know","host":"www.cnbc.com","path":"\u002F5-things-to-know\u002F","items":[]},{"name":"America's Top States for Business","label":"America's Top States for Business","host":"www.cnbc.com","path":"\u002Famericas-top-states-for-business\u002F","items":[]},{"name":"Aspen Ideas Festival","label":"Aspen Ideas Festival","host":"www.cnbc.com","path":"\u002Faspen\u002F","items":[]},{"name":"Davos - World Economic Forum","label":"Davos - World Economic Forum","host":"www.cnbc.com","path":"\u002Fdavos-world-economic-forum\u002F","items":[]},{"name":"Options Action","label":"Options Action","host":"www.cnbc.com","path":"\u002Foptions-action\u002F","items":[]}]},{"name":"Podcasts","label":"Podcasts","host":"www.cnbc.com","path":"\u002Fpodcast\u002F","items":[{"label":"Power Lunch Podcast","host":"www.cnbc.com","path":"\u002F2022\u002F04\u002F11\u002Fpower-lunch-podcast.html","items":[]},{"label":"Closing Bell Podcast","host":"www.cnbc.com","path":"\u002F2022\u002F03\u002F10\u002Fclosing-bell-podcast.html","items":[]},{"label":"CNBC Special Podcast: ExxonMobil at the Crossroads","host":"www.cnbc.com","path":"\u002F2022\u002F08\u002F24\u002Fcnbc-special-podcast-exxonmobil-at-the-crossroads.html","items":[]},{"label":"CNBC Special Podcast: Generation Gamble ","host":"www.cnbc.com","path":"\u002F2021\u002F11\u002F11\u002Fgeneration-gamble-podcast.html","items":[]},{"label":"Squawk Pod","host":"www.cnbc.com","path":"\u002F2019\u002F09\u002F24\u002Fsquawk-pod.html","items":[]},{"label":"TechCheck Podcast","host":"www.cnbc.com","path":"\u002F2021\u002F04\u002F09\u002Ftechcheck-podcast.html","items":[]},{"label":"The News with Shepard Smith Podcast","host":"www.cnbc.com","path":"\u002Fthe-news-with-shepard-smith-podcast\u002F","items":[]},{"label":"Worldwide Exchange Podcast","host":"www.cnbc.com","path":"\u002F2020\u002F12\u002F11\u002Fworldwide-exchange-podcast.html","items":[]},{"label":"Squawk on the Street Podcast","host":"www.cnbc.com","path":"\u002F2019\u002F08\u002F01\u002Fsquawk-on-the-street-podcast.html","items":[]},{"label":"Halftime Report Podcast","host":"www.cnbc.com","path":"\u002F2020\u002F07\u002F28\u002Fhalftime-report-podcast.html","items":[]},{"label":"The Exchange Podcast","host":"www.cnbc.com","path":"\u002F2019\u002F12\u002F30\u002Fthe-exchange-podcast.html","items":[]},{"label":"ETF Edge Podcast","host":"www.cnbc.com","path":"\u002F2020\u002F04\u002F21\u002Fetf-edge-podcast.html","items":[]},{"label":"The Keynote by CNBC Events","host":"www.cnbc.com","path":"\u002F2020\u002F01\u002F06\u002Fthe-keynote-by-cnbc-events.html","items":[]},{"label":"Your Money Minute","host":"www.cnbc.com","path":"\u002F2020\u002F06\u002F05\u002Fyour-money-minute.html","items":[]},{"label":"American Greed Podcast","host":"www.cnbc.com","path":"\u002F2018\u002F09\u002F04\u002Famerican-greed-podcast.html","items":[]},{"label":"Squawk Box Europe Express","host":"www.cnbc.com","path":"\u002Fsquawkboxpodcast\u002F","items":[]},{"label":"Mad Money with Jim Cramer Podcast","host":"www.cnbc.com","path":"\u002F2018\u002F03\u002F01\u002Fmad-money-with-jim-cramer-podcast.html","items":[]},{"label":"Fast Money Podcast","host":"www.cnbc.com","path":"\u002F2018\u002F03\u002F01\u002Ffast-money-podcast.html","items":[]},{"label":"Beyond the Valley","host":"www.cnbc.com","path":"\u002Fbeyondthevalley\u002F","items":[]},{"label":"The Brave Ones Podcast","host":"www.cnbc.com","path":"\u002F2019\u002F09\u002F04\u002Fthe-brave-ones-podcast.html","items":[]}]}],"collapsed":[{"name":"markets","label":"Markets","host":"","path":"\u002Fmarkets\u002F","items":[{"name":"pre_markets","label":"Pre-Markets","host":"","path":"\u002Fpre-markets\u002F","items":[]},{"name":"us_markets","label":"U.S. Markets","host":"","path":"\u002Fus-markets\u002F","items":[]},{"name":"europe_markets","label":"Europe Markets","host":"","path":"\u002Fmarkets-europe\u002F","region":"WORLD","items":[]},{"name":"china_markets","label":"China Markets","host":"","path":"\u002Fchina-markets\u002F","region":"WORLD","items":[]},{"name":"asia_markets","label":"Asia Markets","host":"","path":"\u002Fmarkets-asia-pacific\u002F","region":"WORLD","items":[]},{"name":"world_markets","label":"World Markets","host":"","path":"\u002Fworld-markets\u002F","region":"WORLD","items":[]},{"name":"currencies","label":"Currencies","host":"","path":"\u002Fcurrencies\u002F","items":[]},{"name":"cryptocurrency","label":"Cryptocurrency","host":"","path":"\u002Fcryptocurrency\u002F","items":[]},{"name":"futures & commodities","label":"Futures & Commodities","host":"","path":"\u002Ffutures-and-commodities\u002F","items":[]},{"name":"bonds","label":"Bonds","host":"","path":"\u002Fbonds\u002F","items":[]},{"name":"funds & etfs","label":"Funds & ETFs","host":"","path":"\u002Ffunds-and-etfs\u002F","items":[]}]},{"name":"business_news","label":"Business","host":"","path":"\u002Fbusiness\u002F","items":[{"name":"economy","label":"Economy","host":"","path":"\u002Feconomy\u002F","items":[]},{"name":"finance","label":"Finance","host":"","path":"\u002Ffinance\u002F","items":[]},{"name":"health & science","label":"Health & Science","host":"","path":"\u002Fhealth-and-science\u002F","items":[]},{"name":"media","label":"Media","host":"","path":"\u002Fmedia\u002F","items":[]},{"name":"real_estate","label":"Real Estate","host":"","path":"\u002Freal-estate\u002F","items":[]},{"name":"energy","label":"Energy","host":"","path":"\u002Fenergy\u002F","items":[]},{"name":"climate","label":"Climate","host":"","path":"\u002Fclimate\u002F","items":[]},{"name":"transportation","label":"Transportation","host":"","path":"\u002Ftransportation\u002F","items":[]},{"name":"industrials","label":"Industrials","host":"","path":"\u002Findustrials\u002F","items":[]},{"name":"retail","label":"Retail","host":"","path":"\u002Fretail\u002F","items":[]},{"name":"wealth","label":"Wealth","host":"","path":"\u002Fwealth\u002F","items":[]},{"name":"life","label":"Life","host":"","path":"\u002Flife\u002F","items":[]},{"name":"small_business","label":"Small Business","host":"","path":"\u002Fsmall-business\u002F","items":[]}]},{"name":"investing","label":"Investing","host":"","path":"\u002Finvesting\u002F","items":[{"name":"personal_finance","label":"Personal Finance","host":"","path":"\u002Fpersonal-finance\u002F","items":[]},{"name":"fintech","label":"Fintech","host":"","path":"\u002Ffintech\u002F","items":[]},{"name":"financial_advisors","label":"Financial Advisors","host":"","path":"\u002Ffinancial-advisors\u002F","items":[]},{"name":"options_action","label":"Options Action","host":"","path":"\u002Foptions-action\u002F","items":[]},{"name":"etf_street","label":"ETF Street","host":"","path":"\u002Fetf-street\u002F","items":[]},{"name":"buffett_archive","label":"Buffett Archive","host":"https:\u002F\u002Fbuffett.cnbc.com","path":"","items":[]},{"name":"earnings","label":"Earnings","host":"","path":"\u002Fearnings\u002F","items":[]},{"name":"trader_talk","label":"Trader Talk","host":"","path":"\u002Ftrader-talk\u002F","items":[]}]},{"name":"tech","label":"Tech","host":"","path":"\u002Ftechnology\u002F","items":[{"name":"cybersecurity","label":"Cybersecurity","host":"","path":"\u002Fcybersecurity\u002F","items":[]},{"name":"enterprise","label":"Enterprise","host":"","path":"\u002Fenterprise\u002F","items":[]},{"name":"internet","label":"Internet","host":"","path":"\u002Finternet\u002F","items":[]},{"name":"media","label":"Media","host":"","path":"\u002Fmedia\u002F","items":[]},{"name":"mobile","label":"Mobile","host":"","path":"\u002Fmobile\u002F","items":[]},{"name":"social_media","label":"Social Media","host":"","path":"\u002Fsocial-media\u002F","items":[]},{"name":"cnbc_disruptors","label":"CNBC Disruptor 50","host":"","path":"\u002Fcnbc-disruptors\u002F","items":[]},{"name":"tech_guide","label":"Tech Guide","host":"","path":"\u002Ftech-guide\u002F","items":[]}]},{"name":"politics","label":"Politics","host":"","path":"\u002Fpolitics\u002F","items":[{"name":"white_house","label":"White House","host":"","path":"\u002Fwhite-house\u002F","items":[]},{"name":"policy","label":"Policy","host":"","path":"\u002Fpolicy\u002F","items":[]},{"name":"defense","label":"Defense","host":"","path":"\u002Fdefense\u002F","items":[]},{"name":"congress","label":"Congress","host":"","path":"\u002Fcongress\u002F","items":[]},{"name":"equity_opportunity","label":"Equity and Opportunity","host":"","path":"\u002Fequity-opportunity\u002F","items":[]},{"name":"europe","label":"Europe Politics","host":"","path":"\u002Feurope-politics\u002F","region":"WORLD","items":[]},{"name":"china","label":"China Politics","host":"","path":"\u002Fchina-politics\u002F","region":"WORLD","items":[]},{"name":"asia","label":"Asia Politics","host":"","path":"\u002Fasia-politics\u002F","region":"WORLD","items":[]},{"name":"world","label":"World Politics","host":"","path":"\u002Fworld-politics\u002F","region":"WORLD","items":[]}]},{"name":"cnbc_tv","label":"CNBC TV","host":"","path":"\u002Ftv\u002F","items":[{"name":"live_audio","label":"Live Audio","host":"","path":"\u002Flive-audio\u002F","items":[]},{"name":"latest_videos","label":"Latest Video","host":"","path":"\u002Flatest-video\u002F","items":[]},{"name":"top_video","label":"Top Video","host":"","path":"\u002Ftop-video\u002F","items":[]},{"name":"ceo_interviews","label":"CEO Interviews","host":"","path":"\u002Fvideo-ceo-interviews\u002F","items":[]},{"name":"europe_tv","label":"Europe TV","host":"","path":"\u002Feurope-television\u002F","region":"WORLD","items":[]},{"name":"asia_tv","label":"Asia TV","host":"","path":"\u002Fasia-business-day\u002F","region":"WORLD","items":[]},{"name":"cnbc_podcasts","label":"CNBC Podcasts","host":"","path":"\u002Fpodcast\u002F","items":[]},{"name":"digital_originals","label":"Digital Originals","host":"","path":"\u002Fdigital-original\u002F","items":[]}]},{"name":"watchlist","label":"Watchlist","host":"","path":"\u002Fwatchlist\u002F","items":[]},{"name":"investing_club","label":"Investing Club","host":"","path":"\u002Finvestingclub\u002F","items":[{"name":"trade_alerts","label":"Trade Alerts","host":"","path":"\u002Finvestingclub\u002Fcramer-trade-alert\u002F","items":[]},{"name":"jims_morning_thoughts","label":"Jim's Morning Thoughts","host":"","path":"\u002Finvestingclub\u002Fcramers-morning-thoughts\u002F","items":[]},{"name":"analysis","label":"Analysis","host":"","path":"\u002Finvestingclub\u002Fanalysis\u002F","items":[]},{"name":"morning_meeting","label":"Morning Meeting","host":"","path":"\u002Finvestingclub\u002Fmorning-meeting\u002F","items":[]},{"name":"trust_portfolio","label":"Trust Portfolio","host":"","path":"\u002Finvestingclub\u002Fcharitable-trust\u002F","items":[]}]},{"name":"pro","label":"PRO","host":"","path":"\u002Fpro\u002F","items":[{"name":"pro_news","label":"Pro News","host":"","path":"\u002Fpro\u002Fnews\u002F","items":[]},{"name":"pro_live","label":"Pro Live","host":"","path":"\u002Fpro\u002F","items":[]},{"name":"subscribe_to_pro","label":"Subscribe","host":"","path":"\u002Fapplication\u002Fpro","items":[]},{"name":"user_signin","label":"Sign In","host":"","items":[]}]}],"edition":[{"name":"us_edition","label":"USA","host":"","path":"\u002F?region=usa","items":[]},{"name":"international_edition","label":"INTL","host":"","path":"\u002Fworld\u002F","items":[]}],"featured":[{"name":"makeit","label":"Make It","host":"","path":"\u002Fmake-it\u002F","items":[]}]}}},"request":{"cookies":{"region":"WORLD"},"hostname":"web.cnbc.com","query":{},"headers":{"partner":"cnbc01"},"site":"cnbc","path":"\u002Fworld-top-news\u002F"},"quote":{},"sailthru":{"sailthruLoaded":false},"relatedVideos":{},"videoPlaceholders":{"activeVideoPlaceholderKey":null,"placeholders":{}},"marketSummary":{}}; window.__c_data={}; window.styles={"containers\u002FApp\u002Fstyles.scss":{"default":{"electricblue":"#1ff1c8","orange":"#f87121","articleBody":"App-articleBody","bodyText":"App-bodyText","listWrapper":"App-listWrapper","listTitle":"App-listTitle","contentWrapper":"App-contentWrapper","contentWrapperClock":"App-contentWrapperClock","containerClick":"App-containerClick","proContentRecommendation":"App-proContentRecommendation","makeit":"App-makeit","buttonContainer":"App-buttonContainer","buttonLink":"App-buttonLink"},"_style":undefined},"containers\u002FBrandPageWrapper\u002Fstyles.cnbc.scss":{"default":{"electricblue":"#1ff1c8","orange":"#f87121","contentWrapper":"BrandPageWrapper-contentWrapper","xfinity":"BrandPageWrapper-xfinity","countDownClock":"BrandPageWrapper-countDownClock","fiveThings":"BrandPageWrapper-fiveThings","newsAlert":"BrandPageWrapper-newsAlert","liveAlert":"BrandPageWrapper-liveAlert","liveAlertAd":"BrandPageWrapper-liveAlertAd","contentWrapperClock":"BrandPageWrapper-contentWrapperClock","mobileWebview":"BrandPageWrapper-mobileWebview"},"_style":undefined},"components\u002FGlobalNavigation\u002Fshared\u002Fnav-menu\u002Fstyles.cnbc.scss":{"default":{"electricblue":"#1ff1c8","orange":"#f87121","navMenuPro":"nav-menu-navMenuPro","navMenuIC":"nav-menu-navMenuIC","navMenu":"nav-menu-navMenu","navMenuSticky":"nav-menu-navMenuSticky nav-menu-navMenu","navMenuStickyPro":"nav-menu-navMenuStickyPro nav-menu-navMenu","navMenuStickyIC":"nav-menu-navMenuStickyIC nav-menu-navMenu","navMenuArticle":"nav-menu-navMenuArticle nav-menu-navMenu","withOpenSearch":"nav-menu-withOpenSearch","subLinks":"nav-menu-subLinks","navMenuArticleSticky":"nav-menu-navMenuArticleSticky nav-menu-navMenuSticky nav-menu-navMenu","navMenuArticleStickyPro":"nav-menu-navMenuArticleStickyPro nav-menu-navMenuStickyPro nav-menu-navMenu","navMenuArticleStickyIC":"nav-menu-navMenuArticleStickyIC nav-menu-navMenuStickyIC nav-menu-navMenu","logoStickyContainer":"nav-menu-logoStickyContainer","buttonPro":"nav-menu-buttonPro","buttonText":"nav-menu-buttonText","subLink":"nav-menu-subLink","buttonIC":"nav-menu-buttonIC","button":"nav-menu-button","hamburgerIC":"nav-menu-hamburgerIC nav-menu-button","hamburgerPro":"nav-menu-hamburgerPro nav-menu-button","hamburger":"nav-menu-hamburger nav-menu-button","articleHamburger":"nav-menu-articleHamburger nav-menu-hamburger nav-menu-button","articleHamburgerPro":"nav-menu-articleHamburgerPro nav-menu-hamburgerPro nav-menu-button","desktopHamburger":"nav-menu-desktopHamburger nav-menu-button","desktopHamburgerIC":"nav-menu-desktopHamburgerIC nav-menu-button","desktopHamburgerPro":"nav-menu-desktopHamburgerPro nav-menu-button","desktopHamburgerSticky":"nav-menu-desktopHamburgerSticky nav-menu-desktopHamburger nav-menu-button","desktopHamburgerStickyPro":"nav-menu-desktopHamburgerStickyPro nav-menu-desktopHamburgerPro nav-menu-button","desktopHamburgerStickyIC":"nav-menu-desktopHamburgerStickyIC nav-menu-desktopHamburgerIC nav-menu-button","desktopHamburgerArticleSticky":"nav-menu-desktopHamburgerArticleSticky nav-menu-desktopHamburgerSticky nav-menu-desktopHamburger nav-menu-button","desktopHamburgerArticleStickyPro":"nav-menu-desktopHamburgerArticleStickyPro nav-menu-desktopHamburgerStickyPro nav-menu-desktopHamburgerPro nav-menu-button","desktopHamburgerArticleStickyIC":"nav-menu-desktopHamburgerArticleStickyIC nav-menu-desktopHamburgerStickyIC nav-menu-desktopHamburgerIC nav-menu-button","articleButtonText":"nav-menu-articleButtonText nav-menu-buttonText","articleButtonTextPro":"nav-menu-articleButtonTextPro nav-menu-buttonText","articleButtonTextIC":"nav-menu-articleButtonTextIC nav-menu-buttonText","logo":"nav-menu-logo","logoSticky":"nav-menu-logoSticky nav-menu-logo","logoStickyMobilePro":"nav-menu-logoStickyMobilePro nav-menu-logo","logoStickyMobileIC":"nav-menu-logoStickyMobileIC","mainLinks":"nav-menu-mainLinks","mainLinksSticky":"nav-menu-mainLinksSticky nav-menu-mainLinks","mainLinksWrapper":"nav-menu-mainLinksWrapper","mainLinksWrapperStart":"nav-menu-mainLinksWrapperStart nav-menu-mainLinksWrapper","articleMainWrapper":"nav-menu-articleMainWrapper","articleContent":"nav-menu-articleContent","articleTitle":"nav-menu-articleTitle","articleTitleWithoutShareComponent":"nav-menu-articleTitleWithoutShareComponent","articleSocial":"nav-menu-articleSocial","articleHidden":"nav-menu-articleHidden","navLinks":"nav-menu-navLinks","linksSticky":"nav-menu-linksSticky","articleNavLinks":"nav-menu-articleNavLinks","primaryLink":"nav-menu-primaryLink","active":"nav-menu-active","navUnderline":"nav-menu-navUnderline","navUnderlineIC":"nav-menu-navUnderlineIC","navUnderlinePro":"nav-menu-navUnderlinePro","progressBarContainer":"nav-menu-progressBarContainer","logoContainer":"nav-menu-logoContainer","navDropdownWrap":"nav-menu-navDropdownWrap","subLinks-enter":"nav-menu-subLinks-enter","subLinks-enter-active":"nav-menu-subLinks-enter-active","proLockIcon":"nav-menu-proLockIcon","investingClubLockIcon":"nav-menu-investingClubLockIcon","berkshireWatchLive":"nav-menu-berkshireWatchLive","liveText":"nav-menu-liveText","pulse":"nav-menu-pulse","watchLive":"nav-menu-watchLive","showTitle":"nav-menu-showTitle"},"_style":undefined},"components\u002FGlobalNavigation\u002Fshared\u002FSearchToggle\u002Fstyles.cnbc.scss":{"default":{"electricblue":"#1ff1c8","orange":"#f87121","button":"SearchToggle-button","signinButton":"SearchToggle-signinButton","signinButtonBtn":"SearchToggle-signinButtonBtn","closeButtonText":"SearchToggle-closeButtonText","searchOpen":"SearchToggle-searchOpen","megaMenuSearchToggler":"SearchToggle-megaMenuSearchToggler","megaMenuSearchTogglerIC":"SearchToggle-megaMenuSearchTogglerIC","megaMenuSearchTogglerPro":"SearchToggle-megaMenuSearchTogglerPro","mega-menu":"SearchToggle-mega-menu","articleButton":"SearchToggle-articleButton","buttonSticky":"SearchToggle-buttonSticky SearchToggle-button","buttonStickyIC":"SearchToggle-buttonStickyIC SearchToggle-button","buttonStickyPro":"SearchToggle-buttonStickyPro SearchToggle-button","megaMenuButton":"SearchToggle-megaMenuButton","megaMenuButtonPro":"SearchToggle-megaMenuButtonPro","megaMenuButtonIC":"SearchToggle-megaMenuButtonIC","buttonLoggedIn":"SearchToggle-buttonLoggedIn","buttonLoggedInWithSubscribeMenu":"SearchToggle-buttonLoggedInWithSubscribeMenu"},"_style":undefined},"containers\u002FPageBuilder\u002Fstyles.cnbc.scss":{"default":{"electricblue":"#1ff1c8","orange":"#f87121","containerFluidWidths":"PageBuilder-containerFluidWidths","containerWidth100":"PageBuilder-containerWidth100","page":"PageBuilder-page","pageGrid":"PageBuilder-pageGrid","pageWrapper":"PageBuilder-pageWrapper","pageRow":"PageBuilder-pageRow","pageRowFlex":"PageBuilder-pageRowFlex PageBuilder-pageRow","rowUnderAd":"PageBuilder-rowUnderAd PageBuilder-pageRow","rowWithBackground":"PageBuilder-rowWithBackground PageBuilder-pageRow","flipRowOrder":"PageBuilder-flipRowOrder PageBuilder-pageRow","col":"PageBuilder-col","col-3":"PageBuilder-col-3 PageBuilder-col","col-6":"PageBuilder-col-6 PageBuilder-col","col-9":"PageBuilder-col-9 PageBuilder-col","article":"PageBuilder-article","col-12":"PageBuilder-col-12 PageBuilder-col","col-full":"PageBuilder-col-full PageBuilder-col","clear-col-padding":"PageBuilder-clear-col-padding","paddedWrapper":"PageBuilder-paddedWrapper","hasBanner":"PageBuilder-hasBanner","sidebar":"PageBuilder-sidebar","sidebarLeft":"PageBuilder-sidebarLeft PageBuilder-sidebar","sidebarLeftNav":"PageBuilder-sidebarLeftNav","sidebarPro":"PageBuilder-sidebarPro"},"_style":undefined},"components\u002Fshared\u002FMps\u002FAdUnits\u002FSponsorLogo\u002Fstyles.cnbc.scss":{"default":{"electricblue":"#1ff1c8","orange":"#f87121","container":"SponsorLogo-container"},"_style":undefined},"components\u002FPcmModule\u002FAds\u002FTopBanner\u002Fstyles.cnbc.scss":{"default":{"container":"TopBanner-container","berkshireEvent":"TopBanner-berkshireEvent"},"_style":undefined},"components\u002FPcmModule\u002FLatestNews\u002Fstyles.cnbc.scss":{"default":{"electricblue":"#1ff1c8","orange":"#f87121","header":"LatestNews-header","item":"LatestNews-item","iconCleared":"LatestNews-iconCleared","container":"LatestNews-container","headline":"LatestNews-headline","videoIcon":"LatestNews-videoIcon","wrapper":"LatestNews-wrapper","timestamp":"LatestNews-timestamp","source":"LatestNews-source","proPill":"LatestNews-proPill","watchLivePill":"LatestNews-watchLivePill","isHomePage":"LatestNews-isHomePage","hideGradient":"LatestNews-hideGradient","list":"LatestNews-list","headlineWrapper":"LatestNews-headlineWrapper","visitedIcon":"LatestNews-visitedIcon","buttonContainer":"LatestNews-buttonContainer","isIntlHomepage":"LatestNews-isIntlHomepage","button":"LatestNews-button","newsTabButton":"LatestNews-newsTabButton","tradeAlertLabel":"LatestNews-tradeAlertLabel"},"_style":undefined},"components\u002FPcmModule\u002FAds\u002FBoxInline\u002Fstyles.cnbc.scss":{"default":{"electricblue":"#1ff1c8","orange":"#f87121","container":"BoxInline-container"},"_style":undefined},"components\u002FPcmModule\u002FAds\u002FBoxRail\u002Fstyles.cnbc.scss":{"default":{"electricblue":"#1ff1c8","orange":"#f87121","container":"BoxRail-container","container-right":"BoxRail-container-right","container-left":"BoxRail-container-left","adWrapperSticky":"BoxRail-adWrapperSticky","adWrapperStickyNewsAlert":"BoxRail-adWrapperStickyNewsAlert","ad":"BoxRail-ad"},"_style":undefined},"components\u002Fshared\u002FTable\u002FTableHeader\u002Fstyles.cnbc.scss":{"default":{"electricblue":"#1ff1c8","orange":"#f87121","container":"TableHeader-container","title":"TableHeader-title","themeTitle":"TableHeader-themeTitle TableHeader-title","link":"TableHeader-link"},"_style":undefined},"components\u002Fshared\u002FTable\u002FBasicTable\u002Fstyles.cnbc.scss":{"default":{"electricblue":"#1ff1c8","orange":"#f87121","basicTable":"BasicTable-basicTable","tableWrapper":"BasicTable-tableWrapper","portfolioTableWrapper":"BasicTable-portfolioTableWrapper","table":"BasicTable-table","tableHeadingSortable":"BasicTable-tableHeadingSortable","portfolioTd":"BasicTable-portfolioTd","portfolioHeader":"BasicTable-portfolioHeader","portfolioHeaderJustify":"BasicTable-portfolioHeaderJustify","watchlistTableHeaderJustify":"BasicTable-watchlistTableHeaderJustify","portfolioHeaderName":"BasicTable-portfolioHeaderName","portfolioHeaderSortIcon":"BasicTable-portfolioHeaderSortIcon","articleContainer":"BasicTable-articleContainer","tableHeading":"BasicTable-tableHeading","tableBody":"BasicTable-tableBody","container":"BasicTable-container","portfolioTableHeading":"BasicTable-portfolioTableHeading","portfolioHeaderTh":"BasicTable-portfolioHeaderTh","textData":"BasicTable-textData","numData":"BasicTable-numData","floatingTable":"BasicTable-floatingTable BasicTable-container","portfolioScroll":"BasicTable-portfolioScroll","scrollGradient":"BasicTable-scrollGradient","quoteGain":"BasicTable-quoteGain","quoteDecline":"BasicTable-quoteDecline","watchlistTableQuote":"BasicTable-watchlistTableQuote","changePositive":"BasicTable-changePositive","changeNegative":"BasicTable-changeNegative BasicTable-changePositive","symbol":"BasicTable-symbol","name":"BasicTable-name","unchanged":"BasicTable-unchanged BasicTable-numData","portfolioSummary":"BasicTable-portfolioSummary","portfolioSummaryPositive":"BasicTable-portfolioSummaryPositive","portfolioSummaryNegative":"BasicTable-portfolioSummaryNegative","watchlistTable":"BasicTable-watchlistTable","symbolName":"BasicTable-symbolName","addWatchlist":"BasicTable-addWatchlist","dropdownStyles":"BasicTable-dropdownStyles","dataRow":"BasicTable-dataRow","fairValueQuote":"BasicTable-fairValueQuote"},"_style":undefined},"components\u002Fshared\u002FCard\u002Fstyles.cnbc.scss":{"default":{"electricblue":"#1ff1c8","orange":"#f87121","card":"Card-card","title":"Card-title","package":"Card-package","titleAndFooter":"Card-titleAndFooter","rectangleToLeftSquareMedia":"Card-rectangleToLeftSquareMedia Card-card","leftSquareMedia":"Card-leftSquareMedia Card-card","mediaContainer":"Card-mediaContainer","textContent":"Card-textContent","aboveImageTitle":"Card-aboveImageTitle","mediaContainerPackage":"Card-mediaContainerPackage","squareMediaContainer":"Card-squareMediaContainer","rectangleMediaContainer":"Card-rectangleMediaContainer","imageGradient":"Card-imageGradient","videoFooter":"Card-videoFooter","videoFooterContent":"Card-videoFooterContent","videoLabel":"Card-videoLabel","videoTime":"Card-videoTime Card-videoLabel","totalTime":"Card-totalTime Card-videoTime Card-videoLabel","byline":"Card-byline","threeUpCardFooterStyle":"Card-threeUpCardFooterStyle","threeUpBylineStyle":"Card-threeUpBylineStyle","bylinePackage":"Card-bylinePackage Card-byline","time":"Card-time","timePackage":"Card-timePackage Card-time","sponsoredLogo":"Card-sponsoredLogo","packageTitle":"Card-packageTitle","live":"Card-live","titleOnly":"Card-titleOnly Card-card","pro":"Card-pro","titleOnlyUltraDense":"Card-titleOnlyUltraDense Card-card","titleOnlyImageDense":"Card-titleOnlyImageDense Card-titleOnly Card-card","titleOnlyPackage":"Card-titleOnlyPackage Card-titleOnly Card-card Card-package","titleOnlyTopBorder":"Card-titleOnlyTopBorder Card-titleOnly Card-card","titleOnlyNoBorder":"Card-titleOnlyNoBorder Card-titleOnly Card-card","titleOnlyTopSolidBorder":"Card-titleOnlyTopSolidBorder Card-titleOnly Card-card","titleOnlyHalf":"Card-titleOnlyHalf Card-titleOnly Card-card","titleOnlyHalfPackage":"Card-titleOnlyHalfPackage Card-titleOnlyHalf Card-titleOnly Card-card Card-package","titleByline":"Card-titleByline Card-card","titleBylinePackage":"Card-titleBylinePackage Card-titleByline Card-card Card-package","titleBylineNoBorder":"Card-titleBylineNoBorder Card-card","titleBylineRight":"Card-titleBylineRight Card-card","largeTitleByline":"Card-largeTitleByline Card-card","proPill":"Card-proPill","watchLivePill":"Card-watchLivePill","investingClubPill":"Card-investingClubPill","titleBylineHalf":"Card-titleBylineHalf Card-card","featuredRectangleMedia":"Card-featuredRectangleMedia Card-card","imageContainer":"Card-imageContainer","specialReportsRiver":"Card-specialReportsRiver Card-card","cardFooter":"Card-cardFooter","bylineContainer":"Card-bylineContainer","bylineDivider":"Card-bylineDivider","titleContainer":"Card-titleContainer","featuredRectangleMediaImagedense":"Card-featuredRectangleMediaImagedense Card-featuredRectangleMedia Card-card","featuredRectangleMediaPackage":"Card-featuredRectangleMediaPackage Card-featuredRectangleMedia Card-card Card-package","featuredSecondaryRectangleMedia":"Card-featuredSecondaryRectangleMedia Card-card","featuredSecondaryRectangleMediaPackage":"Card-featuredSecondaryRectangleMediaPackage Card-featuredSecondaryRectangleMedia Card-card Card-package","rectangleMedia":"Card-rectangleMedia Card-card","standardBreakerCard":"Card-standardBreakerCard","rectangleMediaUltraDense":"Card-rectangleMediaUltraDense Card-rectangleMedia Card-card","bylinePosition":"Card-bylinePosition","rectangleMediaPackage":"Card-rectangleMediaPackage Card-rectangleMedia Card-card Card-package","rectangleMediaHalf":"Card-rectangleMediaHalf Card-card","rectangleMediaHalfNoBorder":"Card-rectangleMediaHalfNoBorder Card-card","leftRectangleToTopMedia":"Card-leftRectangleToTopMedia Card-card","rectangleToRectangleMediaHalf":"Card-rectangleToRectangleMediaHalf Card-card","recToRecMediaHalf":"Card-recToRecMediaHalf Card-card","squareMedia":"Card-squareMedia Card-card","squareMediaImageDense":"Card-squareMediaImageDense Card-squareMedia Card-card","rectangleToLeftSquareMediaUltraDense":"Card-rectangleToLeftSquareMediaUltraDense Card-rectangleToLeftSquareMedia Card-card","mediaContainerInner":"Card-mediaContainerInner","featuredSquareToRectangleMedia":"Card-featuredSquareToRectangleMedia Card-card","squareLeadMediaLeft":"Card-squareLeadMediaLeft Card-card","featuredRectangleToRectangleMedia":"Card-featuredRectangleToRectangleMedia Card-featuredSquareToRectangleMedia Card-card","squareToRectangleMediaPackage":"Card-squareToRectangleMediaPackage Card-card Card-package","placeholder":"Card-placeholder","eyebrow":"Card-eyebrow","eyebrowContainer":"Card-eyebrowContainer","titleOnlyFourUp":"Card-titleOnlyFourUp Card-titleOnly Card-card","cnbcvideo":"Card-cnbcvideo","webresource":"Card-webresource","proSmall":"Card-proSmall","proIcon":"Card-proIcon","threeUpStackRectangleSquareMedia":"Card-threeUpStackRectangleSquareMedia Card-rectangleToLeftSquareMedia Card-card","description":"Card-description","threeUpRectangleSquareMediaDescription":"Card-threeUpRectangleSquareMediaDescription Card-rectangleToLeftSquareMedia Card-card","titleOnlyThreeUpStack":"Card-titleOnlyThreeUpStack Card-titleOnly Card-card","titleOnlyThreeUpStackLast":"Card-titleOnlyThreeUpStackLast Card-titleOnlyThreeUpStack Card-titleOnly Card-card","videoIcon":"Card-videoIcon","aboveImageContent":"Card-aboveImageContent","specialReportTimestamp":"Card-specialReportTimestamp"},"_style":undefined},"components\u002FPcmModule\u002FAds\u002FMidResponsive\u002Fstyles.cnbc.scss":{"default":{"electricblue":"#1ff1c8","orange":"#f87121","midResponsiveContainer":"MidResponsive-midResponsiveContainer"},"_style":undefined},"components\u002FPcmModule\u002FTrendingNowBreaker\u002Fstyles.cnbc.scss":{"default":{"electricblue":"#1ff1c8","orange":"#f87121","containerFluidWidths":"TrendingNowBreaker-containerFluidWidths","containerWidth100":"TrendingNowBreaker-containerWidth100","page":"TrendingNowBreaker-page","pageGrid":"TrendingNowBreaker-pageGrid","pageWrapper":"TrendingNowBreaker-pageWrapper","pageRow":"TrendingNowBreaker-pageRow","pageRowFlex":"TrendingNowBreaker-pageRowFlex TrendingNowBreaker-pageRow","rowUnderAd":"TrendingNowBreaker-rowUnderAd TrendingNowBreaker-pageRow","rowWithBackground":"TrendingNowBreaker-rowWithBackground TrendingNowBreaker-pageRow","flipRowOrder":"TrendingNowBreaker-flipRowOrder TrendingNowBreaker-pageRow","col":"TrendingNowBreaker-col","col-3":"TrendingNowBreaker-col-3 TrendingNowBreaker-col","col-6":"TrendingNowBreaker-col-6 TrendingNowBreaker-col","col-9":"TrendingNowBreaker-col-9 TrendingNowBreaker-col","article":"TrendingNowBreaker-article","col-12":"TrendingNowBreaker-col-12 TrendingNowBreaker-col","col-full":"TrendingNowBreaker-col-full TrendingNowBreaker-col","clear-col-padding":"TrendingNowBreaker-clear-col-padding","paddedWrapper":"TrendingNowBreaker-paddedWrapper","hasBanner":"TrendingNowBreaker-hasBanner","sidebar":"TrendingNowBreaker-sidebar","sidebarLeft":"TrendingNowBreaker-sidebarLeft TrendingNowBreaker-sidebar","sidebarLeftNav":"TrendingNowBreaker-sidebarLeftNav","sidebarPro":"TrendingNowBreaker-sidebarPro"},"_style":undefined},"components\u002FPcmModule\u002FTrendingNowBreaker\u002FTrendingNow\u002Fstyles.cnbc.scss":{"default":{"electricblue":"#1ff1c8","orange":"#f87121","container":"TrendingNow-container","heading":"TrendingNow-heading","storyContainer":"TrendingNow-storyContainer"},"_style":undefined},"components\u002FPcmModule\u002FTrendingNowBreaker\u002FTrendingNow\u002FTrendingNowItem\u002Fstyles.cnbc.scss":{"default":{"electricblue":"#1ff1c8","orange":"#f87121","title":"TrendingNowItem-title","number":"TrendingNowItem-number","storyItem":"TrendingNowItem-storyItem"},"_style":undefined},"components\u002FPcmModule\u002FTwoColumnImageDense\u002Fstyles.cnbc.scss":{"default":{"electricblue":"#1ff1c8","orange":"#f87121","containerFluidWidths":"TwoColumnImageDense-containerFluidWidths","containerWidth100":"TwoColumnImageDense-containerWidth100","page":"TwoColumnImageDense-page","pageGrid":"TwoColumnImageDense-pageGrid","pageWrapper":"TwoColumnImageDense-pageWrapper","pageRow":"TwoColumnImageDense-pageRow","pageRowFlex":"TwoColumnImageDense-pageRowFlex TwoColumnImageDense-pageRow","rowUnderAd":"TwoColumnImageDense-rowUnderAd TwoColumnImageDense-pageRow","rowWithBackground":"TwoColumnImageDense-rowWithBackground TwoColumnImageDense-pageRow","flipRowOrder":"TwoColumnImageDense-flipRowOrder TwoColumnImageDense-pageRow","col":"TwoColumnImageDense-col","col-3":"TwoColumnImageDense-col-3 TwoColumnImageDense-col","col-6":"TwoColumnImageDense-col-6 TwoColumnImageDense-col","col-9":"TwoColumnImageDense-col-9 TwoColumnImageDense-col","article":"TwoColumnImageDense-article","col-12":"TwoColumnImageDense-col-12 TwoColumnImageDense-col","col-full":"TwoColumnImageDense-col-full TwoColumnImageDense-col","clear-col-padding":"TwoColumnImageDense-clear-col-padding","paddedWrapper":"TwoColumnImageDense-paddedWrapper","hasBanner":"TwoColumnImageDense-hasBanner","sidebar":"TwoColumnImageDense-sidebar","sidebarLeft":"TwoColumnImageDense-sidebarLeft TwoColumnImageDense-sidebar","sidebarLeftNav":"TwoColumnImageDense-sidebarLeftNav","sidebarPro":"TwoColumnImageDense-sidebarPro","imageDense":"TwoColumnImageDense-imageDense"},"_style":undefined},"components\u002Fshared\u002FSectionWrapper\u002Fstyles.cnbc.scss":{"default":{"electricblue":"#1ff1c8","orange":"#f87121","container":"SectionWrapper-container","twoThirds":"SectionWrapper-twoThirds SectionWrapper-container","header":"SectionWrapper-header","decoration":"SectionWrapper-decoration","title":"SectionWrapper-title","titleImage":"SectionWrapper-titleImage","sponsorIcon":"SectionWrapper-sponsorIcon","link":"SectionWrapper-link","content":"SectionWrapper-content","latestContent":"SectionWrapper-latestContent","latestNews":"SectionWrapper-latestNews"},"_style":undefined},"components\u002FColumn\u002Fstyles.cnbc.scss":{"default":{"electricblue":"#1ff1c8","orange":"#f87121","cardRow":"Column-cardRow","dualLeadLeft":"Column-dualLeadLeft","dualLeadLeftPackage":"Column-dualLeadLeftPackage","dualLeadRight":"Column-dualLeadRight","dualLeadRightPackage":"Column-dualLeadRightPackage","dynamicContentLeft":"Column-dynamicContentLeft","dynamicContentRight":"Column-dynamicContentRight","singleLeadLeft":"Column-singleLeadLeft","imageDenseModRight":"Column-imageDenseModRight","featuredRectangleMedia":"Column-featuredRectangleMedia","singleLeadLeftPackage":"Column-singleLeadLeftPackage","singleLeadRight":"Column-singleLeadRight","imageDenseModLeft":"Column-imageDenseModLeft","standardBreakerCard":"Column-standardBreakerCard","squareMedia":"Column-squareMedia","card":"Column-card","singleLeadRightPackage":"Column-singleLeadRightPackage","miniHeroLeft":"Column-miniHeroLeft","miniHeroRight":"Column-miniHeroRight","squareLeadLeft":"Column-squareLeadLeft","squareImageDenseLeft":"Column-squareImageDenseLeft","rectangleLeadLeft":"Column-rectangleLeadLeft Column-squareLeadLeft","squareLeadLeftPackage":"Column-squareLeadLeftPackage","squareLeadRight":"Column-squareLeadRight","squareImageDenseRight":"Column-squareImageDenseRight","rectangleLeadRight":"Column-rectangleLeadRight Column-squareLeadRight","squareLeadRightPackage":"Column-squareLeadRightPackage","threeUpUltraDense":"Column-threeUpUltraDense","threeUp":"Column-threeUp","dense":"Column-dense","fourUp":"Column-fourUp","threeUpStack":"Column-threeUpStack","twoUp":"Column-twoUp","imageDenseLeft":"Column-imageDenseLeft","imageDenseRight":"Column-imageDenseRight","dynamicContentMobile":"Column-dynamicContentMobile","oneImageDense":"Column-oneImageDense","flexibleLabel":"Column-flexibleLabel","topBorder":"Column-topBorder","topMargin":"Column-topMargin","videoFeatured":"Column-videoFeatured"},"_style":undefined},"components\u002Fshared\u002FPlayButton\u002Fstyles.cnbc.scss":{"default":{"electricblue":"#1ff1c8","orange":"#f87121","container":"PlayButton-container","base":"PlayButton-base","featured":"PlayButton-featured PlayButton-base","featuredMediaPlaybutton":"PlayButton-featuredMediaPlaybutton","icon":"PlayButton-icon","flyout":"PlayButton-flyout","suppressFlyout":"PlayButton-suppressFlyout","hover":"PlayButton-hover","iconHover":"PlayButton-iconHover","playlistWrapper":"PlayButton-playlistWrapper","playlist":"PlayButton-playlist","featuredPlaylist":"PlayButton-featuredPlaylist PlayButton-playlist","sizeVariationOne":"PlayButton-sizeVariationOne","sizeVariationFive":"PlayButton-sizeVariationFive","smallVersion":"PlayButton-smallVersion"},"_style":undefined}}; window.__ff_data={"3gswv8f8":false,"3s9ma3n1":false,"4rj3orcxu":true,"ajhvpw89d":true,"ajs283so32":true,"b9t8er7t":true,"bionicflag1234":false,"crfaccOnArt":true,"d1qp45cb":true,"e9vq3e7c":true,"enable-new-search-dropdown":false,"esn1c5ma":true,"f3t2ngps":false,"g1pcp62":true,"gms6l84g":true,"j9dpb393":false,"qssltb.123":true,"quoteModuleCreateAccount":true,"s7dfahu9":true,"signBtnArtColl":false,"signupBtn.1":false,"signupBtnG":false,"GATED_ARTICLE_PASS_REFERRER":false,"$flagsState":{"3gswv8f8":{"version":4,"variation":1},"3s9ma3n1":{"version":3,"variation":1},"4rj3orcxu":{"version":3,"variation":0},"ajhvpw89d":{"version":4,"variation":0},"ajs283so32":{"version":6,"variation":0},"b9t8er7t":{"version":4,"variation":0},"bionicflag1234":{"version":2,"variation":1},"crfaccOnArt":{"version":3,"variation":0},"d1qp45cb":{"version":3,"variation":0},"e9vq3e7c":{"version":3,"variation":0},"enable-new-search-dropdown":{"version":2,"variation":1},"esn1c5ma":{"version":3,"variation":0},"f3t2ngps":{"version":2,"variation":1},"g1pcp62":{"version":3,"variation":0},"gms6l84g":{"version":7,"variation":0},"j9dpb393":{"version":4,"variation":1},"qssltb.123":{"version":6,"variation":0},"quoteModuleCreateAccount":{"version":3,"variation":0},"s7dfahu9":{"version":4,"variation":0},"signBtnArtColl":{"version":2,"variation":1},"signupBtn.1":{"version":2,"variation":1},"signupBtnG":{"version":4,"variation":1},"GATED_ARTICLE_PASS_REFERRER":{"version":4,"variation":1}},"$valid":true}; window.PARSELY={"video":{"autotrack":false}};</script><script charset="UTF-8">
function isES6Supported() {
'use strict';
if (typeof Symbol == 'undefined') return false;
try {
eval('class Foo {}');
eval('var bar = (x) => x+1');
} catch (e) { return false; }
return true;
}
function addScript(src) {
var s = document.createElement('script');
s.setAttribute('src', src);
document.head.appendChild(s);
}
if (!isES6Supported()) {
addScript('https://static-redesign.cnbcfm.com/dist/polyfill-b5a3dc7ebe04d5335565.js');
}
</script><script charset="UTF-8">
var onLoadScripts = [{"text":"var __CNBC_META_DATA={\"layout\":[],\"aboutThisSection\":null,\"additionalMetadata\":null,\"additionalSectionContentFormatted\":\"NA\",\"additionalSectionContentFormattedFull\":\"NA\",\"authorFormatted\":\"NA\",\"authorFormattedFull\":\"NA\",\"brand\":\"cnbc\",\"color\":null,\"contentClassification\":[],\"cmsTemplate\":\"Topic Template\",\"creatorOverwrite\":null,\"creatorOverwriteFormatted\":\"NA\",\"dateFirstPublished\":\"2013-05-10T14:41:50+0000\",\"dateLastPublished\":\"2022-09-25T02:46:19+0000\",\"datePublished\":\"2016-09-27T13:00:09+0000\",\"description\":\"CNBC International is the world leader for news on business, technology, China, trade, oil prices, the Middle East and markets.\",\"expires\":null,\"headline\":\"World News & Analysis\",\"id\":100727362,\"liveURL\":\"\u002Fworld-top-news\u002F\",\"native\":false,\"pageName\":\"100727362|world-top-news\",\"premium\":false,\"projectContentFormatted\":\"NA\",\"projectContentFormattedFull\":\"NA\",\"projectTeamContentFormatted\":\"cnbc europe tea|cnbc asia team\",\"projectTeamContentFormattedFull\":\"cnbc europe team|cnbc asia team\",\"relatedTagsFilteredFormatted\":\"cnbc meets|charting asia\",\"relatedTagsFilteredFormattedFull\":\"cnbc meets|charting asia\",\"sectionHierarchyFormatted\":\"international t\",\"sectionHierarchyFormattedFull\":\"international top news and analysis\",\"seoTitle\":\"International Business, World News & Global Stock Market Analysis\",\"shortDateFirstPublished\":\"05\u002F10\u002F2013\",\"shortDateLastPublished\":\"9\u002F24\u002F2022\",\"shortDatePublished\":\"9\u002F27\u002F2016\",\"shortenedUrls\":null,\"slug\":\"International: Top News and Analysis\",\"sourceOrganizationFormatted\":\"NA\",\"sourceOrganizationFormattedFull\":\"NA\",\"subDomain\":\"https:\u002F\u002Fwww.cnbc.com\",\"subType\":\"section\",\"tagName\":\"International: Top News And Analysis\",\"tagNameFormatted\":\"international t\",\"tagNameFormattedFull\":\"international top news and analysis\",\"template\":\"Home Page International\",\"title\":\"International: Top News And Analysis\",\"type\":\"franchise\",\"url\":\"https:\u002F\u002Fwww.cnbc.com\u002Fworld\u002F\",\"canonicalUrlOverride\":null,\"vcpsId\":null,\"additionalSectionContent\":[],\"author\":[],\"featuredMedia\":null,\"projectContent\":[],\"projectTeamContent\":[{\"headline\":null,\"id\":100002778,\"tagName\":\"CNBC Europe Team\",\"tagNameFormatted\":\"cnbc europe tea\",\"tagNameFormattedFull\":\"cnbc europe team\",\"__typename\":\"team\"},{\"headline\":null,\"id\":100002784,\"tagName\":\"CNBC Asia Team\",\"tagNameFormatted\":\"cnbc asia team\",\"tagNameFormattedFull\":\"cnbc asia team\",\"__typename\":\"team\"}],\"promoImage\":null,\"publisher\":{\"logo\":\"https:\u002F\u002Fsc.cnbcfm.com\u002Fapplications\u002Fcnbc.com\u002Fstaticcontent\u002Fimg\u002Fcnbc-hdr-logo2.png\",\"name\":\"CNBC\",\"__typename\":\"publisher\"},\"relatedContent\":[{\"headline\":\"U.S. News\",\"id\":15837362,\"tagName\":\"US: News\",\"tagNameFormatted\":\"us news\",\"tagNameFormattedFull\":\"us news\",\"type\":\"franchise\",\"__typename\":\"tag\"},{\"headline\":\"Asia-Pacific News\",\"id\":19832390,\"tagName\":\"Asia News\",\"tagNameFormatted\":\"asia news\",\"tagNameFormattedFull\":\"asia news\",\"type\":\"franchise\",\"__typename\":\"tag\"},{\"headline\":\"Europe News\",\"id\":19794221,\"tagName\":\"Europe News\",\"tagNameFormatted\":\"europe news\",\"tagNameFormattedFull\":\"europe news\",\"type\":\"franchise\",\"__typename\":\"tag\"}],\"relatedTags\":[{\"id\":43025367,\"name\":\"CNBC Meets\",\"tagName\":\"CNBC Meets\",\"__typename\":\"tag\"},{\"id\":23103686,\"name\":\"Charting Asia with Daryl Guppy\",\"tagName\":\"Charting Asia\",\"__typename\":\"tag\"}],\"relatedTagsFiltered\":[{\"headline\":\"CNBC Meets\",\"id\":43025367,\"name\":\"CNBC Meets\",\"tagName\":\"CNBC Meets\",\"tagNameFormatted\":\"cnbc meets\",\"tagNameFormattedFull\":\"cnbc meets\",\"type\":\"franchise\",\"__typename\":\"tag\"},{\"headline\":\"Charting Asia with Daryl Guppy\",\"id\":23103686,\"name\":\"Charting Asia with Daryl Guppy\",\"tagName\":\"Charting Asia\",\"tagNameFormatted\":\"charting asia\",\"tagNameFormattedFull\":\"charting asia\",\"type\":\"franchise\",\"__typename\":\"tag\"}],\"section\":{\"eyebrow\":\"CNBC Utilities Page\",\"headline\":\"CNBC Utilities Page\",\"id\":101050794,\"subType\":\"section\",\"tagName\":\"CNBC Utilities Page\",\"tagNameFormatted\":\"cnbc utilities \",\"tagNameFormattedFull\":\"cnbc utilities page\",\"title\":\"CNBC Utilities Page\",\"type\":\"franchise\",\"url\":\"https:\u002F\u002Fwww.cnbc.com\u002Futility-page\u002F\",\"__typename\":\"franchise\"},\"sectionHierarchy\":[{\"id\":100727362,\"order\":1,\"tagName\":\"International: Top News And Analysis\",\"tagNameFormatted\":\"international t\",\"tagNameFormattedFull\":\"international top news and analysis\",\"__typename\":\"sectionHierarchy\"}],\"sourceOrganization\":null,\"__typename\":\"page\",\"queryParams\":{}};var mpscall = {\"id\":100727362,\"slug\":\"International: Top News and Analysis\",\"type\":\"franchise\",\"title\":\"International: Top News And Analysis\",\"headline\":\"World News & Analysis\",\"pubdate\":1368196910,\"cat\":\"International: Top News And Analysis\",\"adunits\":\"Top Banner|Box Rail|Box Inline|Logo|Mid Responsive|Countdown Clock|Sponsor Logo|Native Ultra Dense|Native Three Up|Native Ticker|Box Search\",\"dateline\":1474981209,\"nid\":100727362,\"site\":\"cnbc-web\",\"content_id\":100727362,\"path\":\"\u002Fid\u002F100727362\",\"cag[template]\":\"Home Page International\",\"is_sponsored\":0,\"is_premium\":0,\"cag[source]\":\"\",\"cag[brand]\":\"cnbc\",\"cag[creator]\":\"\",\"cag[company]\":\"\",\"cag[team]\":\"CNBC Europe Team|CNBC Asia Team\",\"cag[section]\":\"International: Top News And Analysis\",\"cag[tags]\":\"CNBC Meets|Charting Asia\",\"cag[additional_sections]\":\"\",\"subtype\":\"section\",\"cag[datePublished]\":1474981209,\"cag[dateLastPublished]\":1664073979,\"cag[dateFirstPublished]\":1368196910,\"cag[creator_overwrite]\":null,\"cag[project]\":\"\"} || {};mpscall.path = mpscall.path || window.location.pathname + (window.location.search ? '?' + window.location.search : ''); var mpsopts = mpsopts || {\"host\":\"mps.cnbc.com\",\"updatecorrelator\":true,\"callback\":\"mpsCallback\"} || {};var mps=mps||{};mps._ext=mps._ext||{};mps._adsheld=[];mps._queue=mps._queue||{};mps._queue.mpsloaded=mps._queue.mpsloaded||[];mps._queue.mpsinit=mps._queue.mpsinit||[];mps._queue.gptloaded=mps._queue.gptloaded||[];mps._queue.adload=mps._queue.adload||[];mps._queue.adclone=mps._queue.adclone||[];mps._queue.adview=mps._queue.adview||[];mps._queue.refreshads=mps._queue.refreshads||[];mps.__timer=Date.now?Date.now():(function(){return+new Date})();mps.__intcode=\"v2\";if(typeof mps.getAd!=\"function\")mps.getAd=function(adunit){if(typeof adunit!=\"string\")return false;var slotid=\"mps-getad-\"+adunit.replace(\u002FW\u002Fg,\"\");if(!mps._ext||!mps._ext.loaded){mps._queue.gptloaded.push(function(){typeof mps._gptfirst==\"function\"&&mps._gptfirst(adunit,slotid);mps.insertAd(\"#\"+slotid,adunit)});mps._adsheld.push(adunit)}return'\u003Cdiv id=\"'+slotid+'\" class=\"mps-wrapper\" data-mps-fill-slot=\"'+adunit+'\"\u003E\u003C\u002Fdiv\u003E'};(function(){head=document.head||document.getElementsByTagName(\"head\")[0],mpsload=document.createElement(\"script\");mpsload.src=\"\u002F\u002F\"+mpsopts.host+\"\u002Ffetch\u002Fext\u002Fload-\"+mpscall.site+\".js?nowrite=2\";mpsload.id=\"mps-load\";head.insertBefore(mpsload,head.firstChild)})();"}].concat([{"id":"__LOADABLE_REQUIRED_CHUNKS__","dangerouslySetInnerHTML":{"__html":"[4746,2143,4926,2427,2497,424,9433,8132,3787,6961,4134,4851,4502,4984,9386,4856,9181,472,2532,3082,3241,3014,9815,6646,4188,2243,5519,7486,7243,1741,3182]"},"type":"application\u002Fjson","text":"[4746,2143,4926,2427,2497,424,9433,8132,3787,6961,4134,4851,4502,4984,9386,4856,9181,472,2532,3082,3241,3014,9815,6646,4188,2243,5519,7486,7243,1741,3182]"},{"id":"__LOADABLE_REQUIRED_CHUNKS___ext","dangerouslySetInnerHTML":{"__html":"{\"namedChunks\":[\"CNBCGlobalNav\",\"components-PcmModule-MarketsBanner\",\"components-PcmModule-Ads-TopBanner\",\"components-PcmModule-QuickLinks\",\"components-PcmModule-LegacyPlayerContainer\",\"components-PcmModule-FeaturedNewsHero\",\"components-PcmModule-LatestNews\",\"components-PcmModule-Ads-BoxInline\",\"components-PcmModule-QuoteFinder\",\"components-PcmModule-MarketMoversPlus\",\"components-PcmModule-RiverPlus\",\"components-PcmModule-Ads-BoxRail\",\"components-PcmModule-MarketsModule\",\"components-shared-Card\",\"components-PcmModule-Ads-MidResponsive\",\"components-PcmModule-VideoBreakerFeatured\",\"components-PcmModule-Breakers-FeaturedBreaker\",\"components-PcmModule-TrendingNowBreaker\",\"components-PcmModule-TwoColumnImageDense\",\"components-Column\",\"components-Footer-CNBCFooter\"]}"},"type":"application\u002Fjson","text":"{\"namedChunks\":[\"CNBCGlobalNav\",\"components-PcmModule-MarketsBanner\",\"components-PcmModule-Ads-TopBanner\",\"components-PcmModule-QuickLinks\",\"components-PcmModule-LegacyPlayerContainer\",\"components-PcmModule-FeaturedNewsHero\",\"components-PcmModule-LatestNews\",\"components-PcmModule-Ads-BoxInline\",\"components-PcmModule-QuoteFinder\",\"components-PcmModule-MarketMoversPlus\",\"components-PcmModule-RiverPlus\",\"components-PcmModule-Ads-BoxRail\",\"components-PcmModule-MarketsModule\",\"components-shared-Card\",\"components-PcmModule-Ads-MidResponsive\",\"components-PcmModule-VideoBreakerFeatured\",\"components-PcmModule-Breakers-FeaturedBreaker\",\"components-PcmModule-TrendingNowBreaker\",\"components-PcmModule-TwoColumnImageDense\",\"components-Column\",\"components-Footer-CNBCFooter\"]}"},{"async":true,"data-chunk":"main","src":"https:\u002F\u002Fstatic-redesign.cnbcfm.com\u002Fdist\u002Fmain-10328a92c7b164509e08.js","text":undefined},{"async":true,"data-chunk":"CNBCGlobalNav","src":"https:\u002F\u002Fstatic-redesign.cnbcfm.com\u002Fdist\u002F4746-7b62789dad0ba5e50955.js","text":undefined},{"async":true,"data-chunk":"CNBCGlobalNav","src":"https:\u002F\u002Fstatic-redesign.cnbcfm.com\u002Fdist\u002F2143-9d7936f883ec331b4386.js","text":undefined},{"async":true,"data-chunk":"CNBCGlobalNav","src":"https:\u002F\u002Fstatic-redesign.cnbcfm.com\u002Fdist\u002F4926-f9feb9c8ac69f5fca80c.js","text":undefined},{"async":true,"data-chunk":"CNBCGlobalNav","src":"https:\u002F\u002Fstatic-redesign.cnbcfm.com\u002Fdist\u002FCNBCGlobalNav-575281ad8d264efbc303.js","text":undefined},{"async":true,"data-chunk":"components-PcmModule-MarketsBanner","src":"https:\u002F\u002Fstatic-redesign.cnbcfm.com\u002Fdist\u002Fcomponents-PcmModule-MarketsBanner-c7d8da93080b160b4d03.js","text":undefined},{"async":true,"data-chunk":"components-PcmModule-QuickLinks","src":"https:\u002F\u002Fstatic-redesign.cnbcfm.com\u002Fdist\u002Fcomponents-PcmModule-QuickLinks-d75ce08e366a64559f4d.js","text":undefined},{"async":true,"data-chunk":"components-PcmModule-LegacyPlayerContainer","src":"https:\u002F\u002Fstatic-redesign.cnbcfm.com\u002Fdist\u002F9433-a9354524a62caa09f091.js","text":undefined},{"async":true,"data-chunk":"components-PcmModule-LegacyPlayerContainer","src":"https:\u002F\u002Fstatic-redesign.cnbcfm.com\u002Fdist\u002Fcomponents-PcmModule-LegacyPlayerContainer-04645e4097853b563fe3.js","text":undefined},{"async":true,"data-chunk":"components-PcmModule-FeaturedNewsHero","src":"https:\u002F\u002Fstatic-redesign.cnbcfm.com\u002Fdist\u002Fcomponents-PcmModule-FeaturedNewsHero-ecd44de8999485226854.js","text":undefined},{"async":true,"data-chunk":"components-PcmModule-QuoteFinder","src":"https:\u002F\u002Fstatic-redesign.cnbcfm.com\u002Fdist\u002Fcomponents-PcmModule-QuoteFinder-4cf460eb003271a4e4e4.js","text":undefined},{"async":true,"data-chunk":"components-PcmModule-MarketMoversPlus","src":"https:\u002F\u002Fstatic-redesign.cnbcfm.com\u002Fdist\u002Fcomponents-PcmModule-MarketMoversPlus-c087c083d91f93c5aa96.js","text":undefined},{"async":true,"data-chunk":"components-PcmModule-RiverPlus","src":"https:\u002F\u002Fstatic-redesign.cnbcfm.com\u002Fdist\u002Fcomponents-PcmModule-RiverPlus-35f2d4596653f9b05a83.js","text":undefined},{"async":true,"data-chunk":"components-PcmModule-Ads-BoxRail","src":"https:\u002F\u002Fstatic-redesign.cnbcfm.com\u002Fdist\u002Fcomponents-PcmModule-Ads-BoxRail-cf5aef0b5d78b4909e03.js","text":undefined},{"async":true,"data-chunk":"components-PcmModule-MarketsModule","src":"https:\u002F\u002Fstatic-redesign.cnbcfm.com\u002Fdist\u002F4984-552f78132111f12b4397.js","text":undefined},{"async":true,"data-chunk":"components-PcmModule-MarketsModule","src":"https:\u002F\u002Fstatic-redesign.cnbcfm.com\u002Fdist\u002Fcomponents-PcmModule-MarketsModule-fbbd5f7fd26ac9e83d45.js","text":undefined},{"async":true,"data-chunk":"components-shared-Card","src":"https:\u002F\u002Fstatic-redesign.cnbcfm.com\u002Fdist\u002F4856-b6420fe80cfd04ee5c46.js","text":undefined},{"async":true,"data-chunk":"components-shared-Card","src":"https:\u002F\u002Fstatic-redesign.cnbcfm.com\u002Fdist\u002F9181-3c88d3d341f2d754f2f3.js","text":undefined},{"async":true,"data-chunk":"components-PcmModule-Ads-MidResponsive","src":"https:\u002F\u002Fstatic-redesign.cnbcfm.com\u002Fdist\u002Fcomponents-PcmModule-Ads-MidResponsive-1e9d3aec439e6d3a2a3b.js","text":undefined},{"async":true,"data-chunk":"components-PcmModule-VideoBreakerFeatured","src":"https:\u002F\u002Fstatic-redesign.cnbcfm.com\u002Fdist\u002F2532-26cd475307ef27c25f15.js","text":undefined},{"async":true,"data-chunk":"components-PcmModule-VideoBreakerFeatured","src":"https:\u002F\u002Fstatic-redesign.cnbcfm.com\u002Fdist\u002F3082-1421a96ec6b7cc7f02fc.js","text":undefined},{"async":true,"data-chunk":"components-PcmModule-VideoBreakerFeatured","src":"https:\u002F\u002Fstatic-redesign.cnbcfm.com\u002Fdist\u002F3241-56b0fa302216408859dd.js","text":undefined},{"async":true,"data-chunk":"components-PcmModule-VideoBreakerFeatured","src":"https:\u002F\u002Fstatic-redesign.cnbcfm.com\u002Fdist\u002F3014-3b3b11686f4ddd6a2552.js","text":undefined},{"async":true,"data-chunk":"components-PcmModule-VideoBreakerFeatured","src":"https:\u002F\u002Fstatic-redesign.cnbcfm.com\u002Fdist\u002F9815-26a445501e8410b82c01.js","text":undefined},{"async":true,"data-chunk":"components-PcmModule-VideoBreakerFeatured","src":"https:\u002F\u002Fstatic-redesign.cnbcfm.com\u002Fdist\u002Fcomponents-Column-c0478c9587f62eb06bc2.js","text":undefined},{"async":true,"data-chunk":"components-PcmModule-VideoBreakerFeatured","src":"https:\u002F\u002Fstatic-redesign.cnbcfm.com\u002Fdist\u002Fcomponents-PcmModule-LiveTV-caae409a260779766f29.js","text":undefined},{"async":true,"data-chunk":"components-PcmModule-VideoBreakerFeatured","src":"https:\u002F\u002Fstatic-redesign.cnbcfm.com\u002Fdist\u002Fcomponents-PcmModule-VideoBreakerFeatured-6bf4c76a1227042814c7.js","text":undefined},{"async":true,"data-chunk":"components-PcmModule-Breakers-FeaturedBreaker","src":"https:\u002F\u002Fstatic-redesign.cnbcfm.com\u002Fdist\u002Fcomponents-PcmModule-Breakers-FeaturedBreaker-f9268a401f14a4e5e388.js","text":undefined},{"async":true,"data-chunk":"components-PcmModule-TrendingNowBreaker","src":"https:\u002F\u002Fstatic-redesign.cnbcfm.com\u002Fdist\u002Fcomponents-PcmModule-TrendingNowBreaker-c9434dcfd09fa1a2c8c6.js","text":undefined},{"async":true,"data-chunk":"components-PcmModule-TwoColumnImageDense","src":"https:\u002F\u002Fstatic-redesign.cnbcfm.com\u002Fdist\u002F7243-2a396da5f0b0cb4354f1.js","text":undefined},{"async":true,"data-chunk":"components-PcmModule-TwoColumnImageDense","src":"https:\u002F\u002Fstatic-redesign.cnbcfm.com\u002Fdist\u002Fcomponents-PcmModule-TwoColumnImageDense-e041dcd9a23e058fdf4b.js","text":undefined},{"async":true,"data-chunk":"components-Footer-CNBCFooter","src":"https:\u002F\u002Fstatic-redesign.cnbcfm.com\u002Fdist\u002Fcomponents-Footer-CNBCFooter-f7b8cd3169eaf2ab11b4.js","text":undefined}]);
if (window.addEventListener) window.addEventListener('load', loadScripts, false);
else if (window.attachEvent) window.attachEvent('onload', loadScripts);
function loadScripts() {
(onLoadScripts || []).map(function(onLoadScript) {
var script = document.createElement('script');
Object.keys(onLoadScript).map(function(key) {
const value = onLoadScript[key];
if (key.includes('data-')) script.setAttribute(key, value);
else script[key] = value;
});
document.body.appendChild(script);
});
}
</script></body></html>
Headline=[]
for i in soup.find_all('div',class_="SidebarArticle-sidebar PageBuilder-sidebar"):
Headline.append(i.text)
Headline
["Latest News11 Hours Ago3 rules for a successful open relationship, according to an NYC therapist12 Hours AgoBiden administration awards $1.5 billion to fight opioid crisis13 Hours AgoTop 10 cities with the best pizzerias worldwide—see where NYC lands on the list14 Hours AgoBlack Girls in Trader Joe’s creator shares her top five favorite products14 Hours AgoWant to raise strong, resilient kids? Create 'nurturing routines,' says parenting expert—here’s how15 Hours AgoWhy the airline climate change plan is trailing autos and EVs15 Hours Ago'Queer Eye's Karamo Brown on the morning routines that keep him motivated15 Hours AgoThese 7 states have the least air pollution in the U.S.15 Hours AgoNew York is now No. 1 port in a tipping point for U.S.-bound trade16 Hours AgoAnalysts have 'high conviction' that these stocks have major upside.16 Hours AgoFeared stock market bottom retest is now underway16 Hours AgoThe No. 1 best city to retire isn't in Florida but the runner up is16 Hours AgoThe perils and promise of quantum computing are nearing. Here are ways to invest17 Hours AgoEverything parents need to know about student loan forgiveness 17 Hours AgoCheck in, smoke up and tune out: Cannabis-friendly vacation rentals are catching on17 Hours AgoConvertibles drive into the sunset as automakers invest in electric vehicles20 Hours AgoBritain's lurch toward 'Reaganomics' gets a thumbs down from the marketsSeptember 23, 2022Here's our plan for Monday after another painful week to own stocksSeptember 23, 2022What to watch in the markets in the week aheadSeptember 23, 2022Pro Picks: Watch all of Friday's big stock calls on CNBCSeptember 23, 202213 careers where over 50% of workers are happy with their paySeptember 23, 2022New York AG wrongly said Yankees game on Apple TV+ costs extra — but it's freeSeptember 23, 2022Tech stocks just had the worst two-week stretch since the start of the pandemicSeptember 23, 2022Takeaways from Jim Cramer's interviews with the CEOs of Salesforce and Slack September 23, 2022Some homebuyers are facing mortgage 'payment shock.' Here are ways to saveSeptember 23, 2022Ether is down almost 20% since the merge. Here’s what’s going onSeptember 23, 2022Elon Musk has over 20 direct reports at Tesla — here are the ones we know aboutSeptember 23, 2022Trump SPAC shares are now around $16 after hitting $97 earlier this yearSeptember 23, 2022Here's why U.S. fiscal policy is undermining the Fed's efforts to fight inflationSeptember 23, 2022Why gold and crypto haven't proven to be 'inflation-proof' investments in 2022View More", '', '', '']
Time=[]
for i in soup.find_all('time',class_="LatestNews-timestamp"):
Time.append(i.text)
Time
['11 Hours Ago', '12 Hours Ago', '13 Hours Ago', '14 Hours Ago', '14 Hours Ago', '15 Hours Ago', '15 Hours Ago', '15 Hours Ago', '15 Hours Ago', '16 Hours Ago', '16 Hours Ago', '16 Hours Ago', '16 Hours Ago', '17 Hours Ago', '17 Hours Ago', '17 Hours Ago', '20 Hours Ago', 'September 23, 2022', 'September 23, 2022', 'September 23, 2022', 'September 23, 2022', 'September 23, 2022', 'September 23, 2022', 'September 23, 2022', 'September 23, 2022', 'September 23, 2022', 'September 23, 2022', 'September 23, 2022', 'September 23, 2022', 'September 23, 2022']
Link=[]
for i in soup.find_all('a',class_="LatestNews-headline"):
Link.append(i.get('href'))
Link
['https://www.cnbc.com/2022/09/24/three-rules-for-a-successful-open-relationship.html', 'https://www.cnbc.com/2022/09/24/biden-administration-awards-1point5-billion-to-fight-opioid-crisis.html', 'https://www.cnbc.com/2022/09/24/top-10-cities-with-the-best-pizzerias-worldwide-.html', 'https://www.cnbc.com/2022/09/24/easy-meals-for-two-under-20-from-black-girls-in-trader-joes-creator.html', 'https://www.cnbc.com/2022/09/24/how-to-raise-resilient-kids-by-developing-their-brains-with-nurturing-routines-parenting-expert.html', 'https://www.cnbc.com/2022/09/24/how-airlines-plan-to-end-one-billion-tons-of-carbon-emissions.html', 'https://www.cnbc.com/2022/09/24/queer-eyes-karamo-brown-shares-morning-routine.html', 'https://www.cnbc.com/2022/09/24/vermont-new-mexico-california-us-states-with-least-air-pollution.html', 'https://www.cnbc.com/2022/09/24/new-york-now-no-1-port-in-us-as-sea-change-in-trade-hits-west-coast.html', 'https://www.cnbc.com/2022/09/24/analysts-name-top-high-conviction-stocks-for-playing-market-turbulence.html', 'https://www.cnbc.com/2022/09/24/feared-stock-market-bottom-retest-is-now-underway.html', 'https://www.cnbc.com/2022/09/24/wallethub-top-10-cities-to-retire-2022-nearly-half-are-in-florida.html', 'https://www.cnbc.com/2022/09/24/quantum-investing-perils-and-promise-of-quantum-computing-are-nearing.html', 'https://www.cnbc.com/2022/09/24/what-parent-plus-borrowers-need-to-know-about-student-loan-forgiveness.html', 'https://www.cnbc.com/2022/09/24/check-in-smoke-up-tune-out-cannabis-friendly-vacation-rentals-catch-on.html', 'https://www.cnbc.com/2022/09/24/convertible-sales-fall-in-us-amid-popularity-of-evs-suvs.html', 'https://www.cnbc.com/2022/09/24/liz-truss-britains-lurch-to-reaganomics-gets-thumbs-down-from-markets.html', 'https://www.cnbc.com/2022/09/23/it-was-another-painful-week-to-own-stocks-but-we-have-a-new-plan-for-monday.html', 'https://www.cnbc.com/2022/09/23/stocks-could-continue-skittish-trading-until-interest-rate-move-calms-down.html', 'https://www.cnbc.com/2022/09/23/pro-picks-watch-all-of-fridays-big-stock-calls-on-cnbc.html', 'https://www.cnbc.com/2022/09/23/careers-where-over-50percent-of-workers-are-happy-with-their-pay.html', 'https://www.cnbc.com/2022/09/23/new-york-ag-wrongly-says-yankees-game-on-apple-tv-costs-extra.html', 'https://www.cnbc.com/2022/09/23/tech-stocks-worst-two-week-stretch-since-the-start-of-pandemic.html', 'https://www.cnbc.com/2022/09/23/jim-cramer-sat-down-with-the-ceos-of-salesforce-and-slack-this-week.html', 'https://www.cnbc.com/2022/09/23/some-homebuyers-are-facing-payment-shock-ways-to-save-on-a-mortgage.html', 'https://www.cnbc.com/2022/09/23/ether-is-down-almost-20percent-since-the-merge-heres-whats-going-on.html', 'https://www.cnbc.com/2022/09/23/elon-musk-direct-reports-at-tesla.html', 'https://www.cnbc.com/2022/09/23/trump-merger-partner-shares-fall-dramatically.html', 'https://www.cnbc.com/2022/09/23/us-fiscal-policy-is-undermining-the-feds-efforts-to-fight-inflation.html', 'https://www.cnbc.com/2022/09/23/why-gold-and-cryptocurrencies-arent-inflation-proof-investments.html']
8) Write a python program to scrape the details of most downloaded articles from AI in last 90 days. https://www.journals.elsevier.com/artificial-intelligence/most-downloaded-articles Scrape below mentioned details : i) Paper Title ii) Authors iii) Published Date iv) Paper URL
url=requests.get("https://www.journals.elsevier.com/artificial-intelligence/most-downloaded-articles")
url
<Response [200]>
soup=BeautifulSoup(url.text,'html.parser')
soup
<!DOCTYPE html>
<html><head><link as="font" crossorigin="" href="/fonts/NexusSansWebPro-Regular.woff2" rel="preload" type="font/woff2"/><link as="font" crossorigin="" href="/fonts/ElsevierGulliver-Regular.woff2" rel="preload" type="font/woff2"/><script src="//assets.adobedtm.com/4a848ae9611a/4da1513b0562/launch-a536f9fbceee.min.js"></script><meta name="next-font-preconnect"/><meta content="width=device-width" name="viewport"/><meta charset="utf-8"/><meta content="en_US" name="og:locale"/><meta content="Most Downloaded Articles - Artificial Intelligence - Journal - Elsevier" property="og:title"/><meta content="The journal of Artificial Intelligence (AIJ) welcomes papers on broad aspects of AI that constitute advances in the overall field including, but not limited …" property="og:description"/><meta content="http://ars.els-cdn.com/content/image/X00043702.jpg" name="og:image" property="og:image"/><meta content="http://ars.els-cdn.com/content/image/X00043702.jpg" name="og:image:url" property="og:image:url"/><meta content="https://ars.els-cdn.com/content/image/X00043702.jpg" name="og:image:secure_url" property="og:image:secure_url"/><meta content="journals.elsevier.com/artificial-intelligence/most-downloaded-articles" name="og:url"/><meta content="website" property="og:type"/><link href="/apple-touch-icon.png" rel="apple-touch-icon" sizes="180x180"/><link href="/favicon-32x32.png" rel="icon" sizes="32x32" type="image/png"/><link href="/favicon-16x16.png" rel="icon" sizes="16x16" type="image/png"/><link color="#ff6c00" href="/safari-pinned-tab.svg" rel="mask-icon"/><title>Most Downloaded Articles - Artificial Intelligence - Journal - Elsevier</title><meta content="The journal of Artificial Intelligence (AIJ) welcomes papers on broad aspects of AI that constitute advances in the overall field including, but not limited …" name="description"/><meta content="Most Downloaded Articles - Artificial Intelligence - Journal - Elsevier" name="twitter:title"/><meta content="The journal of Artificial Intelligence (AIJ) welcomes papers on broad aspects of AI that constitute advances in the overall field including, but not limited …" name="twitter:description"/><meta content="http://ars.els-cdn.com/content/image/X00043702.jpg" name="twitter:image"/><meta content="summary" name="twitter:card"/><script type="application/ld+json">{"@context":"https://schema.org","@type":"Periodical","issn":"0004-3702","name":"Artificial Intelligence","publisher":"Elsevier","acquireLicensePage":"https://www.elsevier.com/journals/artificial-intelligence/0004-3702/subscribe?subscriptiontype=institutional"}</script><link as="image" imagesizes="100vw" imagesrcset="/_next/image?url=%2Fimages%2Flogos%2Felsevier-graphic.svg&w=640&q=75 640w, /_next/image?url=%2Fimages%2Flogos%2Felsevier-graphic.svg&w=750&q=75 750w, /_next/image?url=%2Fimages%2Flogos%2Felsevier-graphic.svg&w=828&q=75 828w, /_next/image?url=%2Fimages%2Flogos%2Felsevier-graphic.svg&w=1080&q=75 1080w, /_next/image?url=%2Fimages%2Flogos%2Felsevier-graphic.svg&w=1200&q=75 1200w, /_next/image?url=%2Fimages%2Flogos%2Felsevier-graphic.svg&w=1920&q=75 1920w, /_next/image?url=%2Fimages%2Flogos%2Felsevier-graphic.svg&w=2048&q=75 2048w, /_next/image?url=%2Fimages%2Flogos%2Felsevier-graphic.svg&w=3840&q=75 3840w" rel="preload"/><link as="image" imagesizes="100vw" imagesrcset="/_next/image?url=%2Fimages%2Flogos%2Felsevier-wordmark.svg&w=640&q=75 640w, /_next/image?url=%2Fimages%2Flogos%2Felsevier-wordmark.svg&w=750&q=75 750w, /_next/image?url=%2Fimages%2Flogos%2Felsevier-wordmark.svg&w=828&q=75 828w, /_next/image?url=%2Fimages%2Flogos%2Felsevier-wordmark.svg&w=1080&q=75 1080w, /_next/image?url=%2Fimages%2Flogos%2Felsevier-wordmark.svg&w=1200&q=75 1200w, /_next/image?url=%2Fimages%2Flogos%2Felsevier-wordmark.svg&w=1920&q=75 1920w, /_next/image?url=%2Fimages%2Flogos%2Felsevier-wordmark.svg&w=2048&q=75 2048w, /_next/image?url=%2Fimages%2Flogos%2Felsevier-wordmark.svg&w=3840&q=75 3840w" rel="preload"/><meta content="23" name="next-head-count"/><link as="style" href="/_next/static/css/799ef0e311a90fb2.css" rel="preload"/><link data-n-g="" href="/_next/static/css/799ef0e311a90fb2.css" rel="stylesheet"/><noscript data-n-css=""></noscript><script defer="" nomodule="" src="/_next/static/chunks/polyfills-5cd94c89d3acac5f.js"></script><script data-nscript="beforeInteractive" defer="" src="https://polyfill.io/v3/polyfill.min.js?features=Element.prototype.getAttributeNames%2CIntl%2CString.prototype.normalize%2CscrollIntoView%2CIntersectionObserver"></script><script data-nscript="beforeInteractive" defer="" nomodule="" src="/browser-support.js"></script><script defer="" src="/_next/static/chunks/webpack-767db1712701ecaf.js"></script><script defer="" src="/_next/static/chunks/framework-00571d6fb73aeead.js"></script><script defer="" src="/_next/static/chunks/main-137dd9138f856d72.js"></script><script defer="" src="/_next/static/chunks/pages/_app-dfd8e26c3ffcb2c3.js"></script><script defer="" src="/_next/static/chunks/2757-aebf18c54c71a56a.js"></script><script defer="" src="/_next/static/chunks/149-df8fa8fee2508c1c.js"></script><script defer="" src="/_next/static/chunks/3560-6337715d6f2b9797.js"></script><script defer="" src="/_next/static/chunks/84-0b0c41c92f1ebbf5.js"></script><script defer="" src="/_next/static/chunks/pages/%5Bslug%5D/most-downloaded-articles-cb156fba99868abb.js"></script><script defer="" src="/_next/static/mbXMhIviQKGV9qg2GtRCw/_buildManifest.js"></script><script defer="" src="/_next/static/mbXMhIviQKGV9qg2GtRCw/_ssgManifest.js"></script><script defer="" src="/_next/static/mbXMhIviQKGV9qg2GtRCw/_middlewareManifest.js"></script><style data-styled="" data-styled-version="5.3.3">.lhCPPw{max-width:60em;margin:0 auto;}/*!sc*/
data-styled.g2[id="sc-1dxr8k6-0"]{content:"lhCPPw,"}/*!sc*/
.fYuYRT{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;-webkit-align-items:baseline;-webkit-box-align:baseline;-ms-flex-align:baseline;align-items:baseline;-webkit-box-pack:start;-webkit-justify-content:flex-start;-ms-flex-pack:start;justify-content:flex-start;-webkit-flex-wrap:nowrap;-ms-flex-wrap:nowrap;flex-wrap:nowrap;}/*!sc*/
data-styled.g3[id="sc-kvjqii-0"]{content:"fYuYRT,"}/*!sc*/
.hjlxNa{font-size:0.5625rem;margin-right:0.25rem;}/*!sc*/
data-styled.g4[id="sc-kvjqii-1"]{content:"hjlxNa,"}/*!sc*/
.bDcWjJ{margin-right:0.5rem;}/*!sc*/
data-styled.g5[id="sc-kvjqii-2"]{content:"bDcWjJ,"}/*!sc*/
.lgbLoo{color:#2e2e2e;font-family:"Elsevier Gulliver",Georgia,serif;font-size:1.5em;margin:0.75rem 0 0.5rem;width:100%;}/*!sc*/
data-styled.g6[id="sc-1nwsl0e-0"]{content:"lgbLoo,"}/*!sc*/
.bQNQKU{margin-top:3rem;padding-top:1rem;}/*!sc*/
data-styled.g7[id="sc-1nwsl0e-1"]{content:"bQNQKU,"}/*!sc*/
.gazhpM{padding:0 1rem;}/*!sc*/
@media screen and (min-width:61.25em){.gazhpM{padding:0;}}/*!sc*/
data-styled.g8[id="sc-1nwsl0e-2"]{content:"gazhpM,"}/*!sc*/
.VQbJA{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;}/*!sc*/
data-styled.g9[id="sc-1nwsl0e-3"]{content:"VQbJA,"}/*!sc*/
.cviXWN{width:13.75em;}/*!sc*/
data-styled.g10[id="sc-1nwsl0e-4"]{content:"cviXWN,"}/*!sc*/
.hugDdc{color:#505050;margin-right:0.5rem;}/*!sc*/
data-styled.g11[id="sc-1nwsl0e-5"]{content:"hugDdc,"}/*!sc*/
.fhoAiN{list-style:none;margin:0 1rem 2rem 0;padding:0;}/*!sc*/
.fhoAiN li{line-height:1.35;margin-bottom:0.75rem;}/*!sc*/
data-styled.g12[id="sc-1nwsl0e-6"]{content:"fhoAiN,"}/*!sc*/
.esiGMQ{color:#505050;}/*!sc*/
data-styled.g13[id="sc-1nwsl0e-7"]{content:"esiGMQ,"}/*!sc*/
.cFSZAH{margin-top:0.25rem;}/*!sc*/
.cFSZAH a{color:#737373;}/*!sc*/
.cFSZAH a::after{margin:0 0.25rem;content:url('data:image/svg+xml;charset=utf-8,<svg width="12" height="12" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 9 15"><path d="M.156 13.469L6.094 7.53.156 1.594 1.25.5l7.031 7.031-7.031 7.032z" fill="grey" fill-rule="nonzero" /></svg>');}/*!sc*/
.cFSZAH ol{display:block;list-style-type:none;margin:0;padding:0;}/*!sc*/
.cFSZAH li{display:inline;}/*!sc*/
.cFSZAH li:last-of-type a::after{content:'';}/*!sc*/
data-styled.g14[id="sc-yuedcl-0"]{content:"cFSZAH,"}/*!sc*/
.hCLUbN{color:#2e2e2e;font-size:1.5em;font-weight:400;line-height:1.2;margin:0;}/*!sc*/
@media screen and (min-width:37.5em){.hCLUbN{font-size:2em;}}/*!sc*/
data-styled.g15[id="sc-1qrq3sd-0"]{content:"hCLUbN,"}/*!sc*/
.MKjKb{color:#505050;font-size:1.5em;font-weight:400;line-height:1.3;margin:0;}/*!sc*/
data-styled.g16[id="sc-1qrq3sd-1"]{content:"MKjKb,"}/*!sc*/
.iBQUpF{color:#505050;font-size:1.5em;font-weight:700;line-height:1.1667;padding:0.05px 0;margin-top:0;margin-bottom:1rem;}/*!sc*/
.iBQUpF::before{content:'';margin-top:-0.2349em;display:block;height:0;}/*!sc*/
.iBQUpF::after{content:'';margin-bottom:-0.2759em;display:block;height:0;}/*!sc*/
data-styled.g17[id="sc-1qrq3sd-2"]{content:"iBQUpF,"}/*!sc*/
.eTETae{font-size:16px;line-height:24px;margin:0 0 1.5rem;max-width:72ch;}/*!sc*/
.eTETae::before{content:'';margin-bottom:-0.3995em;display:table;}/*!sc*/
.eTETae::after{content:'';margin-top:-0.4405em;display:table;}/*!sc*/
.eTETae:last-child{margin-bottom:0;}/*!sc*/
data-styled.g18[id="sc-1q3g1nv-0"]{content:"eTETae,"}/*!sc*/
.ddyzPP{color:#737373;font-size:0.875em;}/*!sc*/
data-styled.g19[id="sc-jsgros-0"]{content:"ddyzPP,"}/*!sc*/
.AcWHr{color:#505050;display:inline-block;}/*!sc*/
.AcWHr p{margin:0.25rem 0 0;}/*!sc*/
data-styled.g20[id="sc-uosj0-0"]{content:"AcWHr,"}/*!sc*/
.fAiWUX{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;position:relative;}/*!sc*/
.fAiWUX::before{content:'';z-index:1;position:absolute;top:0;left:0;width:100%;height:100%;border:1px solid rgb(0 0 0 / 15%);}/*!sc*/
data-styled.g21[id="sc-uosj0-1"]{content:"fAiWUX,"}/*!sc*/
.hnoKGz{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;-webkit-align-items:baseline;-webkit-box-align:baseline;-ms-flex-align:baseline;align-items:baseline;border-radius:0;border:2px solid transparent;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-transition:all 120ms ease 0s;transition:all 120ms ease 0s;}/*!sc*/
.hnoKGz:active,.hnoKGz:hover,.hnoKGz[data-focus-visible-added]{outline:0;-webkit-text-decoration:none;text-decoration:none;background-color:#eb6500;border:2px solid #eb6500;color:#fff;}/*!sc*/
.hnoKGz[data-button-size='default']{font-size:1em;padding:1rem 2rem;}/*!sc*/
.hnoKGz[data-button-size='default'] span{white-space:nowrap;font-size:16px;line-height:16px;}/*!sc*/
.hnoKGz[data-button-size='default'] span::before{content:'';margin-bottom:-0.1495em;display:table;}/*!sc*/
.hnoKGz[data-button-size='default'] span::after{content:'';margin-top:-0.1905em;display:table;}/*!sc*/
.hnoKGz[data-button-size='small']{font-size:0.875em;padding:0.5rem 1rem;}/*!sc*/
.hnoKGz[data-button-size='small'] span{white-space:nowrap;font-size:14px;line-height:18px;}/*!sc*/
.hnoKGz[data-button-size='small'] span::before{content:'';margin-bottom:-0.2924em;display:table;}/*!sc*/
.hnoKGz[data-button-size='small'] span::after{content:'';margin-top:-0.3334em;display:table;}/*!sc*/
data-styled.g22[id="sc-4ky1f6-0"]{content:"hnoKGz,"}/*!sc*/
.hLnlQv{background-color:#007398;border-color:#007398;color:#fff;}/*!sc*/
data-styled.g23[id="sc-4ky1f6-1"]{content:"hLnlQv,"}/*!sc*/
.hcBixJ{background-color:#fff;border-color:#007398;color:#007398;}/*!sc*/
data-styled.g25[id="sc-4ky1f6-3"]{content:"hcBixJ,"}/*!sc*/
.hQPrvi{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:transparent;border:0;color:#0c7dbb;cursor:pointer;display:inline;font-family:"Nexus Sans",Arial,sans-serif;font-size:inherit;line-height:1.6;padding:0;-webkit-transition:color 0.12s ease,text-decoration-color 0.12s ease;transition:color 0.12s ease,text-decoration-color 0.12s ease;}/*!sc*/
.hQPrvi:hover,.hQPrvi:active{color:#2e2e2e;-webkit-text-decoration-line:underline;text-decoration-line:underline;-webkit-text-decoration-thickness:2px;text-decoration-thickness:2px;text-underline-offset:0.3rem;}/*!sc*/
.hQPrvi:hover{-webkit-text-decoration-color:#eb6500;text-decoration-color:#eb6500;}/*!sc*/
.hQPrvi:active{-webkit-text-decoration-color:#2e2e2e;text-decoration-color:#2e2e2e;}/*!sc*/
.hQPrvi[data-focus-visible-added]{outline-style:solid;outline-width:2px;}/*!sc*/
data-styled.g35[id="sc-1qzfzkl-0"]{content:"hQPrvi,"}/*!sc*/
.grcxMK{position:relative;display:inline-block;}/*!sc*/
data-styled.g36[id="sc-1fdbg4d-0"]{content:"grcxMK,"}/*!sc*/
.qRtBA{font-size:0.6rem;margin-left:0.25rem;-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg);}/*!sc*/
.qRtBA[data-open]{-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg);}/*!sc*/
data-styled.g37[id="sc-1fdbg4d-1"]{content:"qRtBA,"}/*!sc*/
.dZzYzL{position:absolute;top:2rem;}/*!sc*/
data-styled.g38[id="sc-1fdbg4d-2"]{content:"dZzYzL,"}/*!sc*/
.gnRPaP{z-index:5;right:0;top:calc(100% + 1rem);min-width:15em;padding:1rem;background:rgba(235,235,235,0.85);border-top:2px solid #ff6c00;}/*!sc*/
.gnRPaP::after,.gnRPaP::before{content:'';position:absolute;right:0;width:0;height:0;border-top:0.40625em solid transparent;border-left:0.40625em solid transparent;}/*!sc*/
.gnRPaP::before{top:-13px;border-right:0.40625em solid #ff6c00;border-bottom:0.40625em solid #ff6c00;}/*!sc*/
.gnRPaP::after{top:-10px;border-right:0.40625em solid #ebebeb;border-bottom:0.40625em solid #ebebeb;}/*!sc*/
.egOxdO{border:1px solid #b9b9b9;background:#f5f5f5;box-shadow:0 0 0.5rem 0 rgba(0,0,0,0.15);z-index:2;}/*!sc*/
data-styled.g39[id="sc-1fdbg4d-3"]{content:"gnRPaP,egOxdO,"}/*!sc*/
.gVBpEc{list-style-type:none;margin:0;z-index:3;padding:1rem 1rem;white-space:nowrap;}/*!sc*/
.gVBpEc[data-align='left']{left:0;}/*!sc*/
.gVBpEc[data-align='right']{right:0;}/*!sc*/
data-styled.g40[id="sc-1fdbg4d-4"]{content:"gVBpEc,"}/*!sc*/
.fWJIJp{background:white;}/*!sc*/
data-styled.g41[id="sc-1fdbg4d-5"]{content:"fWJIJp,"}/*!sc*/
.dTlWdR{margin-bottom:0.75rem;}/*!sc*/
.dTlWdR:last-of-type{margin-bottom:0;}/*!sc*/
data-styled.g42[id="sc-1fdbg4d-6"]{content:"dTlWdR,"}/*!sc*/
.LGFeA{margin-bottom:0.75rem;}/*!sc*/
data-styled.g43[id="sc-1fdbg4d-7"]{content:"LGFeA,"}/*!sc*/
.ewtwcb{color:#505050;font-size:1.25em;line-height:1.35;cursor:pointer;}/*!sc*/
.ewtwcb:hover,.ewtwcb:active,.ewtwcb[data-focus-visible-added]{outline:none;-webkit-text-decoration-line:underline;text-decoration-line:underline;-webkit-text-decoration-color:#ff6c00;text-decoration-color:#ff6c00;-webkit-text-decoration-thickness:2px;text-decoration-thickness:2px;text-underline-offset:0.3rem;}/*!sc*/
data-styled.g44[id="sc-1fdbg4d-8"]{content:"ewtwcb,"}/*!sc*/
.cRFLRd{margin:1rem 0 0.5rem;}/*!sc*/
.cRFLRd > *{margin-right:1rem;margin-bottom:0;}/*!sc*/
data-styled.g45[id="sc-1f27thb-0"]{content:"cRFLRd,"}/*!sc*/
.fWlycu{display:none;opacity:0;-webkit-transition:opacity 200ms ease;transition:opacity 200ms ease;}/*!sc*/
data-styled.g91[id="sc-dc2toh-0"]{content:"fWlycu,"}/*!sc*/
.jdxuot{background-color:white;border-bottom:0.075rem solid #dcdcdc;padding:0.25rem 0.75rem;}/*!sc*/
data-styled.g92[id="sc-29krko-0"]{content:"jdxuot,"}/*!sc*/
.edcyFL{font-family:"Elsevier Gulliver",Georgia,serif;font-size:1em;font-weight:400;line-height:1.25;margin:0;margin-right:auto;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:25rem;}/*!sc*/
data-styled.g93[id="sc-29krko-1"]{content:"edcyFL,"}/*!sc*/
.lcqMeI{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:nowrap;-ms-flex-wrap:nowrap;flex-wrap:nowrap;}/*!sc*/
data-styled.g94[id="sc-29krko-2"]{content:"lcqMeI,"}/*!sc*/
.PQfhP{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}/*!sc*/
data-styled.g95[id="sc-29krko-3"]{content:"PQfhP,"}/*!sc*/
.jETNdX{display:none;font-size:0.875em;margin:0;}/*!sc*/
@media screen and (min-width:45em){.jETNdX{display:grid;grid-template-columns:repeat(2,auto);grid-gap:1rem;}}/*!sc*/
data-styled.g96[id="sc-29krko-4"]{content:"jETNdX,"}/*!sc*/
.gOAMsJ{display:grid;grid-gap:0.5rem;grid-template-columns:repeat(2,auto);grid-template-rows:auto;position:relative;}/*!sc*/
data-styled.g97[id="sc-29krko-5"]{content:"gOAMsJ,"}/*!sc*/
.bBznbl{margin:0;}/*!sc*/
data-styled.g98[id="sc-29krko-6"]{content:"bBznbl,"}/*!sc*/
.dnrrWg{margin:0 0.75rem;}/*!sc*/
data-styled.g99[id="sc-29krko-7"]{content:"dnrrWg,"}/*!sc*/
@media screen and (max-width:30em){.iQzzfb{display:none;}}/*!sc*/
data-styled.g100[id="sc-29krko-8"]{content:"iQzzfb,"}/*!sc*/
.RNqsW{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;margin-right:0.75rem;}/*!sc*/
data-styled.g101[id="sc-29krko-9"]{content:"RNqsW,"}/*!sc*/
.eqibmi{margin-bottom:0;margin-left:0.5rem;}/*!sc*/
data-styled.g102[id="sc-29krko-10"]{content:"eqibmi,"}/*!sc*/
.civIvf{margin-bottom:0;margin-left:0.5rem;}/*!sc*/
data-styled.g103[id="sc-29krko-11"]{content:"civIvf,"}/*!sc*/
.emEISL{border-top:2px solid #ff6c00;padding:2rem 0 4rem;}/*!sc*/
data-styled.g104[id="sc-1c6xsv-0"]{content:"emEISL,"}/*!sc*/
.kEACDc{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:flex-start;-webkit-box-align:flex-start;-ms-flex-align:flex-start;align-items:flex-start;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;padding:0 1rem;}/*!sc*/
@media screen and (min-width:35em){.kEACDc{-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;}}/*!sc*/
@supports (grid-area:auto){.kEACDc{display:grid;grid-gap:0.5rem;grid-template-columns:auto 1fr;grid-auto-rows:auto auto;grid-template-areas:'text text' 'logo-left logo-right';padding:0 1rem;}@media screen and (min-width:61.25em){.kEACDc{grid-template-columns:10em auto 10em;grid-template-areas:'logo-left text logo-right';padding:0;}}}/*!sc*/
data-styled.g105[id="sc-1c6xsv-1"]{content:"kEACDc,"}/*!sc*/
.gwkjaf{grid-area:logo-left;}/*!sc*/
data-styled.g106[id="sc-1c6xsv-2"]{content:"gwkjaf,"}/*!sc*/
.dzhXup{grid-area:logo-right;}/*!sc*/
data-styled.g107[id="sc-1c6xsv-3"]{content:"dzhXup,"}/*!sc*/
.hHsELc{padding:0.75rem 0;grid-area:text;width:100%;}/*!sc*/
data-styled.g108[id="sc-1c6xsv-4"]{content:"hHsELc,"}/*!sc*/
.cfTwSE{color:#737373;max-width:100%;}/*!sc*/
.cfTwSE:not(:last-child){margin:0 0 1rem;}/*!sc*/
.cfTwSE a{margin-right:1rem;}/*!sc*/
data-styled.g109[id="sc-1c6xsv-5"]{content:"cfTwSE,"}/*!sc*/
.bXyrVZ{color:#505050;font-size:1.25em;}/*!sc*/
.bXyrVZ[data-focus-visible-added]{outline:none;-webkit-text-decoration-color:#eb6500;text-decoration-color:#eb6500;-webkit-text-decoration-line:underline;text-decoration-line:underline;-webkit-text-decoration-thickness:2px;text-decoration-thickness:2px;text-underline-offset:0.3rem;}/*!sc*/
.bXyrVZ svg{color:#b9b9b9;font-size:0.5em;}/*!sc*/
@media screen and (min-width:62em){.bXyrVZ{font-size:1em;}}/*!sc*/
@media screen and (min-width:75em){.bXyrVZ{font-size:1.25em;}}/*!sc*/
data-styled.g110[id="sc-12m3iqn-0"]{content:"bXyrVZ,"}/*!sc*/
.dyvnmg{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}/*!sc*/
data-styled.g111[id="sc-1lwlasb-0"]{content:"dyvnmg,"}/*!sc*/
.Cioql{position:relative;}/*!sc*/
data-styled.g112[id="sc-1lwlasb-1"]{content:"Cioql,"}/*!sc*/
.ldtKVU{height:2rem;width:2.25rem;}/*!sc*/
@media screen and (min-width:37.5em){.ldtKVU{height:3rem;width:3.375rem;}}/*!sc*/
data-styled.g113[id="sc-1lwlasb-2"]{content:"ldtKVU,"}/*!sc*/
.fzwpcz{height:0.5625rem;width:4.0625rem;margin-left:0.75rem;}/*!sc*/
@media screen and (min-width:37.5em){.fzwpcz{height:0.875rem;width:6.3125rem;margin-left:1.25rem;}}/*!sc*/
data-styled.g114[id="sc-1lwlasb-3"]{content:"fzwpcz,"}/*!sc*/
.bqGuKi{font-size:1.125em;}/*!sc*/
@media screen and (min-width:62em){.bqGuKi{margin-left:2px;}}/*!sc*/
data-styled.g115[id="sc-1dvbwt1-0"]{content:"bqGuKi,"}/*!sc*/
.iScfRi{color:#505050;font-size:1em;margin:0;}/*!sc*/
.iScfRi:hover,.iScfRi:active{-webkit-text-decoration:none;text-decoration:none;}/*!sc*/
.iScfRi[data-focus-visible-added]{outline:none;}/*!sc*/
.iScfRi:hover,.iScfRi:active,.iScfRi[data-focus-visible-added]{color:#ff6c00;}/*!sc*/
@media screen and (min-width:37.5em){.iScfRi{font-size:1.25em;}}/*!sc*/
@media screen and (min-width:62em){.iScfRi{border:2px solid #007398;}.iScfRi:hover,.iScfRi:active,.iScfRi[data-focus-visible-added]{background:#ff6c00;border:2px solid #ff6c00;color:#fff;}}/*!sc*/
data-styled.g116[id="sc-1dvbwt1-1"]{content:"iScfRi,"}/*!sc*/
.kfquvO{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}/*!sc*/
@media screen and (min-width:62em){.kfquvO{padding:0.5rem;}}/*!sc*/
@media screen and (min-width:75em){.kfquvO{padding:0.5rem 1rem;}}/*!sc*/
data-styled.g117[id="sc-1dvbwt1-2"]{content:"kfquvO,"}/*!sc*/
.ioewXg{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;margin-right:0.25rem;font-size:20px;line-height:20px;}/*!sc*/
.ioewXg::before{content:'';margin-bottom:-0.1495em;display:table;}/*!sc*/
.ioewXg::after{content:'';margin-top:-0.1905em;display:table;}/*!sc*/
@media screen and (max-width:75em){.ioewXg{border:0;-webkit-clip:rect(0 0 0 0);clip:rect(0 0 0 0);-webkit-clip-path:inset(50%);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;white-space:nowrap;word-wrap:normal;}}/*!sc*/
data-styled.g118[id="sc-1dvbwt1-3"]{content:"ioewXg,"}/*!sc*/
.jdzJJA{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;list-style-type:none;margin:0;padding:0;}/*!sc*/
data-styled.g119[id="sc-1uz32rr-0"]{content:"jdzJJA,"}/*!sc*/
.kQunip{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-left:1.5rem;}/*!sc*/
.kQunip:first-of-type{margin-left:0;}/*!sc*/
.kQunip:last-of-type{margin-left:2rem;}/*!sc*/
data-styled.g120[id="sc-1uz32rr-1"]{content:"kQunip,"}/*!sc*/
.isxohE{display:none;}/*!sc*/
@media screen and (min-width:62em){.isxohE{display:initial;}}/*!sc*/
data-styled.g121[id="sc-1uz32rr-2"]{content:"isxohE,"}/*!sc*/
@media screen and (min-width:62em){.fjIepc{display:none;}}/*!sc*/
data-styled.g122[id="sc-1uz32rr-3"]{content:"fjIepc,"}/*!sc*/
.kMumlj{color:#505050;font-size:20px;line-height:16px;}/*!sc*/
.kMumlj::before{content:'';margin-bottom:-0.0495em;display:table;}/*!sc*/
.kMumlj::after{content:'';margin-top:-0.0905em;display:table;}/*!sc*/
.kMumlj:hover,.kMumlj:active{-webkit-text-decoration:none;text-decoration:none;outline:none;}/*!sc*/
.kMumlj[data-focus-visible-added]{outline:none;}/*!sc*/
.kMumlj:hover,.kMumlj:active,.kMumlj[data-focus-visible-added]{color:#ff6c00;}/*!sc*/
@media screen and (min-width:37.5em){.kMumlj{font-size:24px;line-height:24px;}.kMumlj::before{content:'';margin-bottom:-0.1495em;display:table;}.kMumlj::after{content:'';margin-top:-0.1905em;display:table;}}/*!sc*/
data-styled.g123[id="sc-1uz32rr-4"]{content:"kMumlj,"}/*!sc*/
.kEzLkc{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;color:#505050;font-size:1.25em;padding-top:0.25rem;}/*!sc*/
.kEzLkc:hover,.kEzLkc:active,.kEzLkc[data-focus-visible-added]{-webkit-text-decoration:none;text-decoration:none;color:#ff6c00;}/*!sc*/
.kEzLkc[data-focus-visible-added]{outline:none;}/*!sc*/
.kEzLkc svg{width:2em;}/*!sc*/
@media screen and (min-width:37.5em){.kEzLkc{font-size:1.5em;}}/*!sc*/
@media screen and (min-width:62em){.kEzLkc{display:none;}}/*!sc*/
data-styled.g124[id="sc-1uz32rr-5"]{content:"kEzLkc,"}/*!sc*/
.iJdaFT{display:none;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;margin-bottom:2rem;}/*!sc*/
@media screen and (min-width:62em){.iJdaFT{display:none;}}/*!sc*/
data-styled.g125[id="sc-vyngc7-0"]{content:"iJdaFT,"}/*!sc*/
.jKSCEA{color:#505050;width:15em;}/*!sc*/
data-styled.g126[id="sc-vyngc7-1"]{content:"jKSCEA,"}/*!sc*/
.fuFVHx{display:none;font-size:1em;right:0.75rem;top:0.75rem;position:absolute;}/*!sc*/
.fuFVHx.visible{display:block;}/*!sc*/
data-styled.g127[id="sc-vyngc7-2"]{content:"fuFVHx,"}/*!sc*/
.LYYST{white-space:nowrap;margin-bottom:2rem;}/*!sc*/
@media screen and (min-width:62em){.LYYST{position:relative;margin-right:2rem;margin-bottom:0;}}/*!sc*/
data-styled.g128[id="sc-gvqsvo-0"]{content:"LYYST,"}/*!sc*/
.hUPkbI{color:#737373;font-size:1.25em;font-weight:400;margin:2rem 0 1.5rem;}/*!sc*/
data-styled.g129[id="sc-gvqsvo-1"]{content:"hUPkbI,"}/*!sc*/
.hdZLuu{min-width:15em;}/*!sc*/
data-styled.g130[id="sc-gvqsvo-2"]{content:"hdZLuu,"}/*!sc*/
.doOpoN{background:#fff;list-style:none;margin:0;padding:0;}/*!sc*/
data-styled.g131[id="sc-gvqsvo-3"]{content:"doOpoN,"}/*!sc*/
.dYBQLb{margin-bottom:0.75rem;}/*!sc*/
data-styled.g132[id="sc-gvqsvo-4"]{content:"dYBQLb,"}/*!sc*/
@media screen and (min-width:62em){.eTXxtX{display:none;}}/*!sc*/
data-styled.g133[id="sc-gvqsvo-5"]{content:"eTXxtX,"}/*!sc*/
.cWkpUK{display:none;}/*!sc*/
@media screen and (min-width:62em){.cWkpUK{display:block;}}/*!sc*/
data-styled.g134[id="sc-gvqsvo-6"]{content:"cWkpUK,"}/*!sc*/
.iCwJnF{position:absolute;background-color:#fff;overflow:hidden;padding:0 2rem;z-index:4;top:calc(100% + 1px);left:0;width:100%;}/*!sc*/
data-styled.g135[id="sc-nbr0sq-0"]{content:"iCwJnF,"}/*!sc*/
.iPBpEs{margin:2rem 0;}/*!sc*/
data-styled.g136[id="sc-nbr0sq-1"]{content:"iPBpEs,"}/*!sc*/
.jRjTLz{border-bottom:1px solid #b9b9b9;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;}/*!sc*/
data-styled.g137[id="sc-nbr0sq-2"]{content:"jRjTLz,"}/*!sc*/
.lefOXt{font-size:1.5em;}/*!sc*/
data-styled.g138[id="sc-nbr0sq-3"]{content:"lefOXt,"}/*!sc*/
.CJUyz{background-color:#fff;border:0;color:#505050;font-family:"Nexus Sans",Arial,sans-serif;font-size:1.5em;padding:1rem 0.5rem 0.5rem;box-shadow:none;margin-bottom:0;outline:0;overflow:hidden;width:100%;}/*!sc*/
.CJUyz[data-focus-visible-added]{outline:none;}/*!sc*/
.CJUyz::-webkit-search-cancel-button{-webkit-appearance:none;-moz-appearance:none;appearance:none;}/*!sc*/
data-styled.g139[id="sc-nbr0sq-4"]{content:"CJUyz,"}/*!sc*/
.bwhAfp{border:0;cursor:pointer;color:#0c7dbb;font-size:1.75em;margin-bottom:0;background-color:transparent;-webkit-transition:fill 0.15s linear;transition:fill 0.15s linear;}/*!sc*/
.bwhAfp:hover{color:#ff6c00;}/*!sc*/
data-styled.g140[id="sc-nbr0sq-5"]{content:"bwhAfp,"}/*!sc*/
.iMbvxE{border:0;cursor:pointer;color:#dcdcdc;display:none;font-size:1em;margin-bottom:0;background-color:transparent;-webkit-transition:fill 0.15s linear;transition:fill 0.15s linear;}/*!sc*/
.iMbvxE:hover{color:#505050;}/*!sc*/
data-styled.g141[id="sc-nbr0sq-6"]{content:"iMbvxE,"}/*!sc*/
.AZirp{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;background-color:#fff;padding:0.5rem 0.75rem;border-bottom:1px solid #dcdcdc;position:relative;z-index:4;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;}/*!sc*/
@media screen and (min-width:37.5em){.AZirp{padding:0.5rem 1rem;}}/*!sc*/
@media screen and (min-width:62em){.AZirp{padding:0 1.5rem;}}/*!sc*/
data-styled.g142[id="sc-e948u6-0"]{content:"AZirp,"}/*!sc*/
.iEiQWV{position:fixed;top:0;left:0;width:100%;}/*!sc*/
data-styled.g143[id="sc-e948u6-1"]{content:"iEiQWV,"}/*!sc*/
.eBRfdU{background-color:rgb(235 235 235 / 85%);position:fixed;top:0;right:0;bottom:0;left:0;-webkit-transition:background-color 500ms,visibility 500ms;transition:background-color 500ms,visibility 500ms;visibility:hidden;z-index:3;}/*!sc*/
data-styled.g144[id="sc-e948u6-2"]{content:"eBRfdU,"}/*!sc*/
.iDLdAj{background-color:#fff;color:#0c7dbb;left:0.25rem;position:absolute;top:-999%;}/*!sc*/
.iDLdAj[data-focus-visible-added]{top:0.25rem;z-index:1;}/*!sc*/
data-styled.g145[id="sc-e948u6-3"]{content:"iDLdAj,"}/*!sc*/
.gOVuFF{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;position:relative;}/*!sc*/
data-styled.g146[id="sc-e948u6-4"]{content:"gOVuFF,"}/*!sc*/
.jtQDOm{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:nowrap;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}/*!sc*/
data-styled.g147[id="sc-e948u6-5"]{content:"jtQDOm,"}/*!sc*/
.jLNEJF{-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;bottom:0;background-color:white;list-style:none;margin:0;padding:1.5rem 1rem;overflow-y:auto;-webkit-transition:-webkit-transform 0.3s ease;-webkit-transition:transform 0.3s ease;transition:transform 0.3s ease;-webkit-transform:translateX(100%);-ms-transform:translateX(100%);transform:translateX(100%);top:0;width:20em;position:fixed;right:0;}/*!sc*/
@media screen and (min-width:62em){.jLNEJF{background-color:transparent;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;position:relative;width:auto;-webkit-transform:none;-ms-transform:none;transform:none;height:initial;overflow-y:visible;padding:1.5rem 0;}}/*!sc*/
data-styled.g148[id="sc-e948u6-6"]{content:"jLNEJF,"}/*!sc*/
.jOcueP{min-width:0;overflow:hidden;-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;}/*!sc*/
.jOcueP[data-subpage] > nav,.jOcueP[data-subpage] > main{padding:0 1rem;}/*!sc*/
@media screen and (min-width:37.5em){.jOcueP[data-subpage] > nav,.jOcueP[data-subpage] > main{padding:0 2rem;}}/*!sc*/
data-styled.g149[id="sc-1g5fvti-0"]{content:"jOcueP,"}/*!sc*/
.fukXbF{background:white;padding-bottom:0.75rem;}/*!sc*/
data-styled.g150[id="sc-1g5fvti-1"]{content:"fukXbF,"}/*!sc*/
.cdVvBc{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;min-height:100vh;}/*!sc*/
data-styled.g151[id="sc-1g5fvti-2"]{content:"cdVvBc,"}/*!sc*/
.nrDZj{display:block;}/*!sc*/
.nrDZj:hover,.nrDZj:focus,.nrDZj:active{-webkit-text-decoration:none;text-decoration:none;outline:none;}/*!sc*/
.nrDZj[href]:hover,.nrDZj[href]:active{-webkit-text-decoration-line:none;text-decoration-line:none;}/*!sc*/
.nrDZj[href]:hover h2,.nrDZj[href]:active h2,.nrDZj[href]:hover h3,.nrDZj[href]:active h3,.nrDZj[href]:hover h4,.nrDZj[href]:active h4{-webkit-text-decoration-line:underline;text-decoration-line:underline;-webkit-text-decoration-thickness:2px;text-decoration-thickness:2px;text-underline-offset:0.2rem;}/*!sc*/
.nrDZj[href]:active h2,.nrDZj[href]:active h3,.nrDZj[href]:active h4{-webkit-text-decoration-color:#2e2e2e;text-decoration-color:#2e2e2e;}/*!sc*/
.nrDZj[href]:hover h2,.nrDZj[href]:hover h3,.nrDZj[href]:hover h4{-webkit-text-decoration-color:#eb6500;text-decoration-color:#eb6500;}/*!sc*/
.nrDZj[href][data-focus-visible-added]{outline:2px solid #eb6500;}/*!sc*/
data-styled.g268[id="sc-5smygv-0"]{content:"nrDZj,"}/*!sc*/
.ljBYfY{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-top:0;margin-bottom:0;color:#505050;font-size:0.875em;}/*!sc*/
.ljBYfY > *{margin-bottom:0.25rem;}/*!sc*/
.ljBYfY > *:not(:last-child){margin-right:1rem;}/*!sc*/
data-styled.g269[id="sc-1thf9ly-0"]{content:"ljBYfY,"}/*!sc*/
.bIzabL{margin-top:0.5rem;margin-bottom:0.5rem;}/*!sc*/
.bIzabL > *{margin-bottom:0.25rem;}/*!sc*/
.bIzabL > *:nth-child(n + 3)::before{content:'|';display:inline-block;margin:0 1rem 0 0;}/*!sc*/
data-styled.g270[id="sc-1thf9ly-1"]{content:"bIzabL,"}/*!sc*/
.bKddwo{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}/*!sc*/
.bKddwo * + *{margin-left:0.25rem;}/*!sc*/
data-styled.g271[id="sc-1thf9ly-2"]{content:"bKddwo,"}/*!sc*/
.hqhUYH{font-family:"Elsevier Gulliver",Georgia,serif;font-size:1.125em;font-weight:400;color:#2e2e2e;margin:0;}/*!sc*/
data-styled.g272[id="sc-1nmom32-0"]{content:"hqhUYH,"}/*!sc*/
.ebTA-dR{font-size:1.25em;margin-bottom:0;}/*!sc*/
data-styled.g273[id="sc-1nmom32-1"]{content:"ebTA-dR,"}/*!sc*/
.ffmPq{list-style-type:none;margin:0;padding:0;}/*!sc*/
data-styled.g275[id="sc-9zxyh7-0"]{content:"ffmPq,"}/*!sc*/
.exAXfr{margin:1rem 0;}/*!sc*/
.exAXfr:last-of-type{margin-bottom:0.5rem;}/*!sc*/
data-styled.g276[id="sc-9zxyh7-1"]{content:"exAXfr,"}/*!sc*/
.jQmQZp{max-width:37.5rem;margin:1.5rem 0;}/*!sc*/
.jQmQZp:not(:last-of-type){border-bottom:1px solid #dcdcdc;}/*!sc*/
data-styled.g277[id="sc-9zxyh7-2"]{content:"jQmQZp,"}/*!sc*/
.pgLAT{-webkit-flex-basis:100%;-ms-flex-preferred-size:100%;flex-basis:100%;}/*!sc*/
data-styled.g284[id="sc-1w3fpd7-0"]{content:"pgLAT,"}/*!sc*/
.eTISqs{display:grid;grid-template-columns:1fr;grid-auto-rows:auto;-webkit-column-gap:2rem;column-gap:2rem;row-gap:1rem;grid-template-areas:'cover' 'header' 'content';}/*!sc*/
@media screen and (min-width:43.75em){.eTISqs{grid-gap:2rem;grid-template-columns:auto 1fr;grid-template-areas:'cover header' 'cover content';}}/*!sc*/
data-styled.g326[id="sc-orwwe2-0"]{content:"eTISqs,"}/*!sc*/
.dZFiMY{display:none;grid-area:cover;}/*!sc*/
@media screen and (min-width:43.75em){.dZFiMY{display:block;}}/*!sc*/
data-styled.g327[id="sc-orwwe2-1"]{content:"dZFiMY,"}/*!sc*/
.fCHAcd{grid-area:header;border-bottom:1px solid #dcdcdc;}/*!sc*/
data-styled.g328[id="sc-orwwe2-2"]{content:"fCHAcd,"}/*!sc*/
.gPmFkB{grid-area:content;}/*!sc*/
data-styled.g329[id="sc-orwwe2-3"]{content:"gPmFkB,"}/*!sc*/
.ysXeK{margin-top:0.5rem;}/*!sc*/
.fonts-loaded .sc-orwwe2-4{font-family:"Elsevier Display",Arial,sans-serif;font-weight:300;}/*!sc*/
data-styled.g330[id="sc-orwwe2-4"]{content:"ysXeK,"}/*!sc*/
.jUaFts{color:#2e2e2e;font-family:"Elsevier Gulliver",Georgia,serif;font-size:1.5em;margin:0 0 0.5rem;}/*!sc*/
data-styled.g331[id="sc-orwwe2-5"]{content:"jUaFts,"}/*!sc*/
.dtzDFi{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;margin:0.75rem 0;}/*!sc*/
.dtzDFi > *{margin-right:0.75rem;}/*!sc*/
data-styled.g332[id="sc-orwwe2-6"]{content:"dtzDFi,"}/*!sc*/
.jbCSRa{background-color:#f5f5f5;}/*!sc*/
data-styled.g333[id="sc-orwwe2-7"]{content:"jbCSRa,"}/*!sc*/
.eOytAu{max-width:60em;margin:calc(1.5rem + 0.25rem) auto 2rem;}/*!sc*/
data-styled.g398[id="sc-15ho9eu-0"]{content:"eOytAu,"}/*!sc*/
.bqTbOd{margin:0.75rem 0 3rem;font-size:1.25em;max-width:35em;}/*!sc*/
data-styled.g399[id="sc-15ho9eu-1"]{content:"bqTbOd,"}/*!sc*/
</style></head><body><noscript><iframe height="0" src="https://www.googletagmanager.com/ns.html?id=GTM-559KMPG" style="display: none; visibility: hidden;" width="0"></iframe></noscript><div id="__next"><div class="sc-1g5fvti-2 cdVvBc"><header class="sc-e948u6-0 AZirp" role="banner"><a class="sc-e948u6-3 iDLdAj" href="#skip-to-content-anchor">Skip to content</a><a class="sc-1lwlasb-0 dyvnmg" href="http://www.elsevier.com"><div class="sc-1lwlasb-1 sc-1lwlasb-2 Cioql ldtKVU"><span style="box-sizing: border-box; display: block; overflow: hidden; width: initial; height: initial; background: none; opacity: 1; border: 0px; margin: 0px; padding: 0px; position: absolute; top: 0px; left: 0px; bottom: 0px; right: 0px;"><img alt="Elsevier Tree" data-nimg="fill" decoding="async" sizes="100vw" src="/_next/image?url=%2Fimages%2Flogos%2Felsevier-graphic.svg&w=3840&q=75" srcset="/_next/image?url=%2Fimages%2Flogos%2Felsevier-graphic.svg&w=640&q=75 640w, /_next/image?url=%2Fimages%2Flogos%2Felsevier-graphic.svg&w=750&q=75 750w, /_next/image?url=%2Fimages%2Flogos%2Felsevier-graphic.svg&w=828&q=75 828w, /_next/image?url=%2Fimages%2Flogos%2Felsevier-graphic.svg&w=1080&q=75 1080w, /_next/image?url=%2Fimages%2Flogos%2Felsevier-graphic.svg&w=1200&q=75 1200w, /_next/image?url=%2Fimages%2Flogos%2Felsevier-graphic.svg&w=1920&q=75 1920w, /_next/image?url=%2Fimages%2Flogos%2Felsevier-graphic.svg&w=2048&q=75 2048w, /_next/image?url=%2Fimages%2Flogos%2Felsevier-graphic.svg&w=3840&q=75 3840w" style="position: absolute; top: 0px; left: 0px; bottom: 0px; right: 0px; box-sizing: border-box; padding: 0px; border: none; margin: auto; display: block; width: 0px; height: 0px; min-width: 100%; max-width: 100%; min-height: 100%; max-height: 100%; object-fit: contain; object-position: left center;"/><noscript><img alt="Elsevier Tree" data-nimg="fill" decoding="async" loading="eager" sizes="100vw" src="/_next/image?url=%2Fimages%2Flogos%2Felsevier-graphic.svg&w=3840&q=75" srcset="/_next/image?url=%2Fimages%2Flogos%2Felsevier-graphic.svg&w=640&q=75 640w, /_next/image?url=%2Fimages%2Flogos%2Felsevier-graphic.svg&w=750&q=75 750w, /_next/image?url=%2Fimages%2Flogos%2Felsevier-graphic.svg&w=828&q=75 828w, /_next/image?url=%2Fimages%2Flogos%2Felsevier-graphic.svg&w=1080&q=75 1080w, /_next/image?url=%2Fimages%2Flogos%2Felsevier-graphic.svg&w=1200&q=75 1200w, /_next/image?url=%2Fimages%2Flogos%2Felsevier-graphic.svg&w=1920&q=75 1920w, /_next/image?url=%2Fimages%2Flogos%2Felsevier-graphic.svg&w=2048&q=75 2048w, /_next/image?url=%2Fimages%2Flogos%2Felsevier-graphic.svg&w=3840&q=75 3840w" style="position: absolute; top: 0px; left: 0px; bottom: 0px; right: 0px; box-sizing: border-box; padding: 0px; border: none; margin: auto; display: block; width: 0px; height: 0px; min-width: 100%; max-width: 100%; min-height: 100%; max-height: 100%; object-fit: contain; object-position: left center;"/></noscript></span></div><div class="sc-1lwlasb-1 sc-1lwlasb-3 Cioql fzwpcz"><span style="box-sizing: border-box; display: block; overflow: hidden; width: initial; height: initial; background: none; opacity: 1; border: 0px; margin: 0px; padding: 0px; position: absolute; top: 0px; left: 0px; bottom: 0px; right: 0px;"><img alt="Elsevier Wordmark" data-nimg="fill" decoding="async" sizes="100vw" src="/_next/image?url=%2Fimages%2Flogos%2Felsevier-wordmark.svg&w=3840&q=75" srcset="/_next/image?url=%2Fimages%2Flogos%2Felsevier-wordmark.svg&w=640&q=75 640w, /_next/image?url=%2Fimages%2Flogos%2Felsevier-wordmark.svg&w=750&q=75 750w, /_next/image?url=%2Fimages%2Flogos%2Felsevier-wordmark.svg&w=828&q=75 828w, /_next/image?url=%2Fimages%2Flogos%2Felsevier-wordmark.svg&w=1080&q=75 1080w, /_next/image?url=%2Fimages%2Flogos%2Felsevier-wordmark.svg&w=1200&q=75 1200w, /_next/image?url=%2Fimages%2Flogos%2Felsevier-wordmark.svg&w=1920&q=75 1920w, /_next/image?url=%2Fimages%2Flogos%2Felsevier-wordmark.svg&w=2048&q=75 2048w, /_next/image?url=%2Fimages%2Flogos%2Felsevier-wordmark.svg&w=3840&q=75 3840w" style="position: absolute; top: 0px; left: 0px; bottom: 0px; right: 0px; box-sizing: border-box; padding: 0px; border: none; margin: auto; display: block; width: 0px; height: 0px; min-width: 100%; max-width: 100%; min-height: 100%; max-height: 100%; object-fit: contain; object-position: left center;"/><noscript><img alt="Elsevier Wordmark" data-nimg="fill" decoding="async" loading="eager" sizes="100vw" src="/_next/image?url=%2Fimages%2Flogos%2Felsevier-wordmark.svg&w=3840&q=75" srcset="/_next/image?url=%2Fimages%2Flogos%2Felsevier-wordmark.svg&w=640&q=75 640w, /_next/image?url=%2Fimages%2Flogos%2Felsevier-wordmark.svg&w=750&q=75 750w, /_next/image?url=%2Fimages%2Flogos%2Felsevier-wordmark.svg&w=828&q=75 828w, /_next/image?url=%2Fimages%2Flogos%2Felsevier-wordmark.svg&w=1080&q=75 1080w, /_next/image?url=%2Fimages%2Flogos%2Felsevier-wordmark.svg&w=1200&q=75 1200w, /_next/image?url=%2Fimages%2Flogos%2Felsevier-wordmark.svg&w=1920&q=75 1920w, /_next/image?url=%2Fimages%2Flogos%2Felsevier-wordmark.svg&w=2048&q=75 2048w, /_next/image?url=%2Fimages%2Flogos%2Felsevier-wordmark.svg&w=3840&q=75 3840w" style="position: absolute; top: 0px; left: 0px; bottom: 0px; right: 0px; box-sizing: border-box; padding: 0px; border: none; margin: auto; display: block; width: 0px; height: 0px; min-width: 100%; max-width: 100%; min-height: 100%; max-height: 100%; object-fit: contain; object-position: left center;"/></noscript></span></div></a><nav aria-label="Main Navigation" class="sc-e948u6-4 gOVuFF" role="navigation"><div class="sc-e948u6-5 jtQDOm"><ul class="sc-e948u6-6 jLNEJF"><li class="sc-vyngc7-0 iJdaFT"><p class="sc-1q3g1nv-0 sc-vyngc7-1 eTETae jKSCEA">Sign in to view your account details and order history</p><a class="sc-kvjqii-0 fYuYRT" href="https://account.elsevier.com/auth"><span>Sign in</span></a><button class="sc-1qzfzkl-0 sc-1uz32rr-5 hQPrvi kEzLkc"><svg aria-label="Close Navigation" class="sc-vyngc7-2 fuFVHx" height="1em" viewbox="0 0 357 357" width="1em"><path d="M357 35.7L321.3 0 178.5 142.8 35.7 0 0 35.7l142.8 142.8L0 321.3 35.7 357l142.8-142.8L321.3 357l35.7-35.7-142.8-142.8z" fill="currentColor"></path></svg></button></li><li class="sc-gvqsvo-0 sc-gvqsvo-5 LYYST eTXxtX"><h3 class="sc-1qrq3sd-2 sc-gvqsvo-1 iBQUpF hUPkbI">About Elsevier</h3><div class="sc-gvqsvo-2 hdZLuu"><ul class="sc-gvqsvo-3 doOpoN"><li class="sc-gvqsvo-4 dYBQLb"><a class="sc-kvjqii-0 fYuYRT sc-12m3iqn-0 bXyrVZ" href="https://elsevier.com/about" rel="noopener noreferrer" target="_self"><span>About us</span></a></li><li class="sc-gvqsvo-4 dYBQLb"><a class="sc-kvjqii-0 fYuYRT sc-12m3iqn-0 bXyrVZ" href="https://www.elsevier.com/connect" rel="noopener noreferrer" target="_self"><span>Elsevier Connect</span></a></li><li class="sc-gvqsvo-4 dYBQLb"><a class="sc-kvjqii-0 fYuYRT sc-12m3iqn-0 bXyrVZ" href="https://www.elsevier.com/about/careers" rel="noopener noreferrer" target="_self"><span>Careers</span></a></li></ul></div></li><li class="sc-gvqsvo-0 sc-gvqsvo-6 LYYST cWkpUK"><div class="sc-1fdbg4d-0 grcxMK"><button aria-expanded="false" class="sc-1qzfzkl-0 sc-1fdbg4d-8 hQPrvi ewtwcb">About Elsevier</button><div class="sc-1fdbg4d-2 sc-1fdbg4d-3 dZzYzL gnRPaP" data-align="left" hidden=""><ul class="sc-1fdbg4d-4 sc-1fdbg4d-5 gVBpEc fWJIJp"><li class="sc-1fdbg4d-6 sc-1fdbg4d-7 dTlWdR LGFeA"><a class="sc-kvjqii-0 fYuYRT sc-12m3iqn-0 bXyrVZ" href="https://elsevier.com/about" rel="noopener noreferrer" target="_self"><span>About us</span></a></li><li class="sc-1fdbg4d-6 sc-1fdbg4d-7 dTlWdR LGFeA"><a class="sc-kvjqii-0 fYuYRT sc-12m3iqn-0 bXyrVZ" href="https://www.elsevier.com/connect" rel="noopener noreferrer" target="_self"><span>Elsevier Connect</span></a></li><li class="sc-1fdbg4d-6 sc-1fdbg4d-7 dTlWdR LGFeA"><a class="sc-kvjqii-0 fYuYRT sc-12m3iqn-0 bXyrVZ" href="https://www.elsevier.com/about/careers" rel="noopener noreferrer" target="_self"><span>Careers</span></a></li></ul></div></div></li><li class="sc-gvqsvo-0 sc-gvqsvo-5 LYYST eTXxtX"><h3 class="sc-1qrq3sd-2 sc-gvqsvo-1 iBQUpF hUPkbI">Products & Solutions</h3><div class="sc-gvqsvo-2 hdZLuu"><ul class="sc-gvqsvo-3 doOpoN"><li class="sc-gvqsvo-4 dYBQLb"><a class="sc-kvjqii-0 fYuYRT sc-12m3iqn-0 bXyrVZ" href="https://www.elsevier.com/rd-solutions" rel="noopener noreferrer" target="_self"><span>R & D Solutions</span></a></li><li class="sc-gvqsvo-4 dYBQLb"><a class="sc-kvjqii-0 fYuYRT sc-12m3iqn-0 bXyrVZ" href="https://www.elsevier.com/clinical-solutions" rel="noopener noreferrer" target="_self"><span>Clinical Solutions</span></a></li><li class="sc-gvqsvo-4 dYBQLb"><a class="sc-kvjqii-0 fYuYRT sc-12m3iqn-0 bXyrVZ" href="https://www.elsevier.com/research-platforms" rel="noopener noreferrer" target="_self"><span>Research Platforms</span></a></li><li class="sc-gvqsvo-4 dYBQLb"><a class="sc-kvjqii-0 fYuYRT sc-12m3iqn-0 bXyrVZ" href="https://www.elsevier.com/research-intelligence" rel="noopener noreferrer" target="_self"><span>Research Intelligence</span></a></li><li class="sc-gvqsvo-4 dYBQLb"><a class="sc-kvjqii-0 fYuYRT sc-12m3iqn-0 bXyrVZ" href="https://www.elsevier.com/education" rel="noopener noreferrer" target="_self"><span>Education</span></a></li><li class="sc-gvqsvo-4 dYBQLb"><a class="sc-kvjqii-0 fYuYRT sc-12m3iqn-0 bXyrVZ" href="https://www.elsevier.com/solutions" rel="noopener noreferrer" target="_self"><span>All Solutions</span></a></li></ul></div></li><li class="sc-gvqsvo-0 sc-gvqsvo-6 LYYST cWkpUK"><div class="sc-1fdbg4d-0 grcxMK"><button aria-expanded="false" class="sc-1qzfzkl-0 sc-1fdbg4d-8 hQPrvi ewtwcb">Products & Solutions</button><div class="sc-1fdbg4d-2 sc-1fdbg4d-3 dZzYzL gnRPaP" data-align="left" hidden=""><ul class="sc-1fdbg4d-4 sc-1fdbg4d-5 gVBpEc fWJIJp"><li class="sc-1fdbg4d-6 sc-1fdbg4d-7 dTlWdR LGFeA"><a class="sc-kvjqii-0 fYuYRT sc-12m3iqn-0 bXyrVZ" href="https://www.elsevier.com/rd-solutions" rel="noopener noreferrer" target="_self"><span>R & D Solutions</span></a></li><li class="sc-1fdbg4d-6 sc-1fdbg4d-7 dTlWdR LGFeA"><a class="sc-kvjqii-0 fYuYRT sc-12m3iqn-0 bXyrVZ" href="https://www.elsevier.com/clinical-solutions" rel="noopener noreferrer" target="_self"><span>Clinical Solutions</span></a></li><li class="sc-1fdbg4d-6 sc-1fdbg4d-7 dTlWdR LGFeA"><a class="sc-kvjqii-0 fYuYRT sc-12m3iqn-0 bXyrVZ" href="https://www.elsevier.com/research-platforms" rel="noopener noreferrer" target="_self"><span>Research Platforms</span></a></li><li class="sc-1fdbg4d-6 sc-1fdbg4d-7 dTlWdR LGFeA"><a class="sc-kvjqii-0 fYuYRT sc-12m3iqn-0 bXyrVZ" href="https://www.elsevier.com/research-intelligence" rel="noopener noreferrer" target="_self"><span>Research Intelligence</span></a></li><li class="sc-1fdbg4d-6 sc-1fdbg4d-7 dTlWdR LGFeA"><a class="sc-kvjqii-0 fYuYRT sc-12m3iqn-0 bXyrVZ" href="https://www.elsevier.com/education" rel="noopener noreferrer" target="_self"><span>Education</span></a></li><li class="sc-1fdbg4d-6 sc-1fdbg4d-7 dTlWdR LGFeA"><a class="sc-kvjqii-0 fYuYRT sc-12m3iqn-0 bXyrVZ" href="https://www.elsevier.com/solutions" rel="noopener noreferrer" target="_self"><span>All Solutions</span></a></li></ul></div></div></li><li class="sc-gvqsvo-0 sc-gvqsvo-5 LYYST eTXxtX"><h3 class="sc-1qrq3sd-2 sc-gvqsvo-1 iBQUpF hUPkbI">Services</h3><div class="sc-gvqsvo-2 hdZLuu"><ul class="sc-gvqsvo-3 doOpoN"><li class="sc-gvqsvo-4 dYBQLb"><a class="sc-kvjqii-0 fYuYRT sc-12m3iqn-0 bXyrVZ" href="https://www.elsevier.com/authors" rel="noopener noreferrer" target="_self"><span>Authors</span></a></li><li class="sc-gvqsvo-4 dYBQLb"><a class="sc-kvjqii-0 fYuYRT sc-12m3iqn-0 bXyrVZ" href="https://www.elsevier.com/editors" rel="noopener noreferrer" target="_self"><span>Editors</span></a></li><li class="sc-gvqsvo-4 dYBQLb"><a class="sc-kvjqii-0 fYuYRT sc-12m3iqn-0 bXyrVZ" href="https://www.elsevier.com/reviewers" rel="noopener noreferrer" target="_self"><span>Reviewers</span></a></li><li class="sc-gvqsvo-4 dYBQLb"><a class="sc-kvjqii-0 fYuYRT sc-12m3iqn-0 bXyrVZ" href="https://www.elsevier.com/librarians" rel="noopener noreferrer" target="_self"><span>Librarians</span></a></li><li class="sc-gvqsvo-4 dYBQLb"><a class="sc-kvjqii-0 fYuYRT sc-12m3iqn-0 bXyrVZ" href="https://www.elsevier.com/strategic-partners" rel="noopener noreferrer" target="_self"><span>Strategic Partners</span></a></li><li class="sc-gvqsvo-4 dYBQLb"><a class="sc-kvjqii-0 fYuYRT sc-12m3iqn-0 bXyrVZ" href="https://www.elsevier.com/open-access" rel="noopener noreferrer" target="_self"><span>Open Access</span></a></li><li class="sc-gvqsvo-4 dYBQLb"><a class="sc-kvjqii-0 fYuYRT sc-12m3iqn-0 bXyrVZ" href="https://www.elsevier.com/societies" rel="noopener noreferrer" target="_self"><span>Societies</span></a></li></ul></div></li><li class="sc-gvqsvo-0 sc-gvqsvo-6 LYYST cWkpUK"><div class="sc-1fdbg4d-0 grcxMK"><button aria-expanded="false" class="sc-1qzfzkl-0 sc-1fdbg4d-8 hQPrvi ewtwcb">Services</button><div class="sc-1fdbg4d-2 sc-1fdbg4d-3 dZzYzL gnRPaP" data-align="left" hidden=""><ul class="sc-1fdbg4d-4 sc-1fdbg4d-5 gVBpEc fWJIJp"><li class="sc-1fdbg4d-6 sc-1fdbg4d-7 dTlWdR LGFeA"><a class="sc-kvjqii-0 fYuYRT sc-12m3iqn-0 bXyrVZ" href="https://www.elsevier.com/authors" rel="noopener noreferrer" target="_self"><span>Authors</span></a></li><li class="sc-1fdbg4d-6 sc-1fdbg4d-7 dTlWdR LGFeA"><a class="sc-kvjqii-0 fYuYRT sc-12m3iqn-0 bXyrVZ" href="https://www.elsevier.com/editors" rel="noopener noreferrer" target="_self"><span>Editors</span></a></li><li class="sc-1fdbg4d-6 sc-1fdbg4d-7 dTlWdR LGFeA"><a class="sc-kvjqii-0 fYuYRT sc-12m3iqn-0 bXyrVZ" href="https://www.elsevier.com/reviewers" rel="noopener noreferrer" target="_self"><span>Reviewers</span></a></li><li class="sc-1fdbg4d-6 sc-1fdbg4d-7 dTlWdR LGFeA"><a class="sc-kvjqii-0 fYuYRT sc-12m3iqn-0 bXyrVZ" href="https://www.elsevier.com/librarians" rel="noopener noreferrer" target="_self"><span>Librarians</span></a></li><li class="sc-1fdbg4d-6 sc-1fdbg4d-7 dTlWdR LGFeA"><a class="sc-kvjqii-0 fYuYRT sc-12m3iqn-0 bXyrVZ" href="https://www.elsevier.com/strategic-partners" rel="noopener noreferrer" target="_self"><span>Strategic Partners</span></a></li><li class="sc-1fdbg4d-6 sc-1fdbg4d-7 dTlWdR LGFeA"><a class="sc-kvjqii-0 fYuYRT sc-12m3iqn-0 bXyrVZ" href="https://www.elsevier.com/open-access" rel="noopener noreferrer" target="_self"><span>Open Access</span></a></li><li class="sc-1fdbg4d-6 sc-1fdbg4d-7 dTlWdR LGFeA"><a class="sc-kvjqii-0 fYuYRT sc-12m3iqn-0 bXyrVZ" href="https://www.elsevier.com/societies" rel="noopener noreferrer" target="_self"><span>Societies</span></a></li></ul></div></div></li><li class="sc-gvqsvo-0 sc-gvqsvo-5 LYYST eTXxtX"><h3 class="sc-1qrq3sd-2 sc-gvqsvo-1 iBQUpF hUPkbI">Shop & Discover</h3><div class="sc-gvqsvo-2 hdZLuu"><ul class="sc-gvqsvo-3 doOpoN"><li class="sc-gvqsvo-4 dYBQLb"><a class="sc-kvjqii-0 fYuYRT sc-12m3iqn-0 bXyrVZ" href="https://www.elsevier.com/books-and-journals" rel="noopener noreferrer" target="_self"><span>Books & Journals</span></a></li><li class="sc-gvqsvo-4 dYBQLb"><a class="sc-kvjqii-0 fYuYRT sc-12m3iqn-0 bXyrVZ" href="https://webshop.elsevier.com/?utm_source=ecom&utm_medium=top&utm_campaign=webshop" rel="noopener noreferrer" target="_self"><span>Author Webshop <svg aria-hidden="true" height="1em" viewbox="0 0 14 14" width="1em" xmlns="http://www.w3.org/2000/svg"><path d="M.445 1.829H10.9L0 12.705 1.294 14 12.167 3.149v10.38H14V0H.445z" fill="currentColor" fill-rule="nonzero"></path></svg></span></a></li></ul></div></li><li class="sc-gvqsvo-0 sc-gvqsvo-6 LYYST cWkpUK"><div class="sc-1fdbg4d-0 grcxMK"><button aria-expanded="false" class="sc-1qzfzkl-0 sc-1fdbg4d-8 hQPrvi ewtwcb">Shop & Discover</button><div class="sc-1fdbg4d-2 sc-1fdbg4d-3 dZzYzL gnRPaP" data-align="left" hidden=""><ul class="sc-1fdbg4d-4 sc-1fdbg4d-5 gVBpEc fWJIJp"><li class="sc-1fdbg4d-6 sc-1fdbg4d-7 dTlWdR LGFeA"><a class="sc-kvjqii-0 fYuYRT sc-12m3iqn-0 bXyrVZ" href="https://www.elsevier.com/books-and-journals" rel="noopener noreferrer" target="_self"><span>Books & Journals</span></a></li><li class="sc-1fdbg4d-6 sc-1fdbg4d-7 dTlWdR LGFeA"><a class="sc-kvjqii-0 fYuYRT sc-12m3iqn-0 bXyrVZ" href="https://webshop.elsevier.com/?utm_source=ecom&utm_medium=top&utm_campaign=webshop" rel="noopener noreferrer" target="_self"><span>Author Webshop <svg aria-hidden="true" height="1em" viewbox="0 0 14 14" width="1em" xmlns="http://www.w3.org/2000/svg"><path d="M.445 1.829H10.9L0 12.705 1.294 14 12.167 3.149v10.38H14V0H.445z" fill="currentColor" fill-rule="nonzero"></path></svg></span></a></li></ul></div></div></li></ul><ul class="sc-1uz32rr-0 jdzJJA"><li class="sc-1uz32rr-1 kQunip"><button aria-controls="react-collapsed-panel-undefined" aria-expanded="false" class="sc-1qzfzkl-0 sc-1dvbwt1-1 hQPrvi iScfRi" id="react-collapsed-toggle-undefined" role="button" tabindex="0" type="button"><div class="sc-1dvbwt1-2 kfquvO"><span class="sc-1dvbwt1-3 ioewXg">Search</span><svg class="sc-1dvbwt1-0 bqGuKi" height="1em" preserveaspectratio="xMinYMax meet" viewbox="12 8 55 60" width="1em"><path d="M65.6 62L52 48.4c2.9-3.7 4.5-8.2 4.5-13 0-5.6-2.2-10.9-6.2-14.9s-9.3-6.2-14.9-6.2-10.9 2.2-14.9 6.2-6.2 9.3-6.2 14.9 2.2 10.9 6.2 14.9 9.3 6.2 14.9 6.2c4.8 0 9.3-1.6 13-4.5L62 65.6l3.6-3.6zM24.1 46.7c-3-3-4.7-7-4.7-11.3 0-4.3 1.7-8.3 4.7-11.3s7-4.7 11.3-4.7c4.3 0 8.3 1.7 11.3 4.7s4.7 7 4.7 11.3c0 4.3-1.7 8.3-4.7 11.3s-7 4.7-11.3 4.7c-4.3 0-8.3-1.7-11.3-4.7z" fill="currentColor"></path></svg></div></button></li><li class="sc-1uz32rr-1 kQunip"><a class="sc-1uz32rr-4 kMumlj" href="https://global-checkout.elsevier.com"><svg aria-label="View Cart" height="1em" viewbox="0 0 64 64" width="1em"><path d="M18.82 10c-1.112-3-4.467-6-8.308-6h-9.3v5h9.3c1.97 0 3.7 1.612 3.7 3.452v28.52c0 4.577 3.57 8.031 8.3 8.031h33.7v-5h-33.7c-2.005 0-3.3-1.191-3.3-3.031v-25.98h35.6c-.385 5-.95 11.89-1.216 13.64-.274 1.808-1.98 3.14-4.451 3.477-2.796.383-17.34 2.057-23.93 2.855V40c6.274-.76 21.65-2.536 24.61-2.94 4.685-.642 8.107-3.66 8.716-7.687.425-2.811 1.421-16.12 1.464-16.69l.2-2.685h-41.38m32.4 42c-2.764 0-5 2.238-5 5s2.236 5 5 5a5.001 5.001 0 000-10m-32 0c-2.763 0-5 2.238-5 5a5 5 0 1010 0 5 5 0 00-5-5" fill="currentColor"></path></svg></a></li><li class="sc-1uz32rr-1 sc-1uz32rr-2 kQunip isxohE"><a class="sc-1uz32rr-4 kMumlj" href="https://account.elsevier.com/auth"><svg aria-label="View Account" height="1em" viewbox="0 0 106 128" width="1em"><path d="M11.07 120l.84-9.29C13.88 91.92 35.25 87.78 53 87.78c17.74 0 39.11 4.13 41.08 22.84l.84 9.38h10.04l-.93-10.34C101.88 89.23 83.89 78 53 78S4.11 89.22 1.95 109.73L1.04 120h10.03M53 17.71c-9.72 0-18.24 8.69-18.24 18.59 0 13.67 7.84 23.98 18.24 23.98S71.24 49.97 71.24 36.3c0-9.9-8.52-18.59-18.24-18.59zM53 70c-15.96 0-28-14.48-28-33.67C25 20.97 37.82 8 53 8s28 12.97 28 28.33C81 55.52 68.96 70 53 70" fill="currentColor"></path></svg></a></li><li class="sc-1uz32rr-1 sc-1uz32rr-3 kQunip fjIepc"><button class="sc-1qzfzkl-0 sc-1uz32rr-5 hQPrvi kEzLkc"><svg aria-label="Open Navigation" class="icon-menu_svg__utility-icon" height="1em" width="1em" xmlns="http://www.w3.org/2000/svg"><path d="M0 14h40v2H0zm0-7h40v2H0zm0-7h40v2H0z" fill="currentColor"></path></svg></button></li></ul></div></nav><div aria-hidden="true" class="sc-nbr0sq-0 iCwJnF" id="react-collapsed-panel-undefined" style="box-sizing: border-box; display: none; height: 0px; overflow: hidden;"><div class="sc-1dxr8k6-0 lhCPPw"><form autocomplete="off" class="sc-nbr0sq-1 iPBpEs" role="search"><label class="sc-nbr0sq-3 lefOXt" for="search-input">Search by keyword, title, subject area</label><div class="sc-nbr0sq-2 jRjTLz"><input class="sc-nbr0sq-4 CJUyz" id="search-input" type="search" value=""/><button class="sc-nbr0sq-6 iMbvxE" id="clear-search-input" title="Clear search" type="button"><svg height="1em" viewbox="0 0 357 357" width="1em"><path d="M357 35.7L321.3 0 178.5 142.8 35.7 0 0 35.7l142.8 142.8L0 321.3 35.7 357l142.8-142.8L321.3 357l35.7-35.7-142.8-142.8z" fill="currentColor"></path></svg></button><button class="sc-nbr0sq-5 bwhAfp" title="Search" type="submit"><svg height="1em" preserveaspectratio="xMinYMax meet" viewbox="12 8 55 60" width="1em"><path d="M65.6 62L52 48.4c2.9-3.7 4.5-8.2 4.5-13 0-5.6-2.2-10.9-6.2-14.9s-9.3-6.2-14.9-6.2-10.9 2.2-14.9 6.2-6.2 9.3-6.2 14.9 2.2 10.9 6.2 14.9 9.3 6.2 14.9 6.2c4.8 0 9.3-1.6 13-4.5L62 65.6l3.6-3.6zM24.1 46.7c-3-3-4.7-7-4.7-11.3 0-4.3 1.7-8.3 4.7-11.3s7-4.7 11.3-4.7c4.3 0 8.3 1.7 11.3 4.7s4.7 7 4.7 11.3c0 4.3-1.7 8.3-4.7 11.3s-7 4.7-11.3 4.7c-4.3 0-8.3-1.7-11.3-4.7z" fill="currentColor"></path></svg></button></div></form></div></div><div class="sc-e948u6-1 iEiQWV"><div class="sc-dc2toh-0 fWlycu sc-29krko-8 iQzzfb" display="none" opacity="0"><div class="sc-29krko-0 jdxuot"><div class="sc-1dxr8k6-0 sc-29krko-3 lhCPPw PQfhP"><div class="sc-uosj0-0 AcWHr sc-29krko-9 RNqsW"><div class="sc-uosj0-1 fAiWUX"><img alt="Journal cover for Artificial Intelligence" src="https://www.elsevier.com/__data/cover_img/505601.gif" width="32"/></div></div><h3 class="sc-29krko-1 edcyFL">Artificial Intelligence</h3><dl class="sc-29krko-4 jETNdX sc-29krko-7 dnrrWg"><div class="sc-29krko-5 gOAMsJ"><dt>Impact Factor</dt><dd class="sc-29krko-6 bBznbl">14.050</dd></div><div class="sc-29krko-5 gOAMsJ"><dt>CiteScore</dt><dd class="sc-29krko-6 bBznbl">8.7</dd></div></dl><div class="sc-29krko-2 lcqMeI"><a class="sc-4ky1f6-0 sc-4ky1f6-3 hnoKGz hcBixJ sc-29krko-10 eqibmi" data-aa-name="View articles" data-aa-region="sticky-bar" data-button-size="small" href="https://www.sciencedirect.com/science/journal/00043702" size="small"><span>View articles</span></a><a class="sc-4ky1f6-0 sc-4ky1f6-1 hnoKGz hLnlQv sc-29krko-11 civIvf" data-aa-name="Submit your paper" data-aa-region="sticky-bar" data-button-size="small" href="https://www.editorialmanager.com/artint/default.aspx" size="small"><span>Submit your paper</span></a></div></div></div></div></div></header><div class="sc-e948u6-2 eBRfdU"></div><div class="sc-1g5fvti-0 jOcueP" data-subpage="" id="skip-to-content-anchor"><nav aria-label="Breadcrumbs" class="sc-yuedcl-0 cFSZAH sc-15ho9eu-0 eOytAu"><ol itemscope="" itemtype="https://schema.org/BreadcrumbList"><li itemprop="itemListElement" itemscope="" itemtype="https://schema.org/ListItem"><a href="https://www.elsevier.com/" itemid="https://www.elsevier.com/" itemprop="item" itemscope="" itemtype="https://schema.org/WebPage"><span itemprop="name">Home</span></a><meta content="1" itemprop="position"/></li><li itemprop="itemListElement" itemscope="" itemtype="https://schema.org/ListItem"><a href="https://www.elsevier.com/search-results?labels=journals" itemid="https://www.elsevier.com/search-results?labels=journals" itemprop="item" itemscope="" itemtype="https://schema.org/WebPage"><span itemprop="name">Journals</span></a><meta content="2" itemprop="position"/></li><li itemprop="itemListElement" itemscope="" itemtype="https://schema.org/ListItem"><a href="/artificial-intelligence" itemid="/artificial-intelligence" itemprop="item" itemscope="" itemtype="https://schema.org/WebPage"><span itemprop="name">Artificial Intelligence</span></a><meta content="3" itemprop="position"/></li><li itemprop="itemListElement" itemscope="" itemtype="https://schema.org/ListItem"><a href="/artificial-intelligence/most-downloaded-articles" itemid="/artificial-intelligence/most-downloaded-articles" itemprop="item" itemscope="" itemtype="https://schema.org/WebPage"><span itemprop="name">Most Downloaded Articles</span></a><meta content="4" itemprop="position"/></li></ol></nav><main class="sc-1dxr8k6-0 sc-orwwe2-0 lhCPPw eTISqs"><div class="sc-orwwe2-1 dZFiMY"><div class="sc-uosj0-0 AcWHr"><a class="sc-uosj0-1 fAiWUX header-journal-cover" data-aa-name="Journal Cover" data-aa-region="header" href="https://www.sciencedirect.com/science/journal/00043702"><img alt="Journal cover for Artificial Intelligence" src="https://www.elsevier.com/__data/cover_img/505601.gif" width="75"/></a><p class="sc-1q3g1nv-0 sc-jsgros-0 eTETae ddyzPP">ISSN: 0004-3702</p></div></div><header class="sc-orwwe2-2 fCHAcd"><p class="sc-orwwe2-5 jUaFts">Artificial Intelligence</p><div class="sc-orwwe2-6 dtzDFi"><a class="sc-4ky1f6-0 sc-4ky1f6-1 hnoKGz hLnlQv sub-page-header-submit-your-paper" data-aa-name="Submit your paper" data-aa-region="sub-page-header" data-button-size="small" href="https://www.editorialmanager.com/artint/default.aspx" size="small"><span>Submit your Paper</span></a><a class="sc-4ky1f6-0 sc-4ky1f6-3 hnoKGz hcBixJ sub-page-header-view-articles" data-aa-name="View articles" data-aa-region="sub-page-header" data-button-size="small" href="https://www.sciencedirect.com/science/journal/00043702" size="small"><span>View Articles</span></a></div><div class="sc-1f27thb-0 cRFLRd"><a class="sc-kvjqii-0 fYuYRT header-guide-for-authors" data-aa-name="Guide for authors" data-aa-region="header" href="https://www.elsevier.com/journals/artificial-intelligence/0004-3702/guide-for-authors" rel="noopener noreferrer" target="_self"><span class="sc-kvjqii-1 sc-kvjqii-2 hjlxNa bDcWjJ"><svg aria-hidden="true" focusable="false" height="1em" viewbox="0 0 14 14" width="1em" xmlns="http://www.w3.org/2000/svg"><path d="M.445 1.829H10.9L0 12.705 1.294 14 12.167 3.149v10.38H14V0H.445z" fill="currentColor" fill-rule="nonzero"></path></svg></span><span>Guide for authors</span></a><div class="sc-1fdbg4d-0 grcxMK"><button aria-expanded="false" class="sc-1qzfzkl-0 sc-1fdbg4d-8 hQPrvi" data-aa-name="Track your paper" data-aa-region="header">Track your paper<svg aria-hidden="true" class="sc-1fdbg4d-1 qRtBA" focusable="false" height="1em" viewbox="0 0 9 15" width="1em"><path d="M.156 13.469L6.094 7.53.156 1.594 1.25.5l7.031 7.031-7.031 7.032z" fill="currentColor" fill-rule="nonzero"></path></svg></button><div class="sc-1fdbg4d-2 sc-1fdbg4d-3 dZzYzL egOxdO" data-align="left" hidden=""><ul class="sc-1fdbg4d-4 sc-1fdbg4d-5 gVBpEc"><li class="sc-1fdbg4d-6 sc-1fdbg4d-7 dTlWdR"><a class="sc-kvjqii-0 fYuYRT header-check-submitted-paper" data-aa-name="Check submitted paper" data-aa-region="header" href="https://www.editorialmanager.com/artint/default.aspx" rel="noopener noreferrer" target="_blank"><span class="sc-kvjqii-1 sc-kvjqii-2 hjlxNa bDcWjJ"><svg aria-hidden="true" focusable="false" height="1em" viewbox="0 0 14 14" width="1em" xmlns="http://www.w3.org/2000/svg"><path d="M.445 1.829H10.9L0 12.705 1.294 14 12.167 3.149v10.38H14V0H.445z" fill="currentColor" fill-rule="nonzero"></path></svg></span><span>Check submitted paper</span></a></li><li class="sc-1fdbg4d-6 sc-1fdbg4d-7 dTlWdR"><a class="sc-kvjqii-0 fYuYRT header-track-accepted-paper" data-aa-name="Track accepted paper" data-aa-region="header" href="https://authors.elsevier.com/tracking/landingpage/selection.do" rel="noopener noreferrer" target="_self"><span class="sc-kvjqii-1 sc-kvjqii-2 hjlxNa bDcWjJ"><svg aria-hidden="true" focusable="false" height="1em" viewbox="0 0 14 14" width="1em" xmlns="http://www.w3.org/2000/svg"><path d="M.445 1.829H10.9L0 12.705 1.294 14 12.167 3.149v10.38H14V0H.445z" fill="currentColor" fill-rule="nonzero"></path></svg></span><span>Track accepted paper</span></a></li></ul></div></div><a class="sc-kvjqii-0 fYuYRT header-order-journal-institutional" data-aa-name="Order journal (institutional)" data-aa-region="header" href="https://www.elsevier.com/journals/artificial-intelligence/0004-3702/subscribe?subscriptiontype=institutional" rel="noopener noreferrer" target="_self"><span class="sc-kvjqii-1 sc-kvjqii-2 hjlxNa bDcWjJ"><svg aria-hidden="true" focusable="false" height="1em" viewbox="0 0 14 14" width="1em" xmlns="http://www.w3.org/2000/svg"><path d="M.445 1.829H10.9L0 12.705 1.294 14 12.167 3.149v10.38H14V0H.445z" fill="currentColor" fill-rule="nonzero"></path></svg></span><span>Order journal</span></a></div></header><div class="sc-orwwe2-3 gPmFkB"><h1 class="sc-1qrq3sd-0 sc-orwwe2-4 hCLUbN ysXeK">Most Downloaded Articles</h1><p class="sc-1q3g1nv-0 sc-15ho9eu-1 eTETae bqTbOd">The most downloaded articles from Artificial Intelligence in the last 90 days.</p><ul class="sc-9zxyh7-0 ffmPq"><li class="sc-9zxyh7-1 sc-9zxyh7-2 exAXfr jQmQZp"><article><a class="sc-5smygv-0 nrDZj" href="https://www.sciencedirect.com/science/article/pii/S0004370221000862"><h2 class="sc-1qrq3sd-1 MKjKb sc-1nmom32-0 sc-1nmom32-1 hqhUYH ebTA-dR">Reward is enough</h2></a><p class="sc-1thf9ly-0 sc-1thf9ly-1 ljBYfY bIzabL"><span class="sc-1w3fpd7-0 pgLAT">Silver, David, Singh, Satinder, Precup, Doina, Sutton, Richard S. </span><em>Open Access</em><span class="sc-1thf9ly-2 bKddwo"><span>October 2021</span></span></p></article></li><li class="sc-9zxyh7-1 sc-9zxyh7-2 exAXfr jQmQZp"><article><a class="sc-5smygv-0 nrDZj" href="https://www.sciencedirect.com/science/article/pii/S0004370221000722"><h2 class="sc-1qrq3sd-1 MKjKb sc-1nmom32-0 sc-1nmom32-1 hqhUYH ebTA-dR">Making sense of raw input</h2></a><p class="sc-1thf9ly-0 sc-1thf9ly-1 ljBYfY bIzabL"><span class="sc-1w3fpd7-0 pgLAT">Evans, Richard, Bošnjak, Matko and 5 more</span><em>Open Access</em><span class="sc-1thf9ly-2 bKddwo"><span>October 2021</span></span></p></article></li><li class="sc-9zxyh7-1 sc-9zxyh7-2 exAXfr jQmQZp"><article><a class="sc-5smygv-0 nrDZj" href="https://www.sciencedirect.com/science/article/pii/S0004370215000910"><h2 class="sc-1qrq3sd-1 MKjKb sc-1nmom32-0 sc-1nmom32-1 hqhUYH ebTA-dR">Law and logic: A review from an argumentation perspective</h2></a><p class="sc-1thf9ly-0 sc-1thf9ly-1 ljBYfY bIzabL"><span class="sc-1w3fpd7-0 pgLAT">Prakken, Henry, Sartor, Giovanni </span><em>Open Access</em><span class="sc-1thf9ly-2 bKddwo"><span>October 2015</span></span></p></article></li><li class="sc-9zxyh7-1 sc-9zxyh7-2 exAXfr jQmQZp"><article><a class="sc-5smygv-0 nrDZj" href="https://www.sciencedirect.com/science/article/pii/S0004370298000551"><h2 class="sc-1qrq3sd-1 MKjKb sc-1nmom32-0 sc-1nmom32-1 hqhUYH ebTA-dR">Creativity and artificial intelligence</h2></a><p class="sc-1thf9ly-0 sc-1thf9ly-1 ljBYfY bIzabL"><span class="sc-1w3fpd7-0 pgLAT">Boden, Margaret A. </span><em>Open Access</em><span class="sc-1thf9ly-2 bKddwo"><span>August 1998</span></span></p></article></li><li class="sc-9zxyh7-1 sc-9zxyh7-2 exAXfr jQmQZp"><article><a class="sc-5smygv-0 nrDZj" href="https://www.sciencedirect.com/science/article/pii/S0004370216300790"><h2 class="sc-1qrq3sd-1 MKjKb sc-1nmom32-0 sc-1nmom32-1 hqhUYH ebTA-dR">Artificial cognition for social human–robot interaction: An implementation</h2></a><p class="sc-1thf9ly-0 sc-1thf9ly-1 ljBYfY bIzabL"><span class="sc-1w3fpd7-0 pgLAT">Lemaignan, Séverin, Warnier, Mathieu and 3 more</span><em>Open Access</em><span class="sc-1thf9ly-2 bKddwo"><span>June 2017</span></span></p></article></li><li class="sc-9zxyh7-1 sc-9zxyh7-2 exAXfr jQmQZp"><article><a class="sc-5smygv-0 nrDZj" href="https://www.sciencedirect.com/science/article/pii/S0004370218305988"><h2 class="sc-1qrq3sd-1 MKjKb sc-1nmom32-0 sc-1nmom32-1 hqhUYH ebTA-dR">Explanation in artificial intelligence: Insights from the social sciences</h2></a><p class="sc-1thf9ly-0 sc-1thf9ly-1 ljBYfY bIzabL"><span class="sc-1w3fpd7-0 pgLAT">Miller, Tim </span><span class="sc-1thf9ly-2 bKddwo"><span>February 2019</span></span></p></article></li><li class="sc-9zxyh7-1 sc-9zxyh7-2 exAXfr jQmQZp"><article><a class="sc-5smygv-0 nrDZj" href="https://www.sciencedirect.com/science/article/pii/S0004370220301855"><h2 class="sc-1qrq3sd-1 MKjKb sc-1nmom32-0 sc-1nmom32-1 hqhUYH ebTA-dR">Making sense of sensory input</h2></a><p class="sc-1thf9ly-0 sc-1thf9ly-1 ljBYfY bIzabL"><span class="sc-1w3fpd7-0 pgLAT">Evans, Richard, Hernández-Orallo, José and 3 more</span><em>Open Access</em><span class="sc-1thf9ly-2 bKddwo"><span>April 2021</span></span></p></article></li><li class="sc-9zxyh7-1 sc-9zxyh7-2 exAXfr jQmQZp"><article><a class="sc-5smygv-0 nrDZj" href="https://www.sciencedirect.com/science/article/pii/S0004370214001386"><h2 class="sc-1qrq3sd-1 MKjKb sc-1nmom32-0 sc-1nmom32-1 hqhUYH ebTA-dR">Conflict-based search for optimal multi-agent pathfinding</h2></a><p class="sc-1thf9ly-0 sc-1thf9ly-1 ljBYfY bIzabL"><span class="sc-1w3fpd7-0 pgLAT">Sharon, Guni, Stern, Roni, Felner, Ariel, Sturtevant, Nathan R. </span><em>Open Access</em><span class="sc-1thf9ly-2 bKddwo"><span>February 2015</span></span></p></article></li><li class="sc-9zxyh7-1 sc-9zxyh7-2 exAXfr jQmQZp"><article><a class="sc-5smygv-0 nrDZj" href="https://www.sciencedirect.com/science/article/pii/S0004370299000521"><h2 class="sc-1qrq3sd-1 MKjKb sc-1nmom32-0 sc-1nmom32-1 hqhUYH ebTA-dR">Between MDPs and semi-MDPs: A framework for temporal abstraction in reinforcement learning</h2></a><p class="sc-1thf9ly-0 sc-1thf9ly-1 ljBYfY bIzabL"><span class="sc-1w3fpd7-0 pgLAT">Sutton, Richard S., Precup, Doina, Singh, Satinder </span><em>Open Access</em><span class="sc-1thf9ly-2 bKddwo"><span>August 1999</span></span></p></article></li><li class="sc-9zxyh7-1 sc-9zxyh7-2 exAXfr jQmQZp"><article><a class="sc-5smygv-0 nrDZj" href="https://www.sciencedirect.com/science/article/pii/S0004370219300116"><h2 class="sc-1qrq3sd-1 MKjKb sc-1nmom32-0 sc-1nmom32-1 hqhUYH ebTA-dR">The Hanabi challenge: A new frontier for AI research</h2></a><p class="sc-1thf9ly-0 sc-1thf9ly-1 ljBYfY bIzabL"><span class="sc-1w3fpd7-0 pgLAT">Bard, Nolan, Foerster, Jakob N. and 13 more</span><em>Open Access</em><span class="sc-1thf9ly-2 bKddwo"><span>March 2020</span></span></p></article></li><li class="sc-9zxyh7-1 sc-9zxyh7-2 exAXfr jQmQZp"><article><a class="sc-5smygv-0 nrDZj" href="https://www.sciencedirect.com/science/article/pii/S0004370220301533"><h2 class="sc-1qrq3sd-1 MKjKb sc-1nmom32-0 sc-1nmom32-1 hqhUYH ebTA-dR">Evaluating XAI: A comparison of rule-based and example-based explanations</h2></a><p class="sc-1thf9ly-0 sc-1thf9ly-1 ljBYfY bIzabL"><span class="sc-1w3fpd7-0 pgLAT">van der Waa, Jasper, Nieuwburg, Elisabeth, Cremers, Anita, Neerincx, Mark </span><em>Open Access</em><span class="sc-1thf9ly-2 bKddwo"><span>February 2021</span></span></p></article></li><li class="sc-9zxyh7-1 sc-9zxyh7-2 exAXfr jQmQZp"><article><a class="sc-5smygv-0 nrDZj" href="https://www.sciencedirect.com/science/article/pii/S0004370207000793"><h2 class="sc-1qrq3sd-1 MKjKb sc-1nmom32-0 sc-1nmom32-1 hqhUYH ebTA-dR">Argumentation in artificial intelligence</h2></a><p class="sc-1thf9ly-0 sc-1thf9ly-1 ljBYfY bIzabL"><span class="sc-1w3fpd7-0 pgLAT">Bench-Capon, T.J.M., Dunne, Paul E. </span><em>Open Access</em><span class="sc-1thf9ly-2 bKddwo"><span>October 2007</span></span></p></article></li><li class="sc-9zxyh7-1 sc-9zxyh7-2 exAXfr jQmQZp"><article><a class="sc-5smygv-0 nrDZj" href="https://www.sciencedirect.com/science/article/pii/S0004370216300285"><h2 class="sc-1qrq3sd-1 MKjKb sc-1nmom32-0 sc-1nmom32-1 hqhUYH ebTA-dR">Algorithms for computing strategies in two-player simultaneous move games</h2></a><p class="sc-1thf9ly-0 sc-1thf9ly-1 ljBYfY bIzabL"><span class="sc-1w3fpd7-0 pgLAT">Bošanský, Branislav, Lisý, Viliam and 3 more</span><em>Open Access</em><span class="sc-1thf9ly-2 bKddwo"><span>August 2016</span></span></p></article></li><li class="sc-9zxyh7-1 sc-9zxyh7-2 exAXfr jQmQZp"><article><a class="sc-5smygv-0 nrDZj" href="https://www.sciencedirect.com/science/article/pii/S0004370220301958"><h2 class="sc-1qrq3sd-1 MKjKb sc-1nmom32-0 sc-1nmom32-1 hqhUYH ebTA-dR">Multiple object tracking: A literature review</h2></a><p class="sc-1thf9ly-0 sc-1thf9ly-1 ljBYfY bIzabL"><span class="sc-1w3fpd7-0 pgLAT">Luo, Wenhan, Xing, Junliang and 4 more</span><span class="sc-1thf9ly-2 bKddwo"><span>April 2021</span></span></p></article></li><li class="sc-9zxyh7-1 sc-9zxyh7-2 exAXfr jQmQZp"><article><a class="sc-5smygv-0 nrDZj" href="https://www.sciencedirect.com/science/article/pii/S0004370297000635"><h2 class="sc-1qrq3sd-1 MKjKb sc-1nmom32-0 sc-1nmom32-1 hqhUYH ebTA-dR">Selection of relevant features and examples in machine learning</h2></a><p class="sc-1thf9ly-0 sc-1thf9ly-1 ljBYfY bIzabL"><span class="sc-1w3fpd7-0 pgLAT">Blum, Avrim L., Langley, Pat </span><em>Open Access</em><span class="sc-1thf9ly-2 bKddwo"><span>December 1997</span></span></p></article></li><li class="sc-9zxyh7-1 sc-9zxyh7-2 exAXfr jQmQZp"><article><a class="sc-5smygv-0 nrDZj" href="https://www.sciencedirect.com/science/article/pii/S0004370221000515"><h2 class="sc-1qrq3sd-1 MKjKb sc-1nmom32-0 sc-1nmom32-1 hqhUYH ebTA-dR">A survey of inverse reinforcement learning: Challenges, methods and progress</h2></a><p class="sc-1thf9ly-0 sc-1thf9ly-1 ljBYfY bIzabL"><span class="sc-1w3fpd7-0 pgLAT">Arora, Saurabh, Doshi, Prashant </span><span class="sc-1thf9ly-2 bKddwo"><span>August 2021</span></span></p></article></li><li class="sc-9zxyh7-1 sc-9zxyh7-2 exAXfr jQmQZp"><article><a class="sc-5smygv-0 nrDZj" href="https://www.sciencedirect.com/science/article/pii/S0004370221000539"><h2 class="sc-1qrq3sd-1 MKjKb sc-1nmom32-0 sc-1nmom32-1 hqhUYH ebTA-dR">Explaining individual predictions when features are dependent: More accurate approximations to Shapley values</h2></a><p class="sc-1thf9ly-0 sc-1thf9ly-1 ljBYfY bIzabL"><span class="sc-1w3fpd7-0 pgLAT">Aas, Kjersti, Jullum, Martin, Løland, Anders </span><em>Open Access</em><span class="sc-1thf9ly-2 bKddwo"><span>September 2021</span></span></p></article></li><li class="sc-9zxyh7-1 sc-9zxyh7-2 exAXfr jQmQZp"><article><a class="sc-5smygv-0 nrDZj" href="https://www.sciencedirect.com/science/article/pii/S0004370221000096"><h2 class="sc-1qrq3sd-1 MKjKb sc-1nmom32-0 sc-1nmom32-1 hqhUYH ebTA-dR">A review of possible effects of cognitive biases on interpretation of rule-based machine learning models</h2></a><p class="sc-1thf9ly-0 sc-1thf9ly-1 ljBYfY bIzabL"><span class="sc-1w3fpd7-0 pgLAT">Kliegr, Tomáš, Bahník, Štěpán, Fürnkranz, Johannes </span><em>Open Access</em><span class="sc-1thf9ly-2 bKddwo"><span>June 2021</span></span></p></article></li><li class="sc-9zxyh7-1 sc-9zxyh7-2 exAXfr jQmQZp"><article><a class="sc-5smygv-0 nrDZj" href="https://www.sciencedirect.com/science/article/pii/S0004370216300868"><h2 class="sc-1qrq3sd-1 MKjKb sc-1nmom32-0 sc-1nmom32-1 hqhUYH ebTA-dR">Integrating social power into the decision-making of cognitive agents</h2></a><p class="sc-1thf9ly-0 sc-1thf9ly-1 ljBYfY bIzabL"><span class="sc-1w3fpd7-0 pgLAT">Pereira, Gonçalo, Prada, Rui, Santos, Pedro A. </span><em>Open Access</em><span class="sc-1thf9ly-2 bKddwo"><span>December 2016</span></span></p></article></li><li class="sc-9zxyh7-1 sc-9zxyh7-2 exAXfr jQmQZp"><article><a class="sc-5smygv-0 nrDZj" href="https://www.sciencedirect.com/science/article/pii/S0004370221000588"><h2 class="sc-1qrq3sd-1 MKjKb sc-1nmom32-0 sc-1nmom32-1 hqhUYH ebTA-dR">“That's (not) the output I expected!” On the role of end user expectations in creating explanations of AI systems</h2></a><p class="sc-1thf9ly-0 sc-1thf9ly-1 ljBYfY bIzabL"><span class="sc-1w3fpd7-0 pgLAT">Riveiro, Maria, Thill, Serge </span><em>Open Access</em><span class="sc-1thf9ly-2 bKddwo"><span>September 2021</span></span></p></article></li><li class="sc-9zxyh7-1 sc-9zxyh7-2 exAXfr jQmQZp"><article><a class="sc-5smygv-0 nrDZj" href="https://www.sciencedirect.com/science/article/pii/S0004370221000102"><h2 class="sc-1qrq3sd-1 MKjKb sc-1nmom32-0 sc-1nmom32-1 hqhUYH ebTA-dR">Explaining black-box classifiers using post-hoc explanations-by-example: The effect of explanations and error-rates in XAI user studies</h2></a><p class="sc-1thf9ly-0 sc-1thf9ly-1 ljBYfY bIzabL"><span class="sc-1w3fpd7-0 pgLAT">Kenny, Eoin M., Ford, Courtney, Quinn, Molly, Keane, Mark T. </span><em>Open Access</em><span class="sc-1thf9ly-2 bKddwo"><span>May 2021</span></span></p></article></li><li class="sc-9zxyh7-1 sc-9zxyh7-2 exAXfr jQmQZp"><article><a class="sc-5smygv-0 nrDZj" href="https://www.sciencedirect.com/science/article/pii/S0004370213001082"><h2 class="sc-1qrq3sd-1 MKjKb sc-1nmom32-0 sc-1nmom32-1 hqhUYH ebTA-dR">Algorithm runtime prediction: Methods & evaluation</h2></a><p class="sc-1thf9ly-0 sc-1thf9ly-1 ljBYfY bIzabL"><span class="sc-1w3fpd7-0 pgLAT">Hutter, Frank, Xu, Lin, Hoos, Holger H., Leyton-Brown, Kevin </span><em>Open Access</em><span class="sc-1thf9ly-2 bKddwo"><span>January 2014</span></span></p></article></li><li class="sc-9zxyh7-1 sc-9zxyh7-2 exAXfr jQmQZp"><article><a class="sc-5smygv-0 nrDZj" href="https://www.sciencedirect.com/science/article/pii/S000437029700043X"><h2 class="sc-1qrq3sd-1 MKjKb sc-1nmom32-0 sc-1nmom32-1 hqhUYH ebTA-dR">Wrappers for feature subset selection</h2></a><p class="sc-1thf9ly-0 sc-1thf9ly-1 ljBYfY bIzabL"><span class="sc-1w3fpd7-0 pgLAT">Kohavi, Ron, John, George H. </span><em>Open Access</em><span class="sc-1thf9ly-2 bKddwo"><span>December 1997</span></span></p></article></li><li class="sc-9zxyh7-1 sc-9zxyh7-2 exAXfr jQmQZp"><article><a class="sc-5smygv-0 nrDZj" href="https://www.sciencedirect.com/science/article/pii/S0004370221000734"><h2 class="sc-1qrq3sd-1 MKjKb sc-1nmom32-0 sc-1nmom32-1 hqhUYH ebTA-dR">Commonsense visual sensemaking for autonomous driving – On generalised neurosymbolic online abduction integrating vision and semantics</h2></a><p class="sc-1thf9ly-0 sc-1thf9ly-1 ljBYfY bIzabL"><span class="sc-1w3fpd7-0 pgLAT">Suchan, Jakob, Bhatt, Mehul, Varadarajan, Srikrishna </span><em>Open Access</em><span class="sc-1thf9ly-2 bKddwo"><span>October 2021</span></span></p></article></li><li class="sc-9zxyh7-1 sc-9zxyh7-2 exAXfr jQmQZp"><article><a class="sc-5smygv-0 nrDZj" href="https://www.sciencedirect.com/science/article/pii/S0004370209001398"><h2 class="sc-1qrq3sd-1 MKjKb sc-1nmom32-0 sc-1nmom32-1 hqhUYH ebTA-dR">Quantum computation, quantum theory and AI</h2></a><p class="sc-1thf9ly-0 sc-1thf9ly-1 ljBYfY bIzabL"><span class="sc-1w3fpd7-0 pgLAT">Ying, Mingsheng </span><em>Open Access</em><span class="sc-1thf9ly-2 bKddwo"><span>February 2010</span></span></p></article></li></ul></div></main><aside class="sc-1nwsl0e-1 bQNQKU sc-orwwe2-7 jbCSRa"><div class="sc-1dxr8k6-0 sc-1nwsl0e-2 lhCPPw gazhpM"><p class="sc-1nwsl0e-0 lgbLoo">Artificial Intelligence</p><div class="sc-1nwsl0e-3 VQbJA"><div class="sc-1nwsl0e-4 cviXWN"><p class="sc-1nwsl0e-5 hugDdc">Readers</p><ul class="sc-1nwsl0e-6 fhoAiN"><li><a class="sc-kvjqii-0 fYuYRT" href="https://www.sciencedirect.com/science/journal/00043702" rel="noopener noreferrer" target="_blank"><span>View Articles</span></a></li><li><a class="sc-kvjqii-0 fYuYRT" href="https://www.sciencedirect.com/user/alerts" rel="noopener noreferrer" target="_blank"><span>Volume/Issue Alert</span></a></li><li><a class="sc-kvjqii-0 fYuYRT" href="https://www.sciencedirect.com/user/register?utm_campaign=sd_recommender_ELSJLS&utm_channel=elseco&dgcid=sd_recommender_ELSJLS" rel="noopener noreferrer" target="_blank"><span>Personalized Recommendations</span></a></li></ul></div><div class="sc-1nwsl0e-4 cviXWN"><a class="sc-kvjqii-0 fYuYRT sc-1nwsl0e-7 esiGMQ" href="http://www.elsevier.com/authors/home" rel="noopener noreferrer" target="_self"><span><p class="sc-1nwsl0e-5 hugDdc">Authors</p></span><span class="sc-kvjqii-1 hjlxNa"><svg aria-hidden="true" focusable="false" height="1em" viewbox="0 0 9 15" width="1em"><path d="M.156 13.469L6.094 7.53.156 1.594 1.25.5l7.031 7.031-7.031 7.032z" fill="currentColor" fill-rule="nonzero"></path></svg></span></a><ul class="sc-1nwsl0e-6 fhoAiN"><li><a class="sc-kvjqii-0 fYuYRT" href="https://www.editorialmanager.com/artint/default.aspx" rel="noopener noreferrer" target="_blank"><span>Submit your Paper</span></a></li><li><a class="sc-kvjqii-0 fYuYRT" href="https://www.editorialmanager.com/artint/default.aspx" rel="noopener noreferrer" target="_blank"><span>Check Submitted Paper</span></a></li><li><a class="sc-kvjqii-0 fYuYRT" href="https://researcheracademy.elsevier.com" rel="noopener noreferrer" target="_self"><span>Researcher Academy</span></a></li><li><a class="sc-kvjqii-0 fYuYRT" href="https://www.elsevier.com/about/policies/copyright/permissions" rel="noopener noreferrer" target="_self"><span>Rights and Permissions</span></a></li><li><a class="sc-kvjqii-0 fYuYRT" href="https://webshop.elsevier.com" rel="noopener noreferrer" target="_self"><span>Elsevier Author Services</span></a></li><li><a class="sc-kvjqii-0 fYuYRT" href="https://service.elsevier.com/app/home/supporthub/publishing/#authors" rel="noopener noreferrer" target="_self"><span>Support Center</span></a></li><li><a class="sc-kvjqii-0 fYuYRT" href="https://authors.elsevier.com/tracking/landingpage/selection.do" rel="noopener noreferrer" target="_self"><span>Track Accepted Paper</span></a></li></ul></div><div class="sc-1nwsl0e-4 cviXWN"><a class="sc-kvjqii-0 fYuYRT sc-1nwsl0e-7 esiGMQ" href="https://www.elsevier.com/librarians" rel="noopener noreferrer" target="_self"><span><p class="sc-1nwsl0e-5 hugDdc">Librarians</p></span><span class="sc-kvjqii-1 hjlxNa"><svg aria-hidden="true" focusable="false" height="1em" viewbox="0 0 9 15" width="1em"><path d="M.156 13.469L6.094 7.53.156 1.594 1.25.5l7.031 7.031-7.031 7.032z" fill="currentColor" fill-rule="nonzero"></path></svg></span></a><ul class="sc-1nwsl0e-6 fhoAiN"><li><a class="sc-kvjqii-0 fYuYRT" href="https://www.elsevier.com/journals/artificial-intelligence/0004-3702/subscribe?subscriptiontype=institutional" rel="noopener noreferrer" target="_self"><span>Order Journal Institutional</span></a></li></ul></div><div class="sc-1nwsl0e-4 cviXWN"><a class="sc-kvjqii-0 fYuYRT sc-1nwsl0e-7 esiGMQ" href="http://www.elsevier.com/editors" rel="noopener noreferrer" target="_self"><span><p class="sc-1nwsl0e-5 hugDdc">Editors</p></span><span class="sc-kvjqii-1 hjlxNa"><svg aria-hidden="true" focusable="false" height="1em" viewbox="0 0 9 15" width="1em"><path d="M.156 13.469L6.094 7.53.156 1.594 1.25.5l7.031 7.031-7.031 7.032z" fill="currentColor" fill-rule="nonzero"></path></svg></span></a><ul class="sc-1nwsl0e-6 fhoAiN"><li><a class="sc-kvjqii-0 fYuYRT" href="http://www.elsevier.com/editors/perk" rel="noopener noreferrer" target="_self"><span>Publishing Ethics Resource Kit</span></a></li><li><a class="sc-kvjqii-0 fYuYRT" href="https://www.elsevier.com/editors/guest-editors" rel="noopener noreferrer" target="_self"><span>Guest Editors</span></a></li><li><a class="sc-kvjqii-0 fYuYRT" href="https://service.elsevier.com/app/home/supporthub/publishing/#editors" rel="noopener noreferrer" target="_self"><span>Support Center</span></a></li></ul></div><div class="sc-1nwsl0e-4 cviXWN"><a class="sc-kvjqii-0 fYuYRT sc-1nwsl0e-7 esiGMQ" href="http://www.elsevier.com/reviewers" rel="noopener noreferrer" target="_self"><span><p class="sc-1nwsl0e-5 hugDdc">Reviewers</p></span><span class="sc-kvjqii-1 hjlxNa"><svg aria-hidden="true" focusable="false" height="1em" viewbox="0 0 9 15" width="1em"><path d="M.156 13.469L6.094 7.53.156 1.594 1.25.5l7.031 7.031-7.031 7.032z" fill="currentColor" fill-rule="nonzero"></path></svg></span></a><ul class="sc-1nwsl0e-6 fhoAiN"><li><a class="sc-kvjqii-0 fYuYRT" href="https://www.elsevier.com/reviewers/how-to-review" rel="noopener noreferrer" target="_self"><span>Reviewer Guidelines</span></a></li><li><a class="sc-kvjqii-0 fYuYRT" href="https://www.editorialmanager.com/artint/default.aspx" rel="noopener noreferrer" target="_blank"><span>Log in as Reviewer</span></a></li><li><a class="sc-kvjqii-0 fYuYRT" href="https://www.elsevier.com/reviewers/becoming-a-reviewer-how-and-why#recognizing" rel="noopener noreferrer" target="_self"><span>Reviewer Recognition</span></a></li><li><a class="sc-kvjqii-0 fYuYRT" href="https://service.elsevier.com/app/home/supporthub/publishing/#reviewers" rel="noopener noreferrer" target="_self"><span>Support Center</span></a></li></ul></div></div></div></aside></div><footer class="sc-1g5fvti-1 fukXbF" role="contentinfo"><div class="sc-1c6xsv-0 emEISL"><div class="sc-1dxr8k6-0 sc-1c6xsv-1 lhCPPw kEACDc"><a class="sc-1c6xsv-2 gwkjaf" href="https://www.elsevier.com" title="Elsevier Homepage"><span style="box-sizing: border-box; display: inline-block; overflow: hidden; width: initial; height: initial; background: none; opacity: 1; border: 0px; margin: 0px; padding: 0px; position: relative; max-width: 100%;"><span style="box-sizing: border-box; display: block; width: initial; height: initial; background: none; opacity: 1; border: 0px; margin: 0px; padding: 0px; max-width: 100%;"><img alt="" aria-hidden="true" src="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODUiIGhlaWdodD0iOTQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4xIi8+" style="display: block; max-width: 100%; width: initial; height: initial; background: none; opacity: 1; border: 0px; margin: 0px; padding: 0px;"/></span><img alt="Elsevier Logo" data-nimg="intrinsic" decoding="async" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" style="position: absolute; top: 0px; left: 0px; bottom: 0px; right: 0px; box-sizing: border-box; padding: 0px; border: none; margin: auto; display: block; width: 0px; height: 0px; min-width: 100%; max-width: 100%; min-height: 100%; max-height: 100%;"/><noscript><img alt="Elsevier Logo" data-nimg="intrinsic" decoding="async" loading="lazy" src="/images/logos/nonsolus-elsevier.svg" style="position: absolute; top: 0px; left: 0px; bottom: 0px; right: 0px; box-sizing: border-box; padding: 0px; border: none; margin: auto; display: block; width: 0px; height: 0px; min-width: 100%; max-width: 100%; min-height: 100%; max-height: 100%;"/></noscript></span></a><div class="sc-1c6xsv-4 hHsELc"><p class="sc-1q3g1nv-0 sc-1c6xsv-5 eTETae cfTwSE">Copyright © 2022 Elsevier, except certain content provided by third parties</p><p class="sc-1q3g1nv-0 sc-1c6xsv-5 eTETae cfTwSE">Cookies are used by this site. <button class="sc-1qzfzkl-0 hQPrvi ot-sdk-show-settings">Cookie Settings</button></p><p class="sc-1q3g1nv-0 sc-1c6xsv-5 eTETae cfTwSE"><a class="sc-kvjqii-0 fYuYRT footer-terms-and-conditions" data-aa-name="Terms and Conditions" data-aa-region="footer" href="//www.elsevier.com/legal/elsevier-website-terms-and-conditions" rel="noopener noreferrer" target="_self"><span>Terms and Conditions</span></a><a class="sc-kvjqii-0 fYuYRT footer-privacy-policy" data-aa-name="Privacy Policy" data-aa-region="footer" href="//www.elsevier.com/legal/privacy-policy" rel="noopener noreferrer" target="_self"><span>Privacy Policy</span></a><a class="sc-kvjqii-0 fYuYRT footer-cookie-notice" data-aa-name="Cookie Notice" data-aa-region="footer" href="//www.elsevier.com/legal/cookienotice" rel="noopener noreferrer" target="_self"><span>Cookie Notice</span></a><a class="sc-kvjqii-0 fYuYRT footer-sitemap" data-aa-name="Sitemap" data-aa-region="footer" href="//www.elsevier.com/sitemap" rel="noopener noreferrer" target="_self"><span>Sitemap</span></a></p></div><a class="sc-1c6xsv-3 dzhXup" href="https://www.relx.com/" rel="noopener" title="Relx Group Homepage"><span style="box-sizing: border-box; display: inline-block; overflow: hidden; width: initial; height: initial; background: none; opacity: 1; border: 0px; margin: 0px; padding: 0px; position: relative; max-width: 100%;"><span style="box-sizing: border-box; display: block; width: initial; height: initial; background: none; opacity: 1; border: 0px; margin: 0px; padding: 0px; max-width: 100%;"><img alt="" aria-hidden="true" src="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTUwIiBoZWlnaHQ9IjUxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIvPg==" style="display: block; max-width: 100%; width: initial; height: initial; background: none; opacity: 1; border: 0px; margin: 0px; padding: 0px;"/></span><img alt="Relx Group Logo" data-nimg="intrinsic" decoding="async" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" style="position: absolute; top: 0px; left: 0px; bottom: 0px; right: 0px; box-sizing: border-box; padding: 0px; border: none; margin: auto; display: block; width: 0px; height: 0px; min-width: 100%; max-width: 100%; min-height: 100%; max-height: 100%;"/><noscript><img alt="Relx Group Logo" data-nimg="intrinsic" decoding="async" loading="lazy" src="/images/logos/logo-relxgroup.svg" style="position: absolute; top: 0px; left: 0px; bottom: 0px; right: 0px; box-sizing: border-box; padding: 0px; border: none; margin: auto; display: block; width: 0px; height: 0px; min-width: 100%; max-width: 100%; min-height: 100%; max-height: 100%;"/></noscript></span></a></div></div></footer></div></div><script id="__NEXT_DATA__" type="application/json">{"props":{"pageProps":{"basicInfo":{"aimsAndScope":"\u003cp\u003eThe journal of \u003ci\u003eArtificial Intelligence (AIJ) \u003c/i\u003e welcomes papers on broad aspects of AI that constitute advances in the overall field including, but not limited to, cognition and AI, automated reasoning and inference, case-based reasoning, commonsense reasoning, computer vision, constraint processing, ethical AI, heuristic search, human interfaces, intelligent robotics, knowledge representation, machine learning, multi-agent systems, natural language processing, planning and action, and reasoning under uncertainty. The journal reports results achieved in addition to proposals for new ways of looking at AI problems, both of which must include demonstrations of value and effectiveness. \u003c/p\u003e\u003cp\u003e Papers describing applications of AI are also welcome, but the focus should be on how new and novel AI methods advance performance in application areas, rather than a presentation of yet another application of conventional AI methods. Papers on applications should describe a principled solution, emphasize its novelty, and present an indepth evaluation of the AI techniques being exploited.\u003c/p\u003e\u003cp\u003e Apart from regular papers, the journal also accepts Research Notes, Research Field Reviews, Position Papers, and Book Reviews (see details below). The journal will also consider summary papers that describe challenges and competitions from various areas of AI. Such papers should motivate and describe the competition design as well as report and interpret competition results, with an emphasis on insights that are of value beyond the competition (series) itself. \u003c/p\u003e\u003cp\u003e From time to time, there are special issues devoted to a particular topic. Such special issues must always have open calls-for-papers. Guidance on the submission of proposals for special issues, as well as other material for authors and reviewers can be found at \u003ca href=http://aij.ijcai.org/special-issues rel=external target=_blank\u003ehttp://aij.ijcai.org/special-issues\u003c/a\u003e. \u003c/p\u003e\u003cp\u003e \u003cb\u003eTypes of Papers \u003c/b\u003e\u003c/p\u003e\u003cp\u003e\u003cb\u003e Regular Papers \u003c/b\u003e\u003c/p\u003e\u003cp\u003e AIJ welcomes basic and applied papers describing mature, complete, and novel research that articulate methods for, and provide insight into artificial intelligence and the production of artificial intelligent systems. The question of whether a paper is mature, complete and novel is ultimately determined by reviewers and editors on a case-bycase basis. Generally, a paper should include a convincing motivational discussion, articulate the relevance of the research to Artificial Intelligence, clarify what is new and different, anticipate the scientific impact of the work, include all relevant proofs and/or experimental data, and provide a thorough discussion of connections with the existing literature. A prerequisite for the novelty of a paper is that the results it describes have not been previously published by other authors and have not been previously published by the same authors in any archival journal. In particular, a previous conference publication by the same authors does not disqualify a submission on the grounds of novelty. However, it is rarely the case that conference papers satisfy the completeness criterion without further elaboration. Indeed, even prize-winning papers from major conferences often undergo major revision following referee comments, before being accepted to AIJ. \u003c/p\u003e\u003cp\u003e \u003ci\u003eAIJ\u003c/i\u003e caters to a broad readership. Papers that are heavily mathematical in content are welcome but should include a less technical high-level motivation and introduction that is accessible to a wide audience and explanatory commentary throughout the paper. Papers that are only purely mathematical in nature, without demonstrated applicability to artificial intelligence problems may be returned. A discussion of the work's implications on the production of artificial intelligent systems is normally expected. \u003c/p\u003e\u003cp\u003e There is no restriction on the length of submitted manuscripts. However, authors should note that publication of lengthy papers, typically greater than forty pages, is often significantly delayed, as the length of the paper acts as a disincentive to the reviewer to undertake the review process. Unedited theses are acceptable only in exceptional circumstances. Editing a thesis into a journal article is the author's responsibility, not the reviewers'. \u003c/p\u003e\u003cp\u003e \u003cb\u003eResearch Notes \u003c/b\u003e\u003c/p\u003e\u003cp\u003e The Research Notes section of the Journal of Artificial Intelligence will provide a forum for short communications that cannot fit within the other paper categories. The maximum length should not exceed 4500 words (typically a paper with 5 to 14 pages). Some examples of suitable Research Notes include, but are not limited to the following: crisp and highly focused technical research aimed at other specialists; a detailed exposition of a relevant theorem or an experimental result; an erratum note that addresses and revises earlier results appearing in the journal; an extension or addendum to an earlier published paper that presents additional experimental or theoretical results. \u003c/p\u003e\u003cp\u003e \u003cb\u003eReviews\u003c/b\u003e \u003c/p\u003e\u003cp\u003e The AIJ invests significant effort in assessing and publishing scholarly papers that provide broad and principled reviews of important existing and emerging research areas, reviews of topical and timely books related to AI, and substantial, but perhaps controversial position papers (so-called \"Turing Tape\" papers) that articulate scientific or social issues of interest in the AI research community. \u003c/p\u003e\u003cp\u003e \u003cb\u003eResearch Field Reviews:\u003c/b\u003e AIJ expects broad coverage of an established or emerging research area, and the articulation of a comprehensive framework that demonstrates the role of existing results, and synthesizes a position on the potential value and possible new research directions. A list of papers in an area, coupled with a summary of their contributions is not sufficient. Overall, a field review article must provide a scholarly overview that facilitates deeper understanding of a research area. The selection of work covered in a field article should be based on clearly stated, rational criteria that are acceptable to the respective research community within AI; it must be free from personal or idiosyncratic bias. \u003c/p\u003e\u003cp\u003e Research Field Reviews are by invitation only, where authors can then submit a 2-page proposal of a Research Field Review for confirmation by the special editors. The 2-page proposal should include a convincing motivational discussion, articulate the relevance of the research to artificial intelligence, clarify what is new and different from other surveys available in the literature, anticipate the scientific impact of the proposed work, and provide evidence that authors are authoritative researchers in the area of the proposed Research Field Review. Upon confirmation of the 2-page proposal, the full Invited Research Field Reviews can then be submitted and then undergoes the same review process as regular papers. \u003c/p\u003e\u003cp\u003e \u003cb\u003eBook Reviews: \u003c/b\u003eWe seek reviewers for books received, and suggestions for books to be reviewed. In the case of the former, the review editors solicit reviews from researchers assessed to be expert in the field of the book. In the case of the latter, the review editors can either assess the relevance of a particular suggestion, or even arrange for the refereeing of a submitted draft review. \u003c/p\u003e\u003cp\u003e \u003cb\u003ePosition Papers\u003c/b\u003e: The last review category, named in honour of Alan Turing as a \"Turing Tapes\" section of AIJ, seeks clearly written and scholarly papers on potentially controversial topics, whose authors present professional and mature positions on all variety of methodological, scientific, and social aspects of AI. Turing Tape papers typically provide more personal perspectives on important issues, with the intent to catalyze scholarly discussion. \u003c/p\u003e\u003cp\u003e Turing Tape papers are by invitation only, where authors can then submit a 2-page proposal of a Turing Tape paper for confirmation by the special editors. The 2-page proposal should include a convincing motivational discussion, articulate the relevance to artificial intelligence, clarify the originality of the position, and provide evidence that authors are authoritative researchers in the area on which they are expressing the position. Upon confirmation of the 2-page proposal, the full Turing Tape paper can then be submitted and then undergoes the same review process as regular papers. \u003c/p\u003e\u003cp\u003e \u003cb\u003eCompetition Papers \u003c/b\u003e\u003c/p\u003e\u003cp\u003eCompetitions between AI systems are now well established (e.g. in speech and language, planning, auctions, games, to name a few). The scientific contributions associated with the systems entered in these competitions are routinely submitted as research papers to conferences and journals. However, it has been more difficult to find suitable venues for papers summarizing the objectives, results, and major innovations of a competition. For this purpose, AIJ has established the category of competition summary papers. \u003c/p\u003e\u003cp\u003e Competition Paper submissions should describe the competition, its criteria, why it is interesting to the AI research community, the results (including how they compare to previous rounds, if appropriate), in addition to giving a summary of the main technical contributions to the field manifested in systems participating in the competition. Papers may be supplemented by online appendices giving details of participants, problem statements, test scores, and even competition-related software. \u003c/p\u003e\u003cp\u003e Although Competition Papers serve as an archival record of a competition, it is critical that they make clear why the competition's problems are relevant to continued progress in the area, what progress has been made since the previous competition, if applicable, and what were the most significant technical advances reflected in the competition results. The exposition should be accessible to a broad AI audience.\u003c/p\u003e","description":"The journal of Artificial Intelligence (AIJ) welcomes papers on broad aspects of AI that constitute advances in the overall field including, but not limited …","coverUrl":"https://www.elsevier.com/__data/cover_img/505601.gif","subtitle1":"An International Journal","title":"Artificial Intelligence"},"callToActions":{"submit_your_paper_url":"https://www.editorialmanager.com/artint/default.aspx","view_articles_url":"https://www.sciencedirect.com/science/journal/00043702"},"footerLinks":{"sections":[{"title":"Readers","url":null,"urls":[{"url":"https://www.sciencedirect.com/science/journal/00043702","title":"View Articles"},{"url":"https://www.sciencedirect.com/user/alerts","title":"Volume/Issue Alert"},{"url":"https://www.sciencedirect.com/user/register?utm_campaign=sd_recommender_ELSJLS\u0026utm_channel=elseco\u0026dgcid=sd_recommender_ELSJLS","title":"Personalized Recommendations"}]},{"title":"Authors","url":"http://www.elsevier.com/authors/home","urls":[{"url":"https://www.editorialmanager.com/artint/default.aspx","title":"Submit your Paper"},{"url":"https://www.editorialmanager.com/artint/default.aspx","title":"Check Submitted Paper"},{"url":"https://researcheracademy.elsevier.com","title":"Researcher Academy"},{"url":"https://www.elsevier.com/about/policies/copyright/permissions","title":"Rights and Permissions"},{"url":"https://webshop.elsevier.com","title":"Elsevier Author Services"},{"url":"https://service.elsevier.com/app/home/supporthub/publishing/#authors","title":"Support Center"},{"url":"https://authors.elsevier.com/tracking/landingpage/selection.do","title":"Track Accepted Paper"}]},{"title":"Librarians","url":"https://www.elsevier.com/librarians","urls":[{"url":"https://www.elsevier.com/journals/artificial-intelligence/0004-3702/subscribe?subscriptiontype=institutional","title":"Order Journal Institutional"}]},{"title":"Editors","url":"http://www.elsevier.com/editors","urls":[{"url":"http://www.elsevier.com/editors/perk","title":"Publishing Ethics Resource Kit"},{"url":"https://www.elsevier.com/editors/guest-editors","title":"Guest Editors"},{"url":"https://service.elsevier.com/app/home/supporthub/publishing/#editors","title":"Support Center"}]},{"title":"Reviewers","url":"http://www.elsevier.com/reviewers","urls":[{"url":"https://www.elsevier.com/reviewers/how-to-review","title":"Reviewer Guidelines"},{"url":"https://www.editorialmanager.com/artint/default.aspx","title":"Log in as Reviewer"},{"url":"https://www.elsevier.com/reviewers/becoming-a-reviewer-how-and-why#recognizing","title":"Reviewer Recognition"},{"url":"https://service.elsevier.com/app/home/supporthub/publishing/#reviewers","title":"Support Center"}]},{"title":"Advertisers Media Information","url":"https://www.elsevier.com/advertisers","urls":[]},{"title":"Societies","url":"http://www.elsevier.com/societies","urls":[]}]},"issn":"0004-3702","metrics":[{"name":"CiteScore","type":"trend","is_yearly":true,"url":"https://www.scopus.com/source/sourceInfo.url?sourceId=23675","show_value_for_year":"2021-01-01T00:00:00.000Z","data":[{"value":7.7,"date":"2018-01-01T00:00:00.000Z"},{"value":7.7,"date":"2019-01-01T00:00:00.000Z"},{"value":8.3,"date":"2020-01-01T00:00:00.000Z"},{"value":8.7,"date":"2021-01-01T00:00:00.000Z"},{"value":8.3,"date":"2022-01-01T00:00:00.000Z"}]},{"name":"Impact Factor","url":"https://journalinsights.elsevier.com/journals/0004-3702/impact_factor","type":"trend","is_yearly":true,"data":[{"date":"2017-01-01T00:00:00.000Z","value":3.034},{"date":"2018-01-01T00:00:00.000Z","value":4.483},{"date":"2019-01-01T00:00:00.000Z","value":6.628},{"date":"2020-01-01T00:00:00.000Z","value":9.088},{"date":"2021-01-01T00:00:00.000Z","value":14.05}]},{"name":"Top Readership","url":"https://journalinsights.elsevier.com/journals/0004-3702/downloads","type":"countries","is_yearly":true,"data":[{"value":322572,"country":"China","iso":"CN"},{"value":240733,"country":"United States","iso":"US"},{"value":112798,"country":"United Kingdom","iso":"GB"},{"value":65020,"country":"Germany","iso":"DE"},{"value":55257,"country":"India","iso":"IN"}]},{"name":"Publication Time","url":"https://journalinsights.elsevier.com/journals/0004-3702/oapt","type":"value","is_yearly":true,"data":1.03}],"publishingOptions":{"subscription_type":"HYBRID_OPEN_ACCESS","open_access_url":"https://www.elsevier.com/journals/artificial-intelligence/0004-3702/open-access-options","guide_for_authors_url":"https://www.elsevier.com/journals/artificial-intelligence/0004-3702/guide-for-authors","check_submitted_paper":"https://www.editorialmanager.com/artint/default.aspx","order_journal_institutional_url":"https://www.elsevier.com/journals/artificial-intelligence/0004-3702/subscribe?subscriptiontype=institutional","show_guide_for_authors":true,"show_check_submitted_paper":true,"show_order_journal":true},"socialMedia":{"facebook_url":"https://www.facebook.com/ElsevierComputerScience","twitter_url":"https://twitter.com/comp_science","linked_in_url":"https://www.linkedin.com/groups/3384863/"},"mostDownloadedArticles":[{"title":"Reward is enough","article_url":"https://www.sciencedirect.com/science/article/pii/S0004370221000862","open_access":true,"authors":["Silver, David","Singh, Satinder","Precup, Doina","Sutton, Richard S."],"publication_date":"2021-10-31"},{"title":"Making sense of raw input","article_url":"https://www.sciencedirect.com/science/article/pii/S0004370221000722","open_access":true,"authors":["Evans, Richard","Bošnjak, Matko","Buesing, Lars","Ellis, Kevin","Pfau, David","Kohli, Pushmeet","Sergot, Marek"],"publication_date":"2021-10-31"},{"title":"Law and logic: A review from an argumentation perspective","article_url":"https://www.sciencedirect.com/science/article/pii/S0004370215000910","open_access":true,"authors":["Prakken, Henry","Sartor, Giovanni"],"publication_date":"2015-10-31"},{"title":"Creativity and artificial intelligence","article_url":"https://www.sciencedirect.com/science/article/pii/S0004370298000551","open_access":true,"authors":["Boden, Margaret A."],"publication_date":"1998-08-31"},{"title":"Artificial cognition for social human–robot interaction: An implementation","article_url":"https://www.sciencedirect.com/science/article/pii/S0004370216300790","open_access":true,"authors":["Lemaignan, Séverin","Warnier, Mathieu","Sisbot, E. Akin","Clodic, Aurélie","Alami, Rachid"],"publication_date":"2017-06-30"},{"title":"Explanation in artificial intelligence: Insights from the social sciences","article_url":"https://www.sciencedirect.com/science/article/pii/S0004370218305988","open_access":false,"authors":["Miller, Tim"],"publication_date":"2019-02-28"},{"title":"Making sense of sensory input","article_url":"https://www.sciencedirect.com/science/article/pii/S0004370220301855","open_access":true,"authors":["Evans, Richard","Hernández-Orallo, José","Welbl, Johannes","Kohli, Pushmeet","Sergot, Marek"],"publication_date":"2021-04-30"},{"title":"Conflict-based search for optimal multi-agent pathfinding","article_url":"https://www.sciencedirect.com/science/article/pii/S0004370214001386","open_access":true,"authors":["Sharon, Guni","Stern, Roni","Felner, Ariel","Sturtevant, Nathan R."],"publication_date":"2015-02-28"},{"title":"Between MDPs and semi-MDPs: A framework for temporal abstraction in reinforcement learning","article_url":"https://www.sciencedirect.com/science/article/pii/S0004370299000521","open_access":true,"authors":["Sutton, Richard S.","Precup, Doina","Singh, Satinder"],"publication_date":"1999-08-31"},{"title":"The Hanabi challenge: A new frontier for AI research","article_url":"https://www.sciencedirect.com/science/article/pii/S0004370219300116","open_access":true,"authors":["Bard, Nolan","Foerster, Jakob N.","Chandar, Sarath","Burch, Neil","Lanctot, Marc","Song, H. Francis","Parisotto, Emilio","Dumoulin, Vincent","Moitra, Subhodeep","Hughes, Edward","Dunning, Iain","Mourad, Shibl","Larochelle, Hugo","Bellemare, Marc G.","Bowling, Michael"],"publication_date":"2020-03-31"},{"title":"Evaluating XAI: A comparison of rule-based and example-based explanations","article_url":"https://www.sciencedirect.com/science/article/pii/S0004370220301533","open_access":true,"authors":["van der Waa, Jasper","Nieuwburg, Elisabeth","Cremers, Anita","Neerincx, Mark"],"publication_date":"2021-02-28"},{"title":"Argumentation in artificial intelligence","article_url":"https://www.sciencedirect.com/science/article/pii/S0004370207000793","open_access":true,"authors":["Bench-Capon, T.J.M.","Dunne, Paul E."],"publication_date":"2007-10-31"},{"title":"Algorithms for computing strategies in two-player simultaneous move games","article_url":"https://www.sciencedirect.com/science/article/pii/S0004370216300285","open_access":true,"authors":["Bošanský, Branislav","Lisý, Viliam","Lanctot, Marc","Čermák, Jiří","Winands, Mark H.M."],"publication_date":"2016-08-31"},{"title":"Multiple object tracking: A literature review","article_url":"https://www.sciencedirect.com/science/article/pii/S0004370220301958","open_access":false,"authors":["Luo, Wenhan","Xing, Junliang","Milan, Anton","Zhang, Xiaoqin","Liu, Wei","Kim, Tae-Kyun"],"publication_date":"2021-04-30"},{"title":"Selection of relevant features and examples in machine learning","article_url":"https://www.sciencedirect.com/science/article/pii/S0004370297000635","open_access":true,"authors":["Blum, Avrim L.","Langley, Pat"],"publication_date":"1997-12-31"},{"title":"A survey of inverse reinforcement learning: Challenges, methods and progress","article_url":"https://www.sciencedirect.com/science/article/pii/S0004370221000515","open_access":false,"authors":["Arora, Saurabh","Doshi, Prashant"],"publication_date":"2021-08-31"},{"title":"Explaining individual predictions when features are dependent: More accurate approximations to Shapley values","article_url":"https://www.sciencedirect.com/science/article/pii/S0004370221000539","open_access":true,"authors":["Aas, Kjersti","Jullum, Martin","Løland, Anders"],"publication_date":"2021-09-30"},{"title":"A review of possible effects of cognitive biases on interpretation of rule-based machine learning models","article_url":"https://www.sciencedirect.com/science/article/pii/S0004370221000096","open_access":true,"authors":["Kliegr, Tomáš","Bahník, Štěpán","Fürnkranz, Johannes"],"publication_date":"2021-06-30"},{"title":"Integrating social power into the decision-making of cognitive agents","article_url":"https://www.sciencedirect.com/science/article/pii/S0004370216300868","open_access":true,"authors":["Pereira, Gonçalo","Prada, Rui","Santos, Pedro A."],"publication_date":"2016-12-31"},{"title":"“That's (not) the output I expected!” On the role of end user expectations in creating explanations of AI systems","article_url":"https://www.sciencedirect.com/science/article/pii/S0004370221000588","open_access":true,"authors":["Riveiro, Maria","Thill, Serge"],"publication_date":"2021-09-30"},{"title":"Explaining black-box classifiers using post-hoc explanations-by-example: The effect of explanations and error-rates in XAI user studies","article_url":"https://www.sciencedirect.com/science/article/pii/S0004370221000102","open_access":true,"authors":["Kenny, Eoin M.","Ford, Courtney","Quinn, Molly","Keane, Mark T."],"publication_date":"2021-05-31"},{"title":"Algorithm runtime prediction: Methods \u0026#x26; evaluation","article_url":"https://www.sciencedirect.com/science/article/pii/S0004370213001082","open_access":true,"authors":["Hutter, Frank","Xu, Lin","Hoos, Holger H.","Leyton-Brown, Kevin"],"publication_date":"2014-01-31"},{"title":"Wrappers for feature subset selection","article_url":"https://www.sciencedirect.com/science/article/pii/S000437029700043X","open_access":true,"authors":["Kohavi, Ron","John, George H."],"publication_date":"1997-12-31"},{"title":"Commonsense visual sensemaking for autonomous driving – On generalised neurosymbolic online abduction integrating vision and semantics","article_url":"https://www.sciencedirect.com/science/article/pii/S0004370221000734","open_access":true,"authors":["Suchan, Jakob","Bhatt, Mehul","Varadarajan, Srikrishna"],"publication_date":"2021-10-31"},{"title":"Quantum computation, quantum theory and AI","article_url":"https://www.sciencedirect.com/science/article/pii/S0004370209001398","open_access":true,"authors":["Ying, Mingsheng"],"publication_date":"2010-02-28"}]},"__N_SSG":true},"page":"/[slug]/most-downloaded-articles","query":{"slug":"artificial-intelligence"},"buildId":"mbXMhIviQKGV9qg2GtRCw","isFallback":false,"gsp":true,"scriptLoader":[]}</script><script crossorigin="anonymous" data-cf-beacon='{"rayId":"750137974d449362","token":"1f19f5bb68b64c76855d2d1457370d53","version":"2022.8.1","si":100}' defer="" integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw==" src="https://static.cloudflareinsights.com/beacon.min.js/v652eace1692a40cfa3763df669d7439c1639079717194"></script>
</body></html>
Paper_title=soup.find_all('h2')
len(Paper_title)
for i in range(len(Paper_title)):
print(Paper_title[i].text)
Reward is enough Making sense of raw input Law and logic: A review from an argumentation perspective Creativity and artificial intelligence Artificial cognition for social human–robot interaction: An implementation Explanation in artificial intelligence: Insights from the social sciences Making sense of sensory input Conflict-based search for optimal multi-agent pathfinding Between MDPs and semi-MDPs: A framework for temporal abstraction in reinforcement learning The Hanabi challenge: A new frontier for AI research Evaluating XAI: A comparison of rule-based and example-based explanations Argumentation in artificial intelligence Algorithms for computing strategies in two-player simultaneous move games Multiple object tracking: A literature review Selection of relevant features and examples in machine learning A survey of inverse reinforcement learning: Challenges, methods and progress Explaining individual predictions when features are dependent: More accurate approximations to Shapley values A review of possible effects of cognitive biases on interpretation of rule-based machine learning models Integrating social power into the decision-making of cognitive agents “That's (not) the output I expected!” On the role of end user expectations in creating explanations of AI systems Explaining black-box classifiers using post-hoc explanations-by-example: The effect of explanations and error-rates in XAI user studies Algorithm runtime prediction: Methods & evaluation Wrappers for feature subset selection Commonsense visual sensemaking for autonomous driving – On generalised neurosymbolic online abduction integrating vision and semantics Quantum computation, quantum theory and AI
Authors=soup.find_all('span',class_="sc-1w3fpd7-0 pgLAT")
len(Authors)
for i in range(len(Authors)):
print(Authors[i].text)
Silver, David, Singh, Satinder, Precup, Doina, Sutton, Richard S. Evans, Richard, Bošnjak, Matko and 5 more Prakken, Henry, Sartor, Giovanni Boden, Margaret A. Lemaignan, Séverin, Warnier, Mathieu and 3 more Miller, Tim Evans, Richard, Hernández-Orallo, José and 3 more Sharon, Guni, Stern, Roni, Felner, Ariel, Sturtevant, Nathan R. Sutton, Richard S., Precup, Doina, Singh, Satinder Bard, Nolan, Foerster, Jakob N. and 13 more van der Waa, Jasper, Nieuwburg, Elisabeth, Cremers, Anita, Neerincx, Mark Bench-Capon, T.J.M., Dunne, Paul E. Bošanský, Branislav, Lisý, Viliam and 3 more Luo, Wenhan, Xing, Junliang and 4 more Blum, Avrim L., Langley, Pat Arora, Saurabh, Doshi, Prashant Aas, Kjersti, Jullum, Martin, Løland, Anders Kliegr, Tomáš, Bahník, Štěpán, Fürnkranz, Johannes Pereira, Gonçalo, Prada, Rui, Santos, Pedro A. Riveiro, Maria, Thill, Serge Kenny, Eoin M., Ford, Courtney, Quinn, Molly, Keane, Mark T. Hutter, Frank, Xu, Lin, Hoos, Holger H., Leyton-Brown, Kevin Kohavi, Ron, John, George H. Suchan, Jakob, Bhatt, Mehul, Varadarajan, Srikrishna Ying, Mingsheng
Published_date=soup.find_all('span',class_="sc-1thf9ly-2 bKddwo")
len(Published_date)
for i in range(len(Published_date)):
print(Published_date[i].text)
October 2021 October 2021 October 2015 August 1998 June 2017 February 2019 April 2021 February 2015 August 1999 March 2020 February 2021 October 2007 August 2016 April 2021 December 1997 August 2021 September 2021 June 2021 December 2016 September 2021 May 2021 January 2014 December 1997 October 2021 February 2010
Paper_url=[]
for i in soup.find_all('a'):
Paper_url.append(i.get('href'))
Paper_url
['#skip-to-content-anchor', 'http://www.elsevier.com', 'https://account.elsevier.com/auth', 'https://elsevier.com/about', 'https://www.elsevier.com/connect', 'https://www.elsevier.com/about/careers', 'https://elsevier.com/about', 'https://www.elsevier.com/connect', 'https://www.elsevier.com/about/careers', 'https://www.elsevier.com/rd-solutions', 'https://www.elsevier.com/clinical-solutions', 'https://www.elsevier.com/research-platforms', 'https://www.elsevier.com/research-intelligence', 'https://www.elsevier.com/education', 'https://www.elsevier.com/solutions', 'https://www.elsevier.com/rd-solutions', 'https://www.elsevier.com/clinical-solutions', 'https://www.elsevier.com/research-platforms', 'https://www.elsevier.com/research-intelligence', 'https://www.elsevier.com/education', 'https://www.elsevier.com/solutions', 'https://www.elsevier.com/authors', 'https://www.elsevier.com/editors', 'https://www.elsevier.com/reviewers', 'https://www.elsevier.com/librarians', 'https://www.elsevier.com/strategic-partners', 'https://www.elsevier.com/open-access', 'https://www.elsevier.com/societies', 'https://www.elsevier.com/authors', 'https://www.elsevier.com/editors', 'https://www.elsevier.com/reviewers', 'https://www.elsevier.com/librarians', 'https://www.elsevier.com/strategic-partners', 'https://www.elsevier.com/open-access', 'https://www.elsevier.com/societies', 'https://www.elsevier.com/books-and-journals', 'https://webshop.elsevier.com/?utm_source=ecom&utm_medium=top&utm_campaign=webshop', 'https://www.elsevier.com/books-and-journals', 'https://webshop.elsevier.com/?utm_source=ecom&utm_medium=top&utm_campaign=webshop', 'https://global-checkout.elsevier.com', 'https://account.elsevier.com/auth', 'https://www.sciencedirect.com/science/journal/00043702', 'https://www.editorialmanager.com/artint/default.aspx', 'https://www.elsevier.com/', 'https://www.elsevier.com/search-results?labels=journals', '/artificial-intelligence', '/artificial-intelligence/most-downloaded-articles', 'https://www.sciencedirect.com/science/journal/00043702', 'https://www.editorialmanager.com/artint/default.aspx', 'https://www.sciencedirect.com/science/journal/00043702', 'https://www.elsevier.com/journals/artificial-intelligence/0004-3702/guide-for-authors', 'https://www.editorialmanager.com/artint/default.aspx', 'https://authors.elsevier.com/tracking/landingpage/selection.do', 'https://www.elsevier.com/journals/artificial-intelligence/0004-3702/subscribe?subscriptiontype=institutional', 'https://www.sciencedirect.com/science/article/pii/S0004370221000862', 'https://www.sciencedirect.com/science/article/pii/S0004370221000722', 'https://www.sciencedirect.com/science/article/pii/S0004370215000910', 'https://www.sciencedirect.com/science/article/pii/S0004370298000551', 'https://www.sciencedirect.com/science/article/pii/S0004370216300790', 'https://www.sciencedirect.com/science/article/pii/S0004370218305988', 'https://www.sciencedirect.com/science/article/pii/S0004370220301855', 'https://www.sciencedirect.com/science/article/pii/S0004370214001386', 'https://www.sciencedirect.com/science/article/pii/S0004370299000521', 'https://www.sciencedirect.com/science/article/pii/S0004370219300116', 'https://www.sciencedirect.com/science/article/pii/S0004370220301533', 'https://www.sciencedirect.com/science/article/pii/S0004370207000793', 'https://www.sciencedirect.com/science/article/pii/S0004370216300285', 'https://www.sciencedirect.com/science/article/pii/S0004370220301958', 'https://www.sciencedirect.com/science/article/pii/S0004370297000635', 'https://www.sciencedirect.com/science/article/pii/S0004370221000515', 'https://www.sciencedirect.com/science/article/pii/S0004370221000539', 'https://www.sciencedirect.com/science/article/pii/S0004370221000096', 'https://www.sciencedirect.com/science/article/pii/S0004370216300868', 'https://www.sciencedirect.com/science/article/pii/S0004370221000588', 'https://www.sciencedirect.com/science/article/pii/S0004370221000102', 'https://www.sciencedirect.com/science/article/pii/S0004370213001082', 'https://www.sciencedirect.com/science/article/pii/S000437029700043X', 'https://www.sciencedirect.com/science/article/pii/S0004370221000734', 'https://www.sciencedirect.com/science/article/pii/S0004370209001398', 'https://www.sciencedirect.com/science/journal/00043702', 'https://www.sciencedirect.com/user/alerts', 'https://www.sciencedirect.com/user/register?utm_campaign=sd_recommender_ELSJLS&utm_channel=elseco&dgcid=sd_recommender_ELSJLS', 'http://www.elsevier.com/authors/home', 'https://www.editorialmanager.com/artint/default.aspx', 'https://www.editorialmanager.com/artint/default.aspx', 'https://researcheracademy.elsevier.com', 'https://www.elsevier.com/about/policies/copyright/permissions', 'https://webshop.elsevier.com', 'https://service.elsevier.com/app/home/supporthub/publishing/#authors', 'https://authors.elsevier.com/tracking/landingpage/selection.do', 'https://www.elsevier.com/librarians', 'https://www.elsevier.com/journals/artificial-intelligence/0004-3702/subscribe?subscriptiontype=institutional', 'http://www.elsevier.com/editors', 'http://www.elsevier.com/editors/perk', 'https://www.elsevier.com/editors/guest-editors', 'https://service.elsevier.com/app/home/supporthub/publishing/#editors', 'http://www.elsevier.com/reviewers', 'https://www.elsevier.com/reviewers/how-to-review', 'https://www.editorialmanager.com/artint/default.aspx', 'https://www.elsevier.com/reviewers/becoming-a-reviewer-how-and-why#recognizing', 'https://service.elsevier.com/app/home/supporthub/publishing/#reviewers', 'https://www.elsevier.com', '//www.elsevier.com/legal/elsevier-website-terms-and-conditions', '//www.elsevier.com/legal/privacy-policy', '//www.elsevier.com/legal/cookienotice', '//www.elsevier.com/sitemap', 'https://www.relx.com/']
9) Write a python program to scrape mentioned details from dineout.co.in : i) Restaurant name ii) Cuisine iii) Location iv) Ratings v) Image URL
url=requests.get("https://www.dineout.co.in/bangalore-restaurants/welcome-back")
url
<Response [200]>
soup=BeautifulSoup(url.text,'html.parser')
soup
<!DOCTYPE html>
<html lang="en"><head><meta charset="utf-8"/><meta content="IE=edge" http-equiv="X-UA-Compatible"/><meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" name="viewport"/><link href="/manifest.json" rel="manifest"/><style type="text/css">
@font-face {
font-family: 'dineicon';
src: url('/fonts/dineicon.eot');
src: url('/fonts/dineicon.eot#iefix') format('embedded-opentype'),
url('/fonts/dineicon.ttf') format('truetype'),
url('/fonts/dineicon.woff') format('woff'),
url('/fonts/dineicon.svg#dineicon') format('svg');
font-weight: normal;
font-style: normal;
font-display: swap;
}
.hide {
display: none !important;
}
.async-hide{
opacity: inherit !important;
}
iframe[name="google_conversion_frame"]{
display:none !important;
}
</style><link href="https://dn1.dineout-cdn.co.in" rel="preconnect"/><link href="https://im1.dineout.co.in" rel="preconnect"/><link href="https://wp.dineout.co.in" rel="preconnect"/><link href="https://wzrkt.com" rel="preconnect"/><link href="https://d2r1yp2w7bby2u.cloudfront.net" rel="preconnect"/><link href="https://s3-eu-west-1.amazonaws.com" rel="preconnect"/><link href="https://connect.facebook.net" rel="preconnect"/><link href="https://www.google-analytics.com" rel="preconnect"/><link href="https://st1.dineout-cdn.co.in" rel="dns-prefetch"/><link href="https://dn1.dineout-cdn.co.in" rel="dns-prefetch"/><link href="https://im1.dineout.co.in" rel="dns-prefetch"/><link href="https://wp.dineout.co.in" rel="dns-prefetch"/><link href="https://wzrkt.com" rel="dns-prefetch"/><link href="https://d2r1yp2w7bby2u.cloudfront.net" rel="dns-prefetch"/><link href="https://s3-eu-west-1.amazonaws.com" rel="dns-prefetch"/><link href="https://connect.facebook.net" rel="dns-prefetch"/><link href="https://www.google-analytics.com" rel="dns-prefetch"/><link href="https://st2.dineout-cdn.co.in" rel="dns-prefetch"/><link href="https://st3.dineout-cdn.co.in" rel="dns-prefetch"/><link href="https://st4.dineout-cdn.co.in" rel="dns-prefetch"/><link href="https://www.google.com" rel="dns-prefetch"/><link href="https://www.googletagmanager.com" rel="dns-prefetch"/><link href="https://www.googleadservices.com" rel="dns-prefetch"/><link href="https://googleads.g.doubleclick.net" rel="dns-prefetch"/><link href="https://www.google.co.in" rel="dns-prefetch"/><link href="https://stats.g.doubleclick.net" rel="dns-prefetch"/><link href="https://apis.google.com" rel="dns-prefetch"/><link href="https://maps.googleapis.com" rel="dns-prefetch"/><link href="https://accounts.google.com" rel="dns-prefetch"/><link href="https://oauth.googleusercontent.com" rel="dns-prefetch"/><link href="https://ssl.gstatic.com" rel="dns-prefetch"/><link href="https://static.ak.facebook.com" rel="dns-prefetch"/><link href="https://s-static.ak.facebook.com" rel="dns-prefetch"/><link href="https://sb.scorecardresearch.com" rel="dns-prefetch"/><link href="https://www.facebook.com" rel="dns-prefetch"/><link href="https://cdn.branch.io" rel="dns-prefetch"/><link href="https://api2.branch.io" rel="dns-prefetch"/><link href="https://maps.gstatic.com" rel="dns-prefetch"/><link href="https://www.gstatic.com" rel="dns-prefetch"/><link href="https://app.link" rel="dns-prefetch"/><link href="https://www.clarity.ms" rel="dns-prefetch"/><link href="https://s.go-mpulse.net" rel="dns-prefetch"/><title>Best Welcome Back Restaurants Near Me in Bangalore You Must Try | Dineout </title><meta content="Check out the list of all best Welcome Back restaurants near you in Bangalore and book through Dineout to get various offers, discounts, cash backs at these restaurants." name="description"/><link href="https://www.dineout.co.in/bangalore-restaurants/welcome-back" rel="canonical"/><link href="https://www.dineout.co.in/bangalore-restaurants/welcome-back/amp" rel="amphtml"/><link href="https://www.dineout.co.in/bangalore-restaurants/welcome-back?p=1" rel="next"/><style type="text/css">
.top_bar.top-zero{
top: 0px;
}
</style><script type="text/javascript">
NodeList.prototype.forEach = Array.prototype.forEach;
function sendGAEvent( d_category, d_action, d_label) {
if(typeof ga !== 'undefined') {
do_category = typeof d_category !== "undefined" ? d_category : '';
do_action = typeof d_action !== "undefined" ? d_action : '';
do_label = typeof d_label !== "undefined" ? d_label : '';
console.log("Category: " + do_category + " ------Action: " + do_action + " ---Label: "+ do_label);
ga( 'send', 'event', do_category, do_action, do_label);
}
}
function onPageLoad(callback) {
function getQueryStringValue (key) {
return decodeURIComponent(window.location.search.replace(new RegExp("^(?:.*[&\\?]" + encodeURIComponent(key).replace(/[\.\+\*]/g, "\\$&") + "(?:\\=([^&]*))?)?.*$", "i"), "$1"));
};
var value = getQueryStringValue('utm_source');
if (value && window && window.sessionStorage){
window.sessionStorage.utm_source = value;
}
if (typeof $ != 'undefined' && $.onPageLoad) {
$.onPageLoad(callback);
} else {
window.addEventListener('load', callback);
}
var selector = '.js-toastr-hide';
document.addEventListener('click', function(event) {
var closest = event.target.closest(selector);
if (closest && document.contains(closest)) {
hideToastr();
}
});
}
function bindReady(callback){
if (document.addEventListener ) {
// Use the handy event callback
document.addEventListener( "DOMContentLoaded", function(){
callback();
}, false );
// If IE event model is used
} else if ( document.attachEvent ) {
// ensure firing before onload,
// maybe late but safe also for iframes
document.attachEvent("onreadystatechange", function(){
if ( document.readyState === "complete" ) {
callback();
}
});
}
}
function showLoading(){
$('.loader-overlay').removeClass('hide');
}
function hideLoading(){
$('.loader-overlay').addClass('hide');
}
function showToastr(text){
if(!text){
text = 'Some error occurred!';
}
$('.js-toastr-text').html(text);
$('.js-toastr-mobile').removeClass('hide');
$('.js-toastr-mobile').addClass('in');
setTimeout(function(){
hideToastr();
}, 5000);
}
var myEvent = window.attachEvent || window.addEventListener,
checkEvent = window.attachEvent ? 'onbeforeunload' : 'beforeunload';
myEvent(checkEvent, function (event) {
var bodyElem = document.body,
backDropElem = document.querySelector('.modal-backdrop');
bodyElem.classList.remove('modal-open');
if(backDropElem) {
backDropElem.remove();
}
});
function hideToastr(){
$('.js-toastr-mobile').removeClass('in');
$('.js-toastr-mobile').addClass('hide');
}
</script><script type="text/javascript">
window.cPageToken = "O7e3PnnP-6AyYQ08AQAVhbOuazTX48X4z5cc"
</script><script type="text/javascript">
if ('serviceWorker' in navigator) {
navigator.serviceWorker.register('/d-sw.js')
.then(function(reg) {
// registration worked
console.log('Registration succeeded. Scope is ' + reg.scope);
}).catch(function(error) {
// registration failed
console.log('Registration failed with ' + error);
});
}
</script><script type="text/javascript">
(function(){
if(window.console && console.log){
var old = console.log;
console.log = function(){
return ;
};
}
})();
</script><script>
(function() {
// Boomerang Loader Snippet version 14
if (window.BOOMR && (window.BOOMR.version || window.BOOMR.snippetExecuted)) {
return;
}
window.BOOMR = window.BOOMR || {};
window.BOOMR.snippetStart = new Date().getTime();
window.BOOMR.snippetExecuted = true;
window.BOOMR.snippetVersion = 14;
window.BOOMR.url = "https://s.go-mpulse.net/boomerang/" + "EPHHV-5AYCN-4JBH4-9392U-ZDFZV";
var // document.currentScript is supported in all browsers other than IE
where = document.currentScript || document.getElementsByTagName("script")[0],
// Parent element of the script we inject
parentNode = where.parentNode,
// Whether or not Preload method has worked
promoted = false,
// How long to wait for Preload to work before falling back to iframe method
LOADER_TIMEOUT = 3000;
// Tells the browser to execute the Preloaded script by adding it to the DOM
function promote() {
if (promoted) {
return;
}
var script = document.createElement("script");
script.id = "boomr-scr-as";
script.src = window.BOOMR.url;
// Not really needed since dynamic scripts are async by default and the script is already in cache at this point,
// but some naive parsers will see a missing async attribute and think we're not async
script.async = true;
parentNode.appendChild(script);
promoted = true;
}
// Non-blocking iframe loader (fallback for non-Preload scenarios) for all recent browsers.
// For IE 6/7, falls back to dynamic script node.
function iframeLoader(wasFallback) {
promoted = true;
var dom, doc = document,
bootstrap, iframe, iframeStyle, win = window;
window.BOOMR.snippetMethod = wasFallback ? "if" : "i";
// Adds Boomerang within the iframe
bootstrap = function(parent, scriptId) {
var script = doc.createElement("script");
script.id = scriptId || "boomr-if-as";
script.src = window.BOOMR.url;
BOOMR_lstart = new Date().getTime();
parent = parent || doc.body;
parent.appendChild(script);
};
// For IE 6/7, we'll just load the script in the current frame, as those browsers don't support 'about:blank'
// for an iframe src (it triggers warnings on secure sites). This means loading on IE 6/7 may cause SPoF.
if (!window.addEventListener && window.attachEvent && navigator.userAgent.match(/MSIE [67]\./)) {
window.BOOMR.snippetMethod = "s";
bootstrap(parentNode, "boomr-async");
return;
}
// The rest of this function is IE8+ and other browsers that don't support Preload hints but will work with CSP & iframes
iframe = document.createElement("IFRAME");
// An empty frame
iframe.src = "about:blank";
// We set title and role appropriately to play nicely with screen readers and other assistive technologies
iframe.title = "";
iframe.role = "presentation";
// Ensure we're not loaded lazily
iframe.loading = "eager";
// Hide the iframe
iframeStyle = (iframe.frameElement || iframe).style;
iframeStyle.width = 0;
iframeStyle.height = 0;
iframeStyle.border = 0;
iframeStyle.display = "none";
// Append to the end of the current block
parentNode.appendChild(iframe);
// Try to get the iframe's document object
try {
win = iframe.contentWindow;
doc = win.document.open();
} catch (e) {
// document.domain has been changed and we're on an old version of IE, so we got an access denied.
// Note: the only browsers that have this problem also do not have CSP support.
// Get document.domain of the parent window
dom = document.domain;
// Set the src of the iframe to a JavaScript URL that will immediately set its document.domain to match the parent.
// This lets us access the iframe document long enough to inject our script.
// Our script may need to do more domain massaging later.
iframe.src = "javascript:var d=document.open();d.domain='" + dom + "';void 0;";
win = iframe.contentWindow;
doc = win.document.open();
}
if (dom) {
// Unsafe version for IE8 compatibility. If document.domain has changed, we can't use win, but we can use doc.
doc._boomrl = function() {
this.domain = dom;
bootstrap();
};
// Run our function at load.
// Split the string so HTML code injectors don't get confused and add code here.
doc.write("<bo" + "dy onload='document._boomrl();'>");
} else {
// document.domain hasn't changed, regular method should be OK
win._boomrl = function() {
bootstrap();
};
if (win.addEventListener) {
win.addEventListener("load", win._boomrl, false);
} else if (win.attachEvent) {
win.attachEvent("onload", win._boomrl);
}
}
// Finish the document
doc.close();
}
// See if Preload is supported or not
var link = document.createElement("link");
if (link.relList && typeof link.relList.supports === "function" && link.relList.supports("preload") && ("as" in link)) {
window.BOOMR.snippetMethod = "p";
// Set attributes to trigger a Preload
link.href = window.BOOMR.url;
link.rel = "preload";
link.as = "script";
// Add our script tag if successful, fallback to iframe if not
link.addEventListener("load", promote);
link.addEventListener("error", function() {
iframeLoader(true);
});
// Have a fallback in case Preload does nothing or is slow
setTimeout(function() {
if (!promoted) {
iframeLoader(true);
}
}, LOADER_TIMEOUT);
// Note the timestamp we started trying to Preload
BOOMR_lstart = new Date().getTime();
// Append our link tag
parentNode.appendChild(link);
} else {
// No Preload support, use iframe loader
iframeLoader(false);
}
// Save when the onload event happened, in case this is a non-NavigationTiming browser
function boomerangSaveLoadTime(e) {
window.BOOMR_onload = (e && e.timeStamp) || new Date().getTime();
}
if (window.addEventListener) {
window.addEventListener("load", boomerangSaveLoadTime, false);
} else if (window.attachEvent) {
window.attachEvent("onload", boomerangSaveLoadTime);
}
})();
</script><link href="https://dn1.dineout-cdn.co.in/wstatic/restarant_listing-9a458f40.css" rel="stylesheet"/><!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<script src="http://css3-mediaqueries-js.googlecode.com/svn/trunk/css3-mediaqueries.js"></script>
<![endif]--><!--[if IE]>
<link rel="stylesheet" type="text/css" href="assets/css/all-ie.css">
<![endif]--></head><body class="" id="top"><div data-pagename="listing" id="js-page-data" style="display:none"></div><div data-w-on="1" data-widget="/dineout.co.in$0.0.2/girf/components/header-desktop/index" id="w0"><header class="header show-search d_header clearfix"><div class="container"><div class="primary-header-sec"><div class="menu-btn visible-xs"><span></span><span></span><span></span></div><div class="search-icon visible-xs"><span class="do do-search-icon"></span><span class="remove-icon">×</span></div><div class="pull-left left top-header-new"><div class="logo" data-w-onclick="logoEventHandler|w0"><a href="/bangalore"><img alt="Dineout" height="33" src="https://im1.dineout.co.in/images/uploads/misc/2019/Jul/25/website-logo.png" title="Dineout" width="100"/></a></div><div class="city hidden-xs"><div class="input-group-btn do_boxclick city-dd-wrap" data-w-preserve-attrs="class" data-widget="/dineout.co.in$0.0.2/girf/components/d-search-results-list/index" id="w0-w0"><div class="btn dd-btn btn-lg city-btn" data-w-onclick="showPopularLocation|w0-w0"><input aria-autocomplete="list" autocomplete="off" class="field" data-w-onkeyup="locationOnKeyUpHandler|w0-w0" name="homelocation" placeholder="Please type a location"/><span class="arrow_down"></span><i class="do do-location-fill"></i><span class="city-txt" id="dropCitySelect">Bangalore</span></div><div data-widget="/dineout.co.in$0.0.2/girf/components/d-location-results/index" id="w0-w0-searchLocationList"><ul class="dropdown-menu city-dd" data-w-preserve-attrs="class" id="dd-input-list" role="listbox"><li class="loc-detection" data-w-onclick="locateMeHandler|w0-w0-searchLocationList"><a class="btn btn-default" href="javascript:void(0)" id="locDec"><span class="ellipsis">Use my current location</span><i class="do do-location-detection"></i></a></li></ul></div></div></div><div class="search-wrap"><span class="global-searchicon"><svg height="16px" version="1.1" viewbox="0 0 22 23" width="16px" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd" id="Page-1" stroke="none" stroke-width="1"><g fill="#FF645A" id="1.Home-Page" transform="translate(-190.000000, -247.000000)"><g id="Hero-Image" transform="translate(0.000000, 55.000000)"><g id="Search" transform="translate(164.000000, 172.738034)"><g id="Group-34"><g id="Group-8" transform="translate(26.000000, 20.000000)"><path d="M21.6654764,20.0444799 C22.1113466,20.4903683 22.1128633,21.2117794 21.6618901,21.6627709 C21.2140393,22.11064 20.4902635,22.1129741 20.0436649,21.6663573 L13.8178605,15.4402998 C12.3708373,16.545886 10.5625855,17.202608 8.60095427,17.202608 C3.85077839,17.202608 0,13.351673 0,8.60130399 C0,3.85093497 3.85077839,0 8.60095427,0 C13.3511301,0 17.2019085,3.85093497 17.2019085,8.60130399 C17.2019085,10.5630149 16.5452133,12.3713403 15.439672,13.8184224 L21.6654764,20.0444799 Z M8.60095427,14.9089269 C12.0844166,14.9089269 14.9083207,12.0849079 14.9083207,8.60130399 C14.9083207,5.11770004 12.0844166,2.29368106 8.60095427,2.29368106 C5.11749196,2.29368106 2.29358781,5.11770004 2.29358781,8.60130399 C2.29358781,12.0849079 5.11749196,14.9089269 8.60095427,14.9089269 Z" id="Combined-Shape"></path></g></g></g></g></g></g></svg></span><form autocomplete="off" data-w-onsubmit="handleFormSubmit|w0" id="d-auto-suggest"><input autocomplete="off" class="pull-left" data-w-onkeyup="searchBoxOnKeyUpHandler|w0" id="location-auto-suggest" name="header_search" placeholder="Search for Restaurants, Offers, Deals or Events..." type="text" value=""/></form><div data-w-events="w0,applyAutoSuggestFilter,changeCategoryGroup" data-widget="/dineout.co.in$0.0.2/girf/components/d-header-results/index" id="w0-searchResults"><ul class="dropdown-menu fill-auto-suggest result-auto-suggest" id="search_result" role="menu" style="display: none"><div class="search_suggestions_wrap"></div></ul></div><button data-w-onclick="callSearch|w0" id="w0-0[0]" type="submit" value="Submit"><i class="do do-search-icon visible-sm"></i><span class="hidden-sm">Search</span></button></div><ul class="links clearfix pull-right"><li class="login" data-w-events="w0,openLogin,openLoginPopup" data-widget="/dineout.co.in$0.0.2/girf/components/header-desktop-user/index" id="w0-desktopuser"><a class="dflt_color d-loginbtn" href="javascript:void(0);" onclick="open_login_redirect('');">Log in</a></li></ul></div></div><div class="header-list"><ul><li><a data-action="Home" data-w-onclick="headerListClick|w0" href="/">Home</a></li><li><a data-action="bookATable" data-w-onclick="headerListClick|w0" href="/bangalore-restaurants">Book a Table</a></li><li><a data-action="DineoutPay" data-w-onclick="headerListClick|w0" href="/bangalore-restaurants/dineout-pay">Dineout Pay</a></li><li><a data-action="DineoutPay" data-w-onclick="headerListClick|w0" href="/blog">Blog</a></li></ul></div></div></header><div class="overlay"></div></div><span data-on="input,inputChangeHandler,#location-auto-suggest,focus,searchBoxOnKeyUpHandler,#location-auto-suggest,blur,toggleElements,0[]" id="w0-$on"></span><div class="listing-page-wrapper listing-page"><div><div data-widget="/dineout.co.in$0.0.2/girf/components/listing-main/index" id="w1"><div class="container"><div class="alert alert-danger alert-dismissible hide" id="alertError" role="alert"><button aria-label="Close" class="close" data-dismiss="alert" type="button"><span aria-hidden="true">×</span></button><strong>Warning!</strong> There is some error and we’r fixing this.</div><div class="row"><div class="wrapper" id="zeroResults"><div class="sidebar-right" id="sidebar"><div class="filters-wrap panel-affixsss form-elements-wrap" data-w-events="w1,click,fetchAPIData,dateSelected,dateSelected" data-widget="/dineout.co.in$0.0.2/girf/components/listing-filters/index" id="w1-filters"><div class="hide" data-w-events="w1-filters,click,resetfilterCom" data-widget="/dineout.co.in$0.0.2/girf/components/listing-filter-reset/index" id="w1-filters-0"></div><div class="show-more-popup js-show-more-popup" data-w-events="w1-filters,click,applyPopUpFilter" data-widget="/dineout.co.in$0.0.2/girf/components/listing-filter-popup/index" id="w1-filters-filter_popup"><div class="overlay"></div><div class="popup-wrap"><div class="top-wrap clearfix"><h4 class="pull-left"></h4><div class="form-group pull-left"><input class="form-control" id="js-filter-data" placeholder="Search " type="text"/></div></div><div class="main-content form-elements-wrap filter-options-wrap"><span class="clse">×</span><ul class="options" id="filterlist_pop"> </ul></div></div></div><div class="filter-component-wrap _quickfilters-wrap"><h4 aria-controls="_quickfilters" aria-expanded="" data-key="_quickfilters" data-toggle="collapse" data-w-onclick="openFilter|w1-filters" href="#_quickfilters" role="button"><span>Quick Filters</span> <em class="minus">-</em><em class="plus">+</em></h4><div class="collapse filter-options-wrap form-elements-wrap in" id="_quickfilters"><div class="form-group"><input autocomplete="off" class="form-control" data-key="_quickfilters" data-name="Quick Filters" data-w-onkeyup="searchFilter|w1-filters" id="_quickfilters-filter" placeholder="Search" type="text" value=""/></div><ul class="options"><li data-key="tag" data-name="Dineout Pay" data-parentkey="_quickfilters" data-type="CHECKBOX" data-w-events="w1-filters,click,checkFilterFn" data-w-onclick="checkFilterCheck|w1-filters-filter[0]" data-widget="/dineout.co.in$0.0.2/girf/components/listing-filter-checkbox/index" href="javascript:void(0)" id="w1-filters-filter[0]" title="restaurants in Dineout Pay"><input class="filled-in" type="checkbox"/><label><i class="smart-pay"></i><span>Dineout Pay</span></label> </li><li data-key="tag" data-name="Pure Veg" data-parentkey="_quickfilters" data-type="CHECKBOX" data-w-events="w1-filters,click,checkFilterFn" data-w-onclick="checkFilterCheck|w1-filters-filter[1]" data-widget="/dineout.co.in$0.0.2/girf/components/listing-filter-checkbox/index" href="javascript:void(0)" id="w1-filters-filter[1]" title="restaurants in Pure Veg"><input class="filled-in" type="checkbox"/><label><i class="smart-pay"></i><span>Pure Veg</span></label> </li><li data-key="tag" data-name="5 Star" data-parentkey="_quickfilters" data-type="CHECKBOX" data-w-events="w1-filters,click,checkFilterFn" data-w-onclick="checkFilterCheck|w1-filters-filter[2]" data-widget="/dineout.co.in$0.0.2/girf/components/listing-filter-checkbox/index" href="javascript:void(0)" id="w1-filters-filter[2]" title="restaurants in 5 Star"><input class="filled-in" type="checkbox"/><label><i class="smart-pay"></i><span>5 Star</span></label> </li><li data-key="tag" data-name="Buffet" data-parentkey="_quickfilters" data-type="CHECKBOX" data-w-events="w1-filters,click,checkFilterFn" data-w-onclick="checkFilterCheck|w1-filters-filter[3]" data-widget="/dineout.co.in$0.0.2/girf/components/listing-filter-checkbox/index" href="javascript:void(0)" id="w1-filters-filter[3]" title="restaurants in Buffet"><input class="filled-in" type="checkbox"/><label><i class="smart-pay"></i><span>Buffet</span></label> </li></ul><a class="do_show-more" data-key="_quickfilters" data-w-onclick="showMoreFilter|w1-filters" href="javascript:void(0);" id="_quickfilters-show-more">Show More (4)</a></div></div><div class="filter-component-wrap cuisine-wrap"><h4 aria-controls="cuisine" aria-expanded="" data-key="cuisine" data-toggle="collapse" data-w-onclick="openFilter|w1-filters" href="#cuisine" role="button"><span>Cuisines</span><em class="minus">-</em><em class="plus">+</em></h4><div class="collapse filter-options-wrap in" id="cuisine"><div class="form-group"><input autocomplete="off" class="form-control" data-key="cuisine" data-name="Cuisines" data-w-onkeyup="searchFilter|w1-filters" placeholder="Search For Cuisine" type="text" value=""/></div><ul class="options"><li data-name="North Indian" data-parentkey="cuisine" data-type="CHECKBOX" data-w-events="w1-filters,click,checkFilterFn" data-w-onclick="checkFilterCheck|w1-filters-filter[4]" data-widget="/dineout.co.in$0.0.2/girf/components/listing-filter-checkbox/index" href="javascript:void(0)" id="w1-filters-filter[4]" title="restaurants in North Indian"><a href="javascript:void(0)" title="restaurants in North Indian">North Indian</a></li><li data-name="Chinese" data-parentkey="cuisine" data-type="CHECKBOX" data-w-events="w1-filters,click,checkFilterFn" data-w-onclick="checkFilterCheck|w1-filters-filter[5]" data-widget="/dineout.co.in$0.0.2/girf/components/listing-filter-checkbox/index" href="javascript:void(0)" id="w1-filters-filter[5]" title="restaurants in Chinese"><a href="javascript:void(0)" title="restaurants in Chinese">Chinese</a></li><li data-name="Fast Food" data-parentkey="cuisine" data-type="CHECKBOX" data-w-events="w1-filters,click,checkFilterFn" data-w-onclick="checkFilterCheck|w1-filters-filter[6]" data-widget="/dineout.co.in$0.0.2/girf/components/listing-filter-checkbox/index" href="javascript:void(0)" id="w1-filters-filter[6]" title="restaurants in Fast Food"><a href="javascript:void(0)" title="restaurants in Fast Food">Fast Food</a></li><li data-name="Desserts" data-parentkey="cuisine" data-type="CHECKBOX" data-w-events="w1-filters,click,checkFilterFn" data-w-onclick="checkFilterCheck|w1-filters-filter[7]" data-widget="/dineout.co.in$0.0.2/girf/components/listing-filter-checkbox/index" href="javascript:void(0)" id="w1-filters-filter[7]" title="restaurants in Desserts"><a href="javascript:void(0)" title="restaurants in Desserts">Desserts</a></li></ul><a class="do_show-more" data-key="cuisine" data-w-onclick="showMoreFilter|w1-filters" href="javascript:void(0);" id="locality-show-more">Show More (54)</a></div></div><div class="filter-component-wrap tag-wrap"><h4 aria-controls="tag" aria-expanded="" data-key="tag" data-toggle="collapse" data-w-onclick="openFilter|w1-filters" href="#tag" role="button"><span>Tags</span> <em class="minus">-</em><em class="plus">+</em></h4><div class="collapse filter-options-wrap form-elements-wrap in" id="tag"><div class="form-group"><input autocomplete="off" class="form-control" data-key="tag" data-name="Tags" data-w-onkeyup="searchFilter|w1-filters" id="tag-filter" placeholder="Search" type="text" value=""/></div><ul class="options"><li data-name="Casual Dining" data-parentkey="tag" data-type="CHECKBOX" data-w-events="w1-filters,click,checkFilterFn" data-w-onclick="checkFilterCheck|w1-filters-filter[8]" data-widget="/dineout.co.in$0.0.2/girf/components/listing-filter-checkbox/index" href="javascript:void(0)" id="w1-filters-filter[8]" title="restaurants in Casual Dining"><input class="filled-in" type="checkbox"/><label><i class="smart-pay"></i><span>Casual Dining</span></label> </li><li data-name="Best Family Dining" data-parentkey="tag" data-type="CHECKBOX" data-w-events="w1-filters,click,checkFilterFn" data-w-onclick="checkFilterCheck|w1-filters-filter[9]" data-widget="/dineout.co.in$0.0.2/girf/components/listing-filter-checkbox/index" href="javascript:void(0)" id="w1-filters-filter[9]" title="restaurants in Best Family Dining"><input class="filled-in" type="checkbox"/><label><i class="smart-pay"></i><span>Best Family Dining</span></label> </li><li data-name="Pure Veg" data-parentkey="tag" data-type="CHECKBOX" data-w-events="w1-filters,click,checkFilterFn" data-w-onclick="checkFilterCheck|w1-filters-filter[10]" data-widget="/dineout.co.in$0.0.2/girf/components/listing-filter-checkbox/index" href="javascript:void(0)" id="w1-filters-filter[10]" title="restaurants in Pure Veg"><input class="filled-in" type="checkbox"/><label><i class="smart-pay"></i><span>Pure Veg</span></label> </li><li data-name="Breakfast" data-parentkey="tag" data-type="CHECKBOX" data-w-events="w1-filters,click,checkFilterFn" data-w-onclick="checkFilterCheck|w1-filters-filter[11]" data-widget="/dineout.co.in$0.0.2/girf/components/listing-filter-checkbox/index" href="javascript:void(0)" id="w1-filters-filter[11]" title="restaurants in Breakfast"><input class="filled-in" type="checkbox"/><label><i class="smart-pay"></i><span>Breakfast</span></label> </li></ul><a class="do_show-more" data-key="tag" data-w-onclick="showMoreFilter|w1-filters" href="javascript:void(0);" id="tag-show-more">Show More (72)</a></div></div><div class="filter-component-wrap feature-wrap"><h4 aria-controls="feature" class="collapsed" data-key="feature" data-toggle="collapse" data-w-onclick="openFilter|w1-filters" href="#feature" role="button"><span>Features</span> <em class="minus">-</em><em class="plus">+</em></h4><div class="collapse filter-options-wrap form-elements-wrap" id="feature"><div class="form-group"><input autocomplete="off" class="form-control" data-key="feature" data-name="Features" data-w-onkeyup="searchFilter|w1-filters" id="feature-filter" placeholder="Search" type="text" value=""/></div><ul class="options"><li data-name="Cards Accepted" data-parentkey="feature" data-type="CHECKBOX" data-w-events="w1-filters,click,checkFilterFn" data-w-onclick="checkFilterCheck|w1-filters-filter[12]" data-widget="/dineout.co.in$0.0.2/girf/components/listing-filter-checkbox/index" href="javascript:void(0)" id="w1-filters-filter[12]" title="restaurants in Cards Accepted"><input class="filled-in" type="checkbox"/><label><i class="smart-pay"></i><span>Cards Accepted</span></label> </li><li data-name="Wallet Accepted" data-parentkey="feature" data-type="CHECKBOX" data-w-events="w1-filters,click,checkFilterFn" data-w-onclick="checkFilterCheck|w1-filters-filter[13]" data-widget="/dineout.co.in$0.0.2/girf/components/listing-filter-checkbox/index" href="javascript:void(0)" id="w1-filters-filter[13]" title="restaurants in Wallet Accepted"><input class="filled-in" type="checkbox"/><label><i class="smart-pay"></i><span>Wallet Accepted</span></label> </li><li data-name="Home Delivery" data-parentkey="feature" data-type="CHECKBOX" data-w-events="w1-filters,click,checkFilterFn" data-w-onclick="checkFilterCheck|w1-filters-filter[14]" data-widget="/dineout.co.in$0.0.2/girf/components/listing-filter-checkbox/index" href="javascript:void(0)" id="w1-filters-filter[14]" title="restaurants in Home Delivery"><input class="filled-in" type="checkbox"/><label><i class="smart-pay"></i><span>Home Delivery</span></label> </li><li data-name="Air Conditioned" data-parentkey="feature" data-type="CHECKBOX" data-w-events="w1-filters,click,checkFilterFn" data-w-onclick="checkFilterCheck|w1-filters-filter[15]" data-widget="/dineout.co.in$0.0.2/girf/components/listing-filter-checkbox/index" href="javascript:void(0)" id="w1-filters-filter[15]" title="restaurants in Air Conditioned"><input class="filled-in" type="checkbox"/><label><i class="smart-pay"></i><span>Air Conditioned</span></label> </li></ul><a class="do_show-more" data-key="feature" data-w-onclick="showMoreFilter|w1-filters" href="javascript:void(0);" id="feature-show-more">Show More (20)</a></div></div></div><a href="/top-10-restaurants-in-bangalore">Top 10 Restaurants in Bangalore</a><div class="marginT10"><a href="/welcome-back-restaurants-near-me">Welcome Back Restaurants Near Me</a></div></div><div class="content" id="main"><ul class="breadcrumbs" itemscope="" itemtype="http://schema.org/BreadcrumbList"><li itemprop="itemListElement" itemscope="" itemtype="http://schema.org/ListItem"><a data-w-onclick="BreadCrumbClickGA|w1" href="https://www.dineout.co.in" itemprop="item"><span itemprop="name">dineout</span></a><meta content="1" itemprop="position"/></li><li><i class="do do-angle-right"></i></li><li itemprop="itemListElement" itemscope="" itemtype="http://schema.org/ListItem"><a data-w-onclick="BreadCrumbClickGA|w1" href="https://www.dineout.co.in/bangalore" itemprop="item"><span itemprop="name">Bangalore</span></a><meta content="2" itemprop="position"/></li><li><i class="do do-angle-right"></i></li><li itemprop="itemListElement" itemscope="" itemtype="http://schema.org/ListItem"><a data-w-onclick="BreadCrumbClickGA|w1" href="https://www.dineout.co.in/bangalore-restaurants" itemprop="item"><span itemprop="name">Bangalore Restaurants</span></a><meta content="3" itemprop="position"/></li><li><i class="do do-angle-right"></i></li><li class="active">welcome back</li></ul><div class="clearfix listing-title-wrap" data-w-events="w1,click,fetchAPIData,onlyAvailableDealClicked,onOnlyAvailableDealClicked" data-widget="/dineout.co.in$0.0.2/girf/components/listing-top-sorter/index" id="w1-sorter"><div class="h1Wrapper"><h1 class="listing-title">Best Welcome Back Restaurants Near Me in Bangalore</h1><span class="restnt-numbers">(1381)</span></div><div class="sort-by"><span>Sort by</span><div class="sort-by-dd dropdown"><a aria-expanded="false" aria-haspopup="true" data-target="#" data-toggle="dropdown" href="javascript:void(0);" id="dLabel" role="button">Popularity<i class="do do-angle-down"></i></a><ul aria-labelledby="dLabel" class="dropdown-menu"><li><a class="js-sorter" data-key="ratingDESC" data-name="Rating" data-w-onclick="applySorter|w1-sorter">Rating</a></li><li><a class="js-sorter" data-key="relevance" data-name="Popularity" data-w-onclick="applySorter|w1-sorter">Popularity</a></li><li><a class="js-sorter" data-key="costASC" data-name="Price: Low to High" data-w-onclick="applySorter|w1-sorter">Price: Low to High</a></li><li><a class="js-sorter" data-key="costDESC" data-name="Price: High to Low" data-w-onclick="applySorter|w1-sorter">Price: High to Low</a></li></ul></div></div></div><div><div class="restnt-card-wrap-new" data-widget="/dineout.co.in$0.0.2/girf/components/listing-restarant/index" id="w1-restarant"><div class="restnt-card restaurant"><div class="restnt-main-wrap clearfix"><div class="img-wrap"><div analytics-action="RestaurantImageClick" analytics-label="48670_The Bier Library Brewery & Kitchen" class="img cursor" data-link="/bangalore/the-bier-library-brewery-kitchen-koramangala-south-bangalore-48670" data-w-onclick="cardClickHandler|w1-restarant"><img alt="The Bier Library Brewery & Kitchen" class="lazy-load-img no-img" data-gatype="RestaurantImageClick" data-src="https://im1.dineout.co.in/images/uploads/restaurant/sharpen/4/r/y/p48670-15414807385be1212212d20.jpg?tr=tr:n-medium" data-url="/bangalore/the-bier-library-brewery-kitchen-koramangala-south-bangalore-48670" data-w-onclick="cardClickHandler"/></div><div class="restnt-rating rating-4">4.4</div></div><div class="restnt-detail-wrap"><div analytics-action="RestaurantCardClick" analytics-label="48670_The Bier Library Brewery & Kitchen" class="restaurant-info-section restnt-detail" data-link="/bangalore/the-bier-library-brewery-kitchen-koramangala-south-bangalore-48670" data-w-onclick="cardClickHandler|w1-restarant"><div class="restnt-rating-widget pull-right text-right"><div class="restnt-rating rating-4 hide">4.3</div><div class="rating-txt hide">232 votes</div></div><div class="restnt-info cursor" data-gatype="RestaurantNameClick"><a analytics-action="RestaurantCardClick" analytics-label="48670_The Bier Library Brewery & Kitchen" class="restnt-name ellipsis" data-w-onclick="sendAnalyticsCommon|w1-restarant" href="/bangalore/the-bier-library-brewery-kitchen-koramangala-south-bangalore-48670">The Bier Library Brewery & Kitchen</a><div class="restnt-loc ellipsis" data-w-onclick="stopClickPropagation|w1-restarant"><a data-name="Koramangala" data-type="LocalityClick" href="/bangalore-restaurants/south-bangalore/koramangala">Koramangala</a>, <a data-name="South Bangalore" data-type="AreaClick" href="/bangalore-restaurants/south-bangalore">South Bangalore</a></div></div><div class="detail-info"><ul><li><span class="double-line-ellipsis"><span>₹ 1,900 for 2 (approx)</span><span> | </span><a data-w-onclick="stopClickPropagation|w1-restarant" href="/bangalore-restaurants/continental-cuisine">Continental</a><span>, </span><a data-w-onclick="stopClickPropagation|w1-restarant" href="/bangalore-restaurants/finger-food-cuisine">Finger Food</a><span>, </span><a data-w-onclick="stopClickPropagation|w1-restarant" href="/bangalore-restaurants/north-indian-cuisine">North Indian</a></span></li><li class="ellipsis"></li></ul></div><div class="add-new-section" style="white-space: nowrap; overflow-x: auto;"><a analytics-action="RestTagClick" analytics-label="Dineout Pay" class="btn pay cursor" data-link="/dineout-pay/instant-discount/how-it-works" data-w-onclick="sendAnalyticsCommon|w1-restarant" href="/dineout-pay/instant-discount/how-it-works" rel="noopener" style="color:#F67373;background:#FFF4F4" target="_blank">Dineout Pay<img class="lazy-load-img" data-src="https://im1.dineout.co.in/images/uploads/misc/2019/Jan/17/information.png"/></a></div></div></div></div></div><div class="restnt-card restaurant"><div class="restnt-main-wrap clearfix"><div class="img-wrap"><div analytics-action="RestaurantImageClick" analytics-label="1350_Hard Rock Cafe" class="img cursor" data-link="/bangalore/hard-rock-cafe-st-marks-road-central-bangalore-1350" data-w-onclick="cardClickHandler|w1-restarant"><img alt="Hard Rock Cafe" class="lazy-load-img no-img" data-gatype="RestaurantImageClick" data-src="https://im1.dineout.co.in/images/uploads/restaurant/sharpen/3/h/z/p3728-15819343935e4a6739ada8d.jpg?tr=tr:n-medium" data-url="/bangalore/hard-rock-cafe-st-marks-road-central-bangalore-1350" data-w-onclick="cardClickHandler"/></div><div class="restnt-rating rating-4">4.4</div></div><div class="restnt-detail-wrap"><div analytics-action="RestaurantCardClick" analytics-label="1350_Hard Rock Cafe" class="restaurant-info-section restnt-detail" data-link="/bangalore/hard-rock-cafe-st-marks-road-central-bangalore-1350" data-w-onclick="cardClickHandler|w1-restarant"><div class="restnt-rating-widget pull-right text-right"><div class="restnt-rating rating-4 hide">4.3</div><div class="rating-txt hide">232 votes</div></div><div class="restnt-info cursor" data-gatype="RestaurantNameClick"><a analytics-action="RestaurantCardClick" analytics-label="1350_Hard Rock Cafe" class="restnt-name ellipsis" data-w-onclick="sendAnalyticsCommon|w1-restarant" href="/bangalore/hard-rock-cafe-st-marks-road-central-bangalore-1350">Hard Rock Cafe</a><div class="restnt-loc ellipsis" data-w-onclick="stopClickPropagation|w1-restarant"><a data-name="St. Marks Road" data-type="LocalityClick" href="/bangalore-restaurants/central-bangalore/st-marks-road">St. Marks Road</a>, <a data-name="Central Bangalore" data-type="AreaClick" href="/bangalore-restaurants/central-bangalore">Central Bangalore</a></div></div><div class="detail-info"><ul><li><span class="double-line-ellipsis"><span>₹ 2,500 for 2 (approx)</span><span> | </span><a data-w-onclick="stopClickPropagation|w1-restarant" href="/bangalore-restaurants/continental-cuisine">Continental</a><span>, </span><a data-w-onclick="stopClickPropagation|w1-restarant" href="/bangalore-restaurants/american-cuisine">American</a><span>, </span><a data-w-onclick="stopClickPropagation|w1-restarant" href="/bangalore-restaurants/finger-food-cuisine">Finger Food</a></span></li><li class="ellipsis"></li></ul></div><div class="add-new-section" style="white-space: nowrap; overflow-x: auto;"><a analytics-action="RestTagClick" analytics-label="Dineout Pay" class="btn pay cursor" data-link="/dineout-pay/instant-discount/how-it-works" data-w-onclick="sendAnalyticsCommon|w1-restarant" href="/dineout-pay/instant-discount/how-it-works" rel="noopener" style="color:#F67373;background:#FFF4F4" target="_blank">Dineout Pay<img class="lazy-load-img" data-src="https://im1.dineout.co.in/images/uploads/misc/2019/Jan/17/information.png"/></a></div></div></div></div></div><div class="restnt-card restaurant"><div class="restnt-main-wrap clearfix"><div class="img-wrap"><div analytics-action="RestaurantImageClick" analytics-label="60213_Uru Brewpark" class="img cursor" data-link="/bangalore/uru-brewpark-jp-nagar-south-bangalore-60213" data-w-onclick="cardClickHandler|w1-restarant"><img alt="Uru Brewpark" class="lazy-load-img no-img" data-gatype="RestaurantImageClick" data-src="https://im1.dineout.co.in/images/uploads/restaurant/sharpen/6/k/n/p60213-162643925660f17e58443c5.jpg?tr=tr:n-medium" data-url="/bangalore/uru-brewpark-jp-nagar-south-bangalore-60213" data-w-onclick="cardClickHandler"/><div class="persuassion" style="background:#FAE5E5"><img class="persuassion-img lazy-load-img" data-src="https://im1.dineout.co.in/images/uploads/misc/2018/Apr/23/high_demand.png"/><span style="color:#ef2f2f">In high demand</span></div></div><div class="restnt-rating rating-4">4.3</div></div><div class="restnt-detail-wrap"><div analytics-action="RestaurantCardClick" analytics-label="60213_Uru Brewpark" class="restaurant-info-section restnt-detail" data-link="/bangalore/uru-brewpark-jp-nagar-south-bangalore-60213" data-w-onclick="cardClickHandler|w1-restarant"><div class="restnt-rating-widget pull-right text-right"><div class="restnt-rating rating-4 hide">4.3</div><div class="rating-txt hide">232 votes</div></div><div class="restnt-info cursor" data-gatype="RestaurantNameClick"><a analytics-action="RestaurantCardClick" analytics-label="60213_Uru Brewpark" class="restnt-name ellipsis" data-w-onclick="sendAnalyticsCommon|w1-restarant" href="/bangalore/uru-brewpark-jp-nagar-south-bangalore-60213">Uru Brewpark</a><div class="restnt-loc ellipsis" data-w-onclick="stopClickPropagation|w1-restarant"><a data-name="JP Nagar" data-type="LocalityClick" href="/bangalore-restaurants/south-bangalore/jp-nagar">JP Nagar</a>, <a data-name="South Bangalore" data-type="AreaClick" href="/bangalore-restaurants/south-bangalore">South Bangalore</a></div></div><div class="detail-info"><ul><li><span class="double-line-ellipsis"><span>₹ 2,000 for 2 (approx)</span><span> | </span><a data-w-onclick="stopClickPropagation|w1-restarant" href="/bangalore-restaurants/north-indian-cuisine">North Indian</a><span>, </span><a data-w-onclick="stopClickPropagation|w1-restarant" href="/bangalore-restaurants/italian-cuisine">Italian</a><span>, </span><a data-w-onclick="stopClickPropagation|w1-restarant" href="/bangalore-restaurants/continental-cuisine">Continental</a><span>, </span><a data-w-onclick="stopClickPropagation|w1-restarant" href="/bangalore-restaurants/asian-cuisine">Asian</a></span></li><li class="ellipsis"></li></ul></div><div class="add-new-section" style="white-space: nowrap; overflow-x: auto;"><a analytics-action="RestTagClick" analytics-label="Dineout Pay" class="btn pay cursor" data-link="/dineout-pay/instant-discount/how-it-works" data-w-onclick="sendAnalyticsCommon|w1-restarant" href="/dineout-pay/instant-discount/how-it-works" rel="noopener" style="color:#F67373;background:#FFF4F4" target="_blank">Dineout Pay<img class="lazy-load-img" data-src="https://im1.dineout.co.in/images/uploads/misc/2019/Jan/17/information.png"/></a></div></div></div></div></div><div class="restnt-card restaurant"><div class="restnt-main-wrap clearfix"><div class="img-wrap"><div analytics-action="RestaurantImageClick" analytics-label="50533_Biergarten" class="img cursor" data-link="/bangalore/biergarten-koramangala-south-bangalore-50533" data-w-onclick="cardClickHandler|w1-restarant"><img alt="Biergarten" class="lazy-load-img no-img" data-gatype="RestaurantImageClick" data-src="https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/k/q/p50533-15783109835e131d4774e89.jpg?tr=tr:n-medium" data-url="/bangalore/biergarten-koramangala-south-bangalore-50533" data-w-onclick="cardClickHandler"/></div><div class="restnt-rating rating-4">4.4</div></div><div class="restnt-detail-wrap"><div analytics-action="RestaurantCardClick" analytics-label="50533_Biergarten" class="restaurant-info-section restnt-detail" data-link="/bangalore/biergarten-koramangala-south-bangalore-50533" data-w-onclick="cardClickHandler|w1-restarant"><div class="restnt-rating-widget pull-right text-right"><div class="restnt-rating rating-4 hide">4.3</div><div class="rating-txt hide">232 votes</div></div><div class="restnt-info cursor" data-gatype="RestaurantNameClick"><a analytics-action="RestaurantCardClick" analytics-label="50533_Biergarten" class="restnt-name ellipsis" data-w-onclick="sendAnalyticsCommon|w1-restarant" href="/bangalore/biergarten-koramangala-south-bangalore-50533">Biergarten</a><div class="restnt-loc ellipsis" data-w-onclick="stopClickPropagation|w1-restarant"><a data-name="Koramangala" data-type="LocalityClick" href="/bangalore-restaurants/south-bangalore/koramangala">Koramangala</a>, <a data-name="South Bangalore" data-type="AreaClick" href="/bangalore-restaurants/south-bangalore">South Bangalore</a></div></div><div class="detail-info"><ul><li><span class="double-line-ellipsis"><span>₹ 2,400 for 2 (approx)</span><span> | </span><a data-w-onclick="stopClickPropagation|w1-restarant" href="/bangalore-restaurants/continental-cuisine">Continental</a><span>, </span><a data-w-onclick="stopClickPropagation|w1-restarant" href="/bangalore-restaurants/european-cuisine">European</a></span></li><li class="ellipsis"></li></ul></div><div class="add-new-section" style="white-space: nowrap; overflow-x: auto;"><a analytics-action="RestTagClick" analytics-label="Dineout Pay" class="btn pay cursor" data-link="/dineout-pay/instant-discount/how-it-works" data-w-onclick="sendAnalyticsCommon|w1-restarant" href="/dineout-pay/instant-discount/how-it-works" rel="noopener" style="color:#F67373;background:#FFF4F4" target="_blank">Dineout Pay<img class="lazy-load-img" data-src="https://im1.dineout.co.in/images/uploads/misc/2019/Jan/17/information.png"/></a></div></div></div></div></div><div class="restnt-card restaurant"><div class="restnt-main-wrap clearfix"><div class="img-wrap"><div analytics-action="RestaurantImageClick" analytics-label="48391_The Bangalore Cafe" class="img cursor" data-link="/bangalore/the-bangalore-cafe-shanti-nagar-central-bangalore-48391" data-w-onclick="cardClickHandler|w1-restarant"><img alt="The Bangalore Cafe" class="lazy-load-img no-img" data-gatype="RestaurantImageClick" data-src="https://im1.dineout.co.in/images/uploads/restaurant/sharpen/4/u/u/p48391-15501219495c64fbdd483e4.jpg?tr=tr:n-medium" data-url="/bangalore/the-bangalore-cafe-shanti-nagar-central-bangalore-48391" data-w-onclick="cardClickHandler"/></div><div class="restnt-rating rating-4">4.3</div></div><div class="restnt-detail-wrap"><div analytics-action="RestaurantCardClick" analytics-label="48391_The Bangalore Cafe" class="restaurant-info-section restnt-detail" data-link="/bangalore/the-bangalore-cafe-shanti-nagar-central-bangalore-48391" data-w-onclick="cardClickHandler|w1-restarant"><div class="restnt-rating-widget pull-right text-right"><div class="restnt-rating rating-4 hide">4.3</div><div class="rating-txt hide">232 votes</div></div><div class="restnt-info cursor" data-gatype="RestaurantNameClick"><a analytics-action="RestaurantCardClick" analytics-label="48391_The Bangalore Cafe" class="restnt-name ellipsis" data-w-onclick="sendAnalyticsCommon|w1-restarant" href="/bangalore/the-bangalore-cafe-shanti-nagar-central-bangalore-48391">The Bangalore Cafe</a><div class="restnt-loc ellipsis" data-w-onclick="stopClickPropagation|w1-restarant"><a data-name="Shanti Nagar" data-type="LocalityClick" href="/bangalore-restaurants/central-bangalore/shanti-nagar">Shanti Nagar</a>, <a data-name="Central Bangalore" data-type="AreaClick" href="/bangalore-restaurants/central-bangalore">Central Bangalore</a></div></div><div class="detail-info"><ul><li><span class="double-line-ellipsis"><span>₹ 800 for 2 (approx)</span><span> | </span><a data-w-onclick="stopClickPropagation|w1-restarant" href="/bangalore-restaurants/continental-cuisine">Continental</a><span>, </span><a data-w-onclick="stopClickPropagation|w1-restarant" href="/bangalore-restaurants/north-indian-cuisine">North Indian</a><span>, </span><a data-w-onclick="stopClickPropagation|w1-restarant" href="/bangalore-restaurants/fast-food-cuisine">Fast Food</a></span></li><li class="ellipsis"></li></ul></div><div class="add-new-section" style="white-space: nowrap; overflow-x: auto;"><a analytics-action="RestTagClick" analytics-label="Dineout Pay" class="btn pay cursor" data-link="/dineout-pay/instant-discount/how-it-works" data-w-onclick="sendAnalyticsCommon|w1-restarant" href="/dineout-pay/instant-discount/how-it-works" rel="noopener" style="color:#F67373;background:#FFF4F4" target="_blank">Dineout Pay<img class="lazy-load-img" data-src="https://im1.dineout.co.in/images/uploads/misc/2019/Jan/17/information.png"/></a></div></div></div></div></div><div class="restnt-card restaurant"><div class="restnt-main-wrap clearfix"><div class="img-wrap"><div analytics-action="RestaurantImageClick" analytics-label="5068_Toscano" class="img cursor" data-link="/bangalore/toscano-vittal-mallya-road-central-bangalore-5068" data-w-onclick="cardClickHandler|w1-restarant"><img alt="Toscano" class="lazy-load-img no-img" data-gatype="RestaurantImageClick" data-src="https://im1.dineout.co.in/images/uploads/restaurant/sharpen/8/g/h/p860-16107933836002c1a7713ed.jpg?tr=tr:n-medium" data-url="/bangalore/toscano-vittal-mallya-road-central-bangalore-5068" data-w-onclick="cardClickHandler"/></div><div class="restnt-rating rating-5">4.5</div></div><div class="restnt-detail-wrap"><div analytics-action="RestaurantCardClick" analytics-label="5068_Toscano" class="restaurant-info-section restnt-detail" data-link="/bangalore/toscano-vittal-mallya-road-central-bangalore-5068" data-w-onclick="cardClickHandler|w1-restarant"><div class="restnt-rating-widget pull-right text-right"><div class="restnt-rating rating-4 hide">4.3</div><div class="rating-txt hide">232 votes</div></div><div class="restnt-info cursor" data-gatype="RestaurantNameClick"><a analytics-action="RestaurantCardClick" analytics-label="5068_Toscano" class="restnt-name ellipsis" data-w-onclick="sendAnalyticsCommon|w1-restarant" href="/bangalore/toscano-vittal-mallya-road-central-bangalore-5068">Toscano</a><div class="restnt-loc ellipsis" data-w-onclick="stopClickPropagation|w1-restarant"><a href="/bangalore-restaurants/ub-city-landmark">UB City,</a><a data-name="Vittal Mallya Road" data-type="LocalityClick" href="/bangalore-restaurants/central-bangalore/vittal-mallya-road">Vittal Mallya Road</a>, <a data-name="Central Bangalore" data-type="AreaClick" href="/bangalore-restaurants/central-bangalore">Central Bangalore</a></div></div><div class="detail-info"><ul><li><span class="double-line-ellipsis"><span>₹ 1,600 for 2 (approx)</span><span> | </span><a data-w-onclick="stopClickPropagation|w1-restarant" href="/bangalore-restaurants/italian-cuisine">Italian</a></span></li><li class="ellipsis"></li></ul></div><div class="add-new-section" style="white-space: nowrap; overflow-x: auto;"><a analytics-action="RestTagClick" analytics-label="Dineout Pay" class="btn pay cursor" data-link="/dineout-pay/instant-discount/how-it-works" data-w-onclick="sendAnalyticsCommon|w1-restarant" href="/dineout-pay/instant-discount/how-it-works" rel="noopener" style="color:#F67373;background:#FFF4F4" target="_blank">Dineout Pay<img class="lazy-load-img" data-src="https://im1.dineout.co.in/images/uploads/misc/2019/Jan/17/information.png"/></a></div></div></div></div></div><div class="restnt-card restaurant"><div class="restnt-main-wrap clearfix"><div class="img-wrap"><div analytics-action="RestaurantImageClick" analytics-label="57949_Daddy" class="img cursor" data-link="/bangalore/daddy-indiranagar-east-bangalore-57949" data-w-onclick="cardClickHandler|w1-restarant"><img alt="Daddy" class="lazy-load-img no-img" data-gatype="RestaurantImageClick" data-src="https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/u/f/p57949-15604908195d033343f04f5.jpg?tr=tr:n-medium" data-url="/bangalore/daddy-indiranagar-east-bangalore-57949" data-w-onclick="cardClickHandler"/></div><div class="restnt-rating rating-4">4.2</div></div><div class="restnt-detail-wrap"><div analytics-action="RestaurantCardClick" analytics-label="57949_Daddy" class="restaurant-info-section restnt-detail" data-link="/bangalore/daddy-indiranagar-east-bangalore-57949" data-w-onclick="cardClickHandler|w1-restarant"><div class="restnt-rating-widget pull-right text-right"><div class="restnt-rating rating-4 hide">4.3</div><div class="rating-txt hide">232 votes</div></div><div class="restnt-info cursor" data-gatype="RestaurantNameClick"><a analytics-action="RestaurantCardClick" analytics-label="57949_Daddy" class="restnt-name ellipsis" data-w-onclick="sendAnalyticsCommon|w1-restarant" href="/bangalore/daddy-indiranagar-east-bangalore-57949">Daddy</a><div class="restnt-loc ellipsis" data-w-onclick="stopClickPropagation|w1-restarant"><a data-name="Indiranagar" data-type="LocalityClick" href="/bangalore-restaurants/east-bangalore/indiranagar">Indiranagar</a>, <a data-name="East Bangalore" data-type="AreaClick" href="/bangalore-restaurants/east-bangalore">East Bangalore</a></div></div><div class="detail-info"><ul><li><span class="double-line-ellipsis"><span>₹ 2,200 for 2 (approx)</span><span> | </span><a data-w-onclick="stopClickPropagation|w1-restarant" href="/bangalore-restaurants/asian-cuisine">Asian</a><span>, </span><a data-w-onclick="stopClickPropagation|w1-restarant" href="/bangalore-restaurants/north-indian-cuisine">North Indian</a><span>, </span><a data-w-onclick="stopClickPropagation|w1-restarant" href="/bangalore-restaurants/european-cuisine">European</a><span>, </span><a data-w-onclick="stopClickPropagation|w1-restarant" href="/bangalore-restaurants/italian-cuisine">Italian</a></span></li><li class="ellipsis"></li></ul></div><div class="add-new-section" style="white-space: nowrap; overflow-x: auto;"><a analytics-action="RestTagClick" analytics-label="Dineout Pay" class="btn pay cursor" data-link="/dineout-pay/instant-discount/how-it-works" data-w-onclick="sendAnalyticsCommon|w1-restarant" href="/dineout-pay/instant-discount/how-it-works" rel="noopener" style="color:#F67373;background:#FFF4F4" target="_blank">Dineout Pay<img class="lazy-load-img" data-src="https://im1.dineout.co.in/images/uploads/misc/2019/Jan/17/information.png"/></a></div></div></div></div></div><div class="restnt-card restaurant"><div class="restnt-main-wrap clearfix"><div class="img-wrap"><div analytics-action="RestaurantImageClick" analytics-label="29533_Cafe Azzure" class="img cursor" data-link="/bangalore/cafe-azzure-mg-road-central-bangalore-29533" data-w-onclick="cardClickHandler|w1-restarant"><img alt="Cafe Azzure" class="lazy-load-img no-img" data-gatype="RestaurantImageClick" data-src="https://im1.dineout.co.in/images/uploads/restaurant/sharpen/2/g/h/p29533-14807615365842a0c04da29.jpg?tr=tr:n-medium" data-url="/bangalore/cafe-azzure-mg-road-central-bangalore-29533" data-w-onclick="cardClickHandler"/></div><div class="restnt-rating rating-4">4.3</div></div><div class="restnt-detail-wrap"><div analytics-action="RestaurantCardClick" analytics-label="29533_Cafe Azzure" class="restaurant-info-section restnt-detail" data-link="/bangalore/cafe-azzure-mg-road-central-bangalore-29533" data-w-onclick="cardClickHandler|w1-restarant"><div class="restnt-rating-widget pull-right text-right"><div class="restnt-rating rating-4 hide">4.3</div><div class="rating-txt hide">232 votes</div></div><div class="restnt-info cursor" data-gatype="RestaurantNameClick"><a analytics-action="RestaurantCardClick" analytics-label="29533_Cafe Azzure" class="restnt-name ellipsis" data-w-onclick="sendAnalyticsCommon|w1-restarant" href="/bangalore/cafe-azzure-mg-road-central-bangalore-29533">Cafe Azzure</a><div class="restnt-loc ellipsis" data-w-onclick="stopClickPropagation|w1-restarant"><a data-name="MG Road" data-type="LocalityClick" href="/bangalore-restaurants/central-bangalore/mg-road">MG Road</a>, <a data-name="Central Bangalore" data-type="AreaClick" href="/bangalore-restaurants/central-bangalore">Central Bangalore</a></div></div><div class="detail-info"><ul><li><span class="double-line-ellipsis"><span>₹ 1,200 for 2 (approx)</span><span> | </span><a data-w-onclick="stopClickPropagation|w1-restarant" href="/bangalore-restaurants/continental-cuisine">Continental</a><span>, </span><a data-w-onclick="stopClickPropagation|w1-restarant" href="/bangalore-restaurants/italian-cuisine">Italian</a><span>, </span><a data-w-onclick="stopClickPropagation|w1-restarant" href="/bangalore-restaurants/desserts-cuisine">Desserts</a><span>, </span><a data-w-onclick="stopClickPropagation|w1-restarant" href="/bangalore-restaurants/bengali-cuisine">Bengali</a></span></li><li class="ellipsis"></li></ul></div><div class="add-new-section" style="white-space: nowrap; overflow-x: auto;"><a analytics-action="RestTagClick" analytics-label="Dineout Pay" class="btn pay cursor" data-link="/dineout-pay/instant-discount/how-it-works" data-w-onclick="sendAnalyticsCommon|w1-restarant" href="/dineout-pay/instant-discount/how-it-works" rel="noopener" style="color:#F67373;background:#FFF4F4" target="_blank">Dineout Pay<img class="lazy-load-img" data-src="https://im1.dineout.co.in/images/uploads/misc/2019/Jan/17/information.png"/></a></div></div></div></div></div><div class="restnt-card restaurant"><div class="restnt-main-wrap clearfix"><div class="img-wrap"><div analytics-action="RestaurantImageClick" analytics-label="1258_Sanchez" class="img cursor" data-link="/bangalore/sanchez-vittal-mallya-road-central-bangalore-1258" data-w-onclick="cardClickHandler|w1-restarant"><img alt="Sanchez" class="lazy-load-img no-img" data-gatype="RestaurantImageClick" data-src="https://im1.dineout.co.in/images/uploads/restaurant/sharpen/1/y/t/p1258-15517088875c7d32d7331ff.jpg?tr=tr:n-medium" data-url="/bangalore/sanchez-vittal-mallya-road-central-bangalore-1258" data-w-onclick="cardClickHandler"/></div><div class="restnt-rating rating-4">4.3</div></div><div class="restnt-detail-wrap"><div analytics-action="RestaurantCardClick" analytics-label="1258_Sanchez" class="restaurant-info-section restnt-detail" data-link="/bangalore/sanchez-vittal-mallya-road-central-bangalore-1258" data-w-onclick="cardClickHandler|w1-restarant"><div class="restnt-rating-widget pull-right text-right"><div class="restnt-rating rating-4 hide">4.3</div><div class="rating-txt hide">232 votes</div></div><div class="restnt-info cursor" data-gatype="RestaurantNameClick"><a analytics-action="RestaurantCardClick" analytics-label="1258_Sanchez" class="restnt-name ellipsis" data-w-onclick="sendAnalyticsCommon|w1-restarant" href="/bangalore/sanchez-vittal-mallya-road-central-bangalore-1258">Sanchez</a><div class="restnt-loc ellipsis" data-w-onclick="stopClickPropagation|w1-restarant"><a href="/bangalore-restaurants/ub-city-landmark">UB City,</a><a data-name="Vittal Mallya Road" data-type="LocalityClick" href="/bangalore-restaurants/central-bangalore/vittal-mallya-road">Vittal Mallya Road</a>, <a data-name="Central Bangalore" data-type="AreaClick" href="/bangalore-restaurants/central-bangalore">Central Bangalore</a></div></div><div class="detail-info"><ul><li><span class="double-line-ellipsis"><span>₹ 1,800 for 2 (approx)</span><span> | </span><a data-w-onclick="stopClickPropagation|w1-restarant" href="/bangalore-restaurants/mexican-cuisine">Mexican</a></span></li><li class="ellipsis"></li></ul></div><div class="add-new-section" style="white-space: nowrap; overflow-x: auto;"><a analytics-action="RestTagClick" analytics-label="Dineout Pay" class="btn pay cursor" data-link="/dineout-pay/instant-discount/how-it-works" data-w-onclick="sendAnalyticsCommon|w1-restarant" href="/dineout-pay/instant-discount/how-it-works" rel="noopener" style="color:#F67373;background:#FFF4F4" target="_blank">Dineout Pay<img class="lazy-load-img" data-src="https://im1.dineout.co.in/images/uploads/misc/2019/Jan/17/information.png"/></a></div></div></div></div></div><div class="restnt-card restaurant"><div class="restnt-main-wrap clearfix"><div class="img-wrap"><div analytics-action="RestaurantImageClick" analytics-label="4471_Cafe Noir" class="img cursor" data-link="/bangalore/cafe-noir-vittal-mallya-road-central-bangalore-4471" data-w-onclick="cardClickHandler|w1-restarant"><img alt="Cafe Noir" class="lazy-load-img no-img" data-gatype="RestaurantImageClick" data-src="https://im1.dineout.co.in/images/uploads/restaurant/sharpen/4/b/e/p4471-16353141816178ea05c332c.jpg?tr=tr:n-medium" data-url="/bangalore/cafe-noir-vittal-mallya-road-central-bangalore-4471" data-w-onclick="cardClickHandler"/></div><div class="restnt-rating rating-4">4.4</div></div><div class="restnt-detail-wrap"><div analytics-action="RestaurantCardClick" analytics-label="4471_Cafe Noir" class="restaurant-info-section restnt-detail" data-link="/bangalore/cafe-noir-vittal-mallya-road-central-bangalore-4471" data-w-onclick="cardClickHandler|w1-restarant"><div class="restnt-rating-widget pull-right text-right"><div class="restnt-rating rating-4 hide">4.3</div><div class="rating-txt hide">232 votes</div></div><div class="restnt-info cursor" data-gatype="RestaurantNameClick"><a analytics-action="RestaurantCardClick" analytics-label="4471_Cafe Noir" class="restnt-name ellipsis" data-w-onclick="sendAnalyticsCommon|w1-restarant" href="/bangalore/cafe-noir-vittal-mallya-road-central-bangalore-4471">Cafe Noir</a><div class="restnt-loc ellipsis" data-w-onclick="stopClickPropagation|w1-restarant"><a href="/bangalore-restaurants/ub-city-landmark">UB City,</a><a data-name="Vittal Mallya Road" data-type="LocalityClick" href="/bangalore-restaurants/central-bangalore/vittal-mallya-road">Vittal Mallya Road</a>, <a data-name="Central Bangalore" data-type="AreaClick" href="/bangalore-restaurants/central-bangalore">Central Bangalore</a></div></div><div class="detail-info"><ul><li><span class="double-line-ellipsis"><span>₹ 1,700 for 2 (approx)</span><span> | </span><a data-w-onclick="stopClickPropagation|w1-restarant" href="/bangalore-restaurants/continental-cuisine">Continental</a><span>, </span><a data-w-onclick="stopClickPropagation|w1-restarant" href="/bangalore-restaurants/french-cuisine">French</a><span>, </span><a data-w-onclick="stopClickPropagation|w1-restarant" href="/bangalore-restaurants/european-cuisine">European</a><span>, </span><a data-w-onclick="stopClickPropagation|w1-restarant" href="/bangalore-restaurants/health-food-cuisine">Health Food</a><span>, </span><a data-w-onclick="stopClickPropagation|w1-restarant" href="/bangalore-restaurants/beverages-cuisine">Beverages</a></span></li><li class="ellipsis"></li></ul></div><div class="add-new-section" style="white-space: nowrap; overflow-x: auto;"><a analytics-action="RestTagClick" analytics-label="Dineout Pay" class="btn pay cursor" data-link="/dineout-pay/how-it-works" data-w-onclick="sendAnalyticsCommon|w1-restarant" href="/dineout-pay/how-it-works" rel="noopener" style="color:#F67373;background:#FFF4F4" target="_blank">Dineout Pay<img class="lazy-load-img" data-src="https://im1.dineout.co.in/images/uploads/misc/2019/Jan/17/information.png"/></a></div></div></div></div></div><div class="restnt-card restaurant"><div class="restnt-main-wrap clearfix"><div class="img-wrap"><div analytics-action="RestaurantImageClick" analytics-label="64100_21st Amendment Gastrobar" class="img cursor" data-link="/bangalore/21st-amendment-gastrobar-indiranagar-east-bangalore-64100" data-w-onclick="cardClickHandler|w1-restarant"><img alt="21st Amendment Gastrobar" class="lazy-load-img no-img" data-gatype="RestaurantImageClick" data-src="https://im1.dineout.co.in/images/uploads/restaurant/sharpen/6/s/t/p64100-15789184475e1c622faf327.jpg?tr=tr:n-medium" data-url="/bangalore/21st-amendment-gastrobar-indiranagar-east-bangalore-64100" data-w-onclick="cardClickHandler"/></div><div class="restnt-rating rating-4">4.1</div></div><div class="restnt-detail-wrap"><div analytics-action="RestaurantCardClick" analytics-label="64100_21st Amendment Gastrobar" class="restaurant-info-section restnt-detail" data-link="/bangalore/21st-amendment-gastrobar-indiranagar-east-bangalore-64100" data-w-onclick="cardClickHandler|w1-restarant"><div class="restnt-rating-widget pull-right text-right"><div class="restnt-rating rating-4 hide">4.3</div><div class="rating-txt hide">232 votes</div></div><div class="restnt-info cursor" data-gatype="RestaurantNameClick"><a analytics-action="RestaurantCardClick" analytics-label="64100_21st Amendment Gastrobar" class="restnt-name ellipsis" data-w-onclick="sendAnalyticsCommon|w1-restarant" href="/bangalore/21st-amendment-gastrobar-indiranagar-east-bangalore-64100">21st Amendment Gastrobar</a><div class="restnt-loc ellipsis" data-w-onclick="stopClickPropagation|w1-restarant"><a data-name="Indiranagar" data-type="LocalityClick" href="/bangalore-restaurants/east-bangalore/indiranagar">Indiranagar</a>, <a data-name="East Bangalore" data-type="AreaClick" href="/bangalore-restaurants/east-bangalore">East Bangalore</a></div></div><div class="detail-info"><ul><li><span class="double-line-ellipsis"><span>₹ 1,500 for 2 (approx)</span><span> | </span><a data-w-onclick="stopClickPropagation|w1-restarant" href="/bangalore-restaurants/north-indian-cuisine">North Indian</a><span>, </span><a data-w-onclick="stopClickPropagation|w1-restarant" href="/bangalore-restaurants/continental-cuisine">Continental</a><span>, </span><a data-w-onclick="stopClickPropagation|w1-restarant" href="/bangalore-restaurants/chinese-cuisine">Chinese</a><span>, </span><a data-w-onclick="stopClickPropagation|w1-restarant" href="/bangalore-restaurants/fast-food-cuisine">Fast Food</a></span></li><li class="ellipsis"></li></ul></div><div class="add-new-section" style="white-space: nowrap; overflow-x: auto;"><a analytics-action="RestTagClick" analytics-label="Dineout Pay" class="btn pay cursor" data-link="/dineout-pay/instant-discount/how-it-works" data-w-onclick="sendAnalyticsCommon|w1-restarant" href="/dineout-pay/instant-discount/how-it-works" rel="noopener" style="color:#F67373;background:#FFF4F4" target="_blank">Dineout Pay<img class="lazy-load-img" data-src="https://im1.dineout.co.in/images/uploads/misc/2019/Jan/17/information.png"/></a></div></div></div></div></div><div class="restnt-card restaurant"><div class="restnt-main-wrap clearfix"><div class="img-wrap"><div analytics-action="RestaurantImageClick" analytics-label="1168_The Biere Club" class="img cursor" data-link="/bangalore/the-biere-club-vittal-mallya-road-central-bangalore-1168" data-w-onclick="cardClickHandler|w1-restarant"><img alt="The Biere Club" class="lazy-load-img no-img" data-gatype="RestaurantImageClick" data-src="https://im1.dineout.co.in/images/uploads/restaurant/sharpen/1/i/k/p1168-15992017925f51e2003d1f0.jpg?tr=tr:n-medium" data-url="/bangalore/the-biere-club-vittal-mallya-road-central-bangalore-1168" data-w-onclick="cardClickHandler"/></div><div class="restnt-rating rating-4">4.3</div></div><div class="restnt-detail-wrap"><div analytics-action="RestaurantCardClick" analytics-label="1168_The Biere Club" class="restaurant-info-section restnt-detail" data-link="/bangalore/the-biere-club-vittal-mallya-road-central-bangalore-1168" data-w-onclick="cardClickHandler|w1-restarant"><div class="restnt-rating-widget pull-right text-right"><div class="restnt-rating rating-4 hide">4.3</div><div class="rating-txt hide">232 votes</div></div><div class="restnt-info cursor" data-gatype="RestaurantNameClick"><a analytics-action="RestaurantCardClick" analytics-label="1168_The Biere Club" class="restnt-name ellipsis" data-w-onclick="sendAnalyticsCommon|w1-restarant" href="/bangalore/the-biere-club-vittal-mallya-road-central-bangalore-1168">The Biere Club</a><div class="restnt-loc ellipsis" data-w-onclick="stopClickPropagation|w1-restarant"><a data-name="Vittal Mallya Road" data-type="LocalityClick" href="/bangalore-restaurants/central-bangalore/vittal-mallya-road">Vittal Mallya Road</a>, <a data-name="Central Bangalore" data-type="AreaClick" href="/bangalore-restaurants/central-bangalore">Central Bangalore</a></div></div><div class="detail-info"><ul><li><span class="double-line-ellipsis"><span>₹ 2,000 for 2 (approx)</span><span> | </span><a data-w-onclick="stopClickPropagation|w1-restarant" href="/bangalore-restaurants/finger-food-cuisine">Finger Food</a></span></li><li class="ellipsis"></li></ul></div><div class="add-new-section" style="white-space: nowrap; overflow-x: auto;"><a analytics-action="RestTagClick" analytics-label="Dineout Pay" class="btn pay cursor" data-link="/dineout-pay/instant-discount/how-it-works" data-w-onclick="sendAnalyticsCommon|w1-restarant" href="/dineout-pay/instant-discount/how-it-works" rel="noopener" style="color:#F67373;background:#FFF4F4" target="_blank">Dineout Pay<img class="lazy-load-img" data-src="https://im1.dineout.co.in/images/uploads/misc/2019/Jan/17/information.png"/></a></div></div></div></div></div><div class="restnt-card restaurant"><div class="restnt-main-wrap clearfix"><div class="img-wrap"><div analytics-action="RestaurantImageClick" analytics-label="71751_Raahi" class="img cursor" data-link="/bangalore/raahi-st-marks-road-central-bangalore-71751" data-w-onclick="cardClickHandler|w1-restarant"><img alt="Raahi" class="lazy-load-img no-img" data-gatype="RestaurantImageClick" data-src="https://im1.dineout.co.in/images/uploads/restaurant/sharpen/7/q/k/p71751-15743140755dd6205b7b8fa.jpg?tr=tr:n-medium" data-url="/bangalore/raahi-st-marks-road-central-bangalore-71751" data-w-onclick="cardClickHandler"/><div class="persuassion" style="background:#EAF4FF"><img class="persuassion-img lazy-load-img" data-src="https://im1.dineout.co.in/images/uploads/misc/2018/Apr/23/popular.png"/><span style="color:#57aff2">Popular for food</span></div></div><div class="restnt-rating rating-4">4</div></div><div class="restnt-detail-wrap"><div analytics-action="RestaurantCardClick" analytics-label="71751_Raahi" class="restaurant-info-section restnt-detail" data-link="/bangalore/raahi-st-marks-road-central-bangalore-71751" data-w-onclick="cardClickHandler|w1-restarant"><div class="restnt-rating-widget pull-right text-right"><div class="restnt-rating rating-4 hide">4.3</div><div class="rating-txt hide">232 votes</div></div><div class="restnt-info cursor" data-gatype="RestaurantNameClick"><a analytics-action="RestaurantCardClick" analytics-label="71751_Raahi" class="restnt-name ellipsis" data-w-onclick="sendAnalyticsCommon|w1-restarant" href="/bangalore/raahi-st-marks-road-central-bangalore-71751">Raahi</a><div class="restnt-loc ellipsis" data-w-onclick="stopClickPropagation|w1-restarant"><a data-name="St. Marks Road" data-type="LocalityClick" href="/bangalore-restaurants/central-bangalore/st-marks-road">St. Marks Road</a>, <a data-name="Central Bangalore" data-type="AreaClick" href="/bangalore-restaurants/central-bangalore">Central Bangalore</a></div></div><div class="detail-info"><ul><li><span class="double-line-ellipsis"><span>₹ 1,900 for 2 (approx)</span><span> | </span><a data-w-onclick="stopClickPropagation|w1-restarant" href="/bangalore-restaurants/fusion-cuisine">Fusion</a></span></li><li class="ellipsis"></li></ul></div><div class="add-new-section" style="white-space: nowrap; overflow-x: auto;"><a analytics-action="RestTagClick" analytics-label="Dineout Pay" class="btn pay cursor" data-link="/dineout-pay/how-it-works" data-w-onclick="sendAnalyticsCommon|w1-restarant" href="/dineout-pay/how-it-works" rel="noopener" style="color:#F67373;background:#FFF4F4" target="_blank">Dineout Pay<img class="lazy-load-img" data-src="https://im1.dineout.co.in/images/uploads/misc/2019/Jan/17/information.png"/></a></div></div></div></div></div><div class="restnt-card restaurant"><div class="restnt-main-wrap clearfix"><div class="img-wrap"><div analytics-action="RestaurantImageClick" analytics-label="13467_Spice Terrace" class="img cursor" data-link="/bangalore/spice-terrace-vittal-mallya-road-central-bangalore-13467" data-w-onclick="cardClickHandler|w1-restarant"><img alt="Spice Terrace" class="lazy-load-img no-img" data-gatype="RestaurantImageClick" data-src="https://im1.dineout.co.in/images/uploads/restaurant/sharpen/1/m/n/p13467-15646445765d4294e08b5cc.jpg?tr=tr:n-medium" data-url="/bangalore/spice-terrace-vittal-mallya-road-central-bangalore-13467" data-w-onclick="cardClickHandler"/></div><div class="restnt-rating rating-4">4.2</div></div><div class="restnt-detail-wrap"><div analytics-action="RestaurantCardClick" analytics-label="13467_Spice Terrace" class="restaurant-info-section restnt-detail" data-link="/bangalore/spice-terrace-vittal-mallya-road-central-bangalore-13467" data-w-onclick="cardClickHandler|w1-restarant"><div class="restnt-rating-widget pull-right text-right"><div class="restnt-rating rating-4 hide">4.3</div><div class="rating-txt hide">232 votes</div></div><div class="restnt-info cursor" data-gatype="RestaurantNameClick"><a analytics-action="RestaurantCardClick" analytics-label="13467_Spice Terrace" class="restnt-name ellipsis" data-w-onclick="sendAnalyticsCommon|w1-restarant" href="/bangalore/spice-terrace-vittal-mallya-road-central-bangalore-13467">Spice Terrace</a><div class="restnt-loc ellipsis" data-w-onclick="stopClickPropagation|w1-restarant"><a href="/bangalore-restaurants/jw-marriott-hotel-landmark">JW Marriott Hotel,</a><a data-name="Vittal Mallya Road" data-type="LocalityClick" href="/bangalore-restaurants/central-bangalore/vittal-mallya-road">Vittal Mallya Road</a>, <a data-name="Central Bangalore" data-type="AreaClick" href="/bangalore-restaurants/central-bangalore">Central Bangalore</a></div></div><div class="detail-info"><ul><li><span class="double-line-ellipsis"><span>₹ 3,900 for 2 (approx)</span><span> | </span><a data-w-onclick="stopClickPropagation|w1-restarant" href="/bangalore-restaurants/north-indian-cuisine">North Indian</a><span>, </span><a data-w-onclick="stopClickPropagation|w1-restarant" href="/bangalore-restaurants/mughlai-cuisine">Mughlai</a></span></li><li class="ellipsis"></li></ul></div><div class="add-new-section" style="white-space: nowrap; overflow-x: auto;"><a analytics-action="RestTagClick" analytics-label="Dineout Pay" class="btn pay cursor" data-link="/dineout-pay/instant-discount/how-it-works" data-w-onclick="sendAnalyticsCommon|w1-restarant" href="/dineout-pay/instant-discount/how-it-works" rel="noopener" style="color:#F67373;background:#FFF4F4" target="_blank">Dineout Pay<img class="lazy-load-img" data-src="https://im1.dineout.co.in/images/uploads/misc/2019/Jan/17/information.png"/></a></div></div></div></div></div><div class="restnt-card restaurant"><div class="restnt-main-wrap clearfix"><div class="img-wrap"><div analytics-action="RestaurantImageClick" analytics-label="50979_Stories Brewery and Kitchen" class="img cursor" data-link="/bangalore/stories-brewery-and-kitchen-btm-layout-south-bangalore-50979" data-w-onclick="cardClickHandler|w1-restarant"><img alt="Stories Brewery and Kitchen" class="lazy-load-img no-img" data-gatype="RestaurantImageClick" data-src="https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/m/v/p50979-15681917225d78b4eade641.jpg?tr=tr:n-medium" data-url="/bangalore/stories-brewery-and-kitchen-btm-layout-south-bangalore-50979" data-w-onclick="cardClickHandler"/></div><div class="restnt-rating rating-4">4.3</div></div><div class="restnt-detail-wrap"><div analytics-action="RestaurantCardClick" analytics-label="50979_Stories Brewery and Kitchen" class="restaurant-info-section restnt-detail" data-link="/bangalore/stories-brewery-and-kitchen-btm-layout-south-bangalore-50979" data-w-onclick="cardClickHandler|w1-restarant"><div class="restnt-rating-widget pull-right text-right"><div class="restnt-rating rating-4 hide">4.3</div><div class="rating-txt hide">232 votes</div></div><div class="restnt-info cursor" data-gatype="RestaurantNameClick"><a analytics-action="RestaurantCardClick" analytics-label="50979_Stories Brewery and Kitchen" class="restnt-name ellipsis" data-w-onclick="sendAnalyticsCommon|w1-restarant" href="/bangalore/stories-brewery-and-kitchen-btm-layout-south-bangalore-50979">Stories Brewery and Kitchen</a><div class="restnt-loc ellipsis" data-w-onclick="stopClickPropagation|w1-restarant"><a data-name="BTM Layout" data-type="LocalityClick" href="/bangalore-restaurants/south-bangalore/btm-layout">BTM Layout</a>, <a data-name="South Bangalore" data-type="AreaClick" href="/bangalore-restaurants/south-bangalore">South Bangalore</a></div></div><div class="detail-info"><ul><li><span class="double-line-ellipsis"><span>₹ 2,000 for 2 (approx)</span><span> | </span><a data-w-onclick="stopClickPropagation|w1-restarant" href="/bangalore-restaurants/continental-cuisine">Continental</a><span>, </span><a data-w-onclick="stopClickPropagation|w1-restarant" href="/bangalore-restaurants/italian-cuisine">Italian</a><span>, </span><a data-w-onclick="stopClickPropagation|w1-restarant" href="/bangalore-restaurants/chinese-cuisine">Chinese</a><span>, </span><a data-w-onclick="stopClickPropagation|w1-restarant" href="/bangalore-restaurants/north-indian-cuisine">North Indian</a></span></li><li class="ellipsis"></li></ul></div><div class="add-new-section" style="white-space: nowrap; overflow-x: auto;"><a analytics-action="RestTagClick" analytics-label="Dineout Pay" class="btn pay cursor" data-link="/dineout-pay/instant-discount/how-it-works" data-w-onclick="sendAnalyticsCommon|w1-restarant" href="/dineout-pay/instant-discount/how-it-works" rel="noopener" style="color:#F67373;background:#FFF4F4" target="_blank">Dineout Pay<img class="lazy-load-img" data-src="https://im1.dineout.co.in/images/uploads/misc/2019/Jan/17/information.png"/></a></div></div></div></div></div><div class="restnt-card restaurant"><div class="restnt-main-wrap clearfix"><div class="img-wrap"><div analytics-action="RestaurantImageClick" analytics-label="24670_Farzi Cafe" class="img cursor" data-link="/bangalore/farzi-cafe-vittal-mallya-road-central-bangalore-24670" data-w-onclick="cardClickHandler|w1-restarant"><img alt="Farzi Cafe" class="lazy-load-img no-img" data-gatype="RestaurantImageClick" data-src="https://im1.dineout.co.in/images/uploads/restaurant/sharpen/2/b/h/p24670-164386528961fb64c942ac7.jpg?tr=tr:n-medium" data-url="/bangalore/farzi-cafe-vittal-mallya-road-central-bangalore-24670" data-w-onclick="cardClickHandler"/></div><div class="restnt-rating rating-4">4.3</div></div><div class="restnt-detail-wrap"><div analytics-action="RestaurantCardClick" analytics-label="24670_Farzi Cafe" class="restaurant-info-section restnt-detail" data-link="/bangalore/farzi-cafe-vittal-mallya-road-central-bangalore-24670" data-w-onclick="cardClickHandler|w1-restarant"><div class="restnt-rating-widget pull-right text-right"><div class="restnt-rating rating-4 hide">4.3</div><div class="rating-txt hide">232 votes</div></div><div class="restnt-info cursor" data-gatype="RestaurantNameClick"><a analytics-action="RestaurantCardClick" analytics-label="24670_Farzi Cafe" class="restnt-name ellipsis" data-w-onclick="sendAnalyticsCommon|w1-restarant" href="/bangalore/farzi-cafe-vittal-mallya-road-central-bangalore-24670">Farzi Cafe</a><div class="restnt-loc ellipsis" data-w-onclick="stopClickPropagation|w1-restarant"><a href="/bangalore-restaurants/ub-city-landmark">UB City,</a><a data-name="Vittal Mallya Road" data-type="LocalityClick" href="/bangalore-restaurants/central-bangalore/vittal-mallya-road">Vittal Mallya Road</a>, <a data-name="Central Bangalore" data-type="AreaClick" href="/bangalore-restaurants/central-bangalore">Central Bangalore</a></div></div><div class="detail-info"><ul><li><span class="double-line-ellipsis"><span>₹ 1,600 for 2 (approx)</span><span> | </span><a data-w-onclick="stopClickPropagation|w1-restarant" href="/bangalore-restaurants/modern-indian-cuisine">Modern Indian</a></span></li><li class="ellipsis"></li></ul></div><div class="add-new-section" style="white-space: nowrap; overflow-x: auto;"><a analytics-action="RestTagClick" analytics-label="Dineout Pay" class="btn pay cursor" data-link="/dineout-pay/how-it-works" data-w-onclick="sendAnalyticsCommon|w1-restarant" href="/dineout-pay/how-it-works" rel="noopener" style="color:#F67373;background:#FFF4F4" target="_blank">Dineout Pay<img class="lazy-load-img" data-src="https://im1.dineout.co.in/images/uploads/misc/2019/Jan/17/information.png"/></a></div></div></div></div></div><div class="restnt-card restaurant"><div class="restnt-main-wrap clearfix"><div class="img-wrap"><div analytics-action="RestaurantImageClick" analytics-label="19591_SodaBottleOpenerWala" class="img cursor" data-link="/bangalore/sodabottleopenerwala-lavelle-road-central-bangalore-19591" data-w-onclick="cardClickHandler|w1-restarant"><img alt="SodaBottleOpenerWala" class="lazy-load-img no-img" data-gatype="RestaurantImageClick" data-src="https://im1.dineout.co.in/images/uploads/restaurant/sharpen/3/q/j/p3737-1481539616584e80200c0e1.jpg?tr=tr:n-medium" data-url="/bangalore/sodabottleopenerwala-lavelle-road-central-bangalore-19591" data-w-onclick="cardClickHandler"/></div><div class="restnt-rating rating-4">4.3</div></div><div class="restnt-detail-wrap"><div analytics-action="RestaurantCardClick" analytics-label="19591_SodaBottleOpenerWala" class="restaurant-info-section restnt-detail" data-link="/bangalore/sodabottleopenerwala-lavelle-road-central-bangalore-19591" data-w-onclick="cardClickHandler|w1-restarant"><div class="restnt-rating-widget pull-right text-right"><div class="restnt-rating rating-4 hide">4.3</div><div class="rating-txt hide">232 votes</div></div><div class="restnt-info cursor" data-gatype="RestaurantNameClick"><a analytics-action="RestaurantCardClick" analytics-label="19591_SodaBottleOpenerWala" class="restnt-name ellipsis" data-w-onclick="sendAnalyticsCommon|w1-restarant" href="/bangalore/sodabottleopenerwala-lavelle-road-central-bangalore-19591">SodaBottleOpenerWala</a><div class="restnt-loc ellipsis" data-w-onclick="stopClickPropagation|w1-restarant"><a data-name="Lavelle Road" data-type="LocalityClick" href="/bangalore-restaurants/central-bangalore/lavelle-road">Lavelle Road</a>, <a data-name="Central Bangalore" data-type="AreaClick" href="/bangalore-restaurants/central-bangalore">Central Bangalore</a></div></div><div class="detail-info"><ul><li><span class="double-line-ellipsis"><span>₹ 1,800 for 2 (approx)</span><span> | </span><a data-w-onclick="stopClickPropagation|w1-restarant" href="/bangalore-restaurants/parsi-cuisine">Parsi</a><span>, </span><a data-w-onclick="stopClickPropagation|w1-restarant" href="/bangalore-restaurants/iranian-cuisine">Iranian</a></span></li><li class="ellipsis"></li></ul></div><div class="add-new-section" style="white-space: nowrap; overflow-x: auto;"><a analytics-action="RestTagClick" analytics-label="Dineout Pay" class="btn pay cursor" data-link="/dineout-pay/instant-discount/how-it-works" data-w-onclick="sendAnalyticsCommon|w1-restarant" href="/dineout-pay/instant-discount/how-it-works" rel="noopener" style="color:#F67373;background:#FFF4F4" target="_blank">Dineout Pay<img class="lazy-load-img" data-src="https://im1.dineout.co.in/images/uploads/misc/2019/Jan/17/information.png"/></a></div></div></div></div></div><div class="restnt-card restaurant"><div class="restnt-main-wrap clearfix"><div class="img-wrap"><div analytics-action="RestaurantImageClick" analytics-label="1352_Shiro" class="img cursor" data-link="/bangalore/shiro-vittal-mallya-road-central-bangalore-1352" data-w-onclick="cardClickHandler|w1-restarant"><img alt="Shiro" class="lazy-load-img no-img" data-gatype="RestaurantImageClick" data-src="https://im1.dineout.co.in/images/uploads/restaurant/sharpen/1/z/p/p1352-162632608060efc440c2303.jpg?tr=tr:n-medium" data-url="/bangalore/shiro-vittal-mallya-road-central-bangalore-1352" data-w-onclick="cardClickHandler"/></div><div class="restnt-rating rating-4">4.3</div></div><div class="restnt-detail-wrap"><div analytics-action="RestaurantCardClick" analytics-label="1352_Shiro" class="restaurant-info-section restnt-detail" data-link="/bangalore/shiro-vittal-mallya-road-central-bangalore-1352" data-w-onclick="cardClickHandler|w1-restarant"><div class="restnt-rating-widget pull-right text-right"><div class="restnt-rating rating-4 hide">4.3</div><div class="rating-txt hide">232 votes</div></div><div class="restnt-info cursor" data-gatype="RestaurantNameClick"><a analytics-action="RestaurantCardClick" analytics-label="1352_Shiro" class="restnt-name ellipsis" data-w-onclick="sendAnalyticsCommon|w1-restarant" href="/bangalore/shiro-vittal-mallya-road-central-bangalore-1352">Shiro</a><div class="restnt-loc ellipsis" data-w-onclick="stopClickPropagation|w1-restarant"><a href="/bangalore-restaurants/ub-city-landmark">UB City,</a><a data-name="Vittal Mallya Road" data-type="LocalityClick" href="/bangalore-restaurants/central-bangalore/vittal-mallya-road">Vittal Mallya Road</a>, <a data-name="Central Bangalore" data-type="AreaClick" href="/bangalore-restaurants/central-bangalore">Central Bangalore</a></div></div><div class="detail-info"><ul><li><span class="double-line-ellipsis"><span>₹ 3,000 for 2 (approx)</span><span> | </span><a data-w-onclick="stopClickPropagation|w1-restarant" href="/bangalore-restaurants/japanese-cuisine">Japanese</a><span>, </span><a data-w-onclick="stopClickPropagation|w1-restarant" href="/bangalore-restaurants/asian-cuisine">Asian</a></span></li><li class="ellipsis"></li></ul></div><div class="add-new-section" style="white-space: nowrap; overflow-x: auto;"><a analytics-action="RestTagClick" analytics-label="Dineout Pay" class="btn pay cursor" data-link="/dineout-pay/instant-discount/how-it-works" data-w-onclick="sendAnalyticsCommon|w1-restarant" href="/dineout-pay/instant-discount/how-it-works" rel="noopener" style="color:#F67373;background:#FFF4F4" target="_blank">Dineout Pay<img class="lazy-load-img" data-src="https://im1.dineout.co.in/images/uploads/misc/2019/Jan/17/information.png"/></a></div></div></div></div></div><div class="restnt-card restaurant"><div class="restnt-main-wrap clearfix"><div class="img-wrap"><div analytics-action="RestaurantImageClick" analytics-label="35741_Sriracha" class="img cursor" data-link="/bangalore/sriracha-vittal-mallya-road-central-bangalore-35741" data-w-onclick="cardClickHandler|w1-restarant"><img alt="Sriracha" class="lazy-load-img no-img" data-gatype="RestaurantImageClick" data-src="https://im1.dineout.co.in/images/uploads/restaurant/sharpen/3/h/g/p35741-15517711065c7e25e2634b0.jpg?tr=tr:n-medium" data-url="/bangalore/sriracha-vittal-mallya-road-central-bangalore-35741" data-w-onclick="cardClickHandler"/></div><div class="restnt-rating rating-4">4.4</div></div><div class="restnt-detail-wrap"><div analytics-action="RestaurantCardClick" analytics-label="35741_Sriracha" class="restaurant-info-section restnt-detail" data-link="/bangalore/sriracha-vittal-mallya-road-central-bangalore-35741" data-w-onclick="cardClickHandler|w1-restarant"><div class="restnt-rating-widget pull-right text-right"><div class="restnt-rating rating-4 hide">4.3</div><div class="rating-txt hide">232 votes</div></div><div class="restnt-info cursor" data-gatype="RestaurantNameClick"><a analytics-action="RestaurantCardClick" analytics-label="35741_Sriracha" class="restnt-name ellipsis" data-w-onclick="sendAnalyticsCommon|w1-restarant" href="/bangalore/sriracha-vittal-mallya-road-central-bangalore-35741">Sriracha</a><div class="restnt-loc ellipsis" data-w-onclick="stopClickPropagation|w1-restarant"><a href="/bangalore-restaurants/ub-city-landmark">UB City,</a><a data-name="Vittal Mallya Road" data-type="LocalityClick" href="/bangalore-restaurants/central-bangalore/vittal-mallya-road">Vittal Mallya Road</a>, <a data-name="Central Bangalore" data-type="AreaClick" href="/bangalore-restaurants/central-bangalore">Central Bangalore</a></div></div><div class="detail-info"><ul><li><span class="double-line-ellipsis"><span>₹ 1,600 for 2 (approx)</span><span> | </span><a data-w-onclick="stopClickPropagation|w1-restarant" href="/bangalore-restaurants/asian-cuisine">Asian</a></span></li><li class="ellipsis"></li></ul></div><div class="add-new-section" style="white-space: nowrap; overflow-x: auto;"><a analytics-action="RestTagClick" analytics-label="Dineout Pay" class="btn pay cursor" data-link="/dineout-pay/instant-discount/how-it-works" data-w-onclick="sendAnalyticsCommon|w1-restarant" href="/dineout-pay/instant-discount/how-it-works" rel="noopener" style="color:#F67373;background:#FFF4F4" target="_blank">Dineout Pay<img class="lazy-load-img" data-src="https://im1.dineout.co.in/images/uploads/misc/2019/Jan/17/information.png"/></a></div></div></div></div></div><div class="restnt-card restaurant"><div class="restnt-main-wrap clearfix"><div class="img-wrap"><div analytics-action="RestaurantImageClick" analytics-label="23017_Hammered" class="img cursor" data-link="/bangalore/hammered-cunningham-road-central-bangalore-23017" data-w-onclick="cardClickHandler|w1-restarant"><img alt="Hammered" class="lazy-load-img no-img" data-gatype="RestaurantImageClick" data-src="https://im1.dineout.co.in/images/uploads/restaurant/sharpen/2/i/a/p23017-16019826555f7c50bfe3d65.jpg?tr=tr:n-medium" data-url="/bangalore/hammered-cunningham-road-central-bangalore-23017" data-w-onclick="cardClickHandler"/></div><div class="restnt-rating rating-4">4.3</div></div><div class="restnt-detail-wrap"><div analytics-action="RestaurantCardClick" analytics-label="23017_Hammered" class="restaurant-info-section restnt-detail" data-link="/bangalore/hammered-cunningham-road-central-bangalore-23017" data-w-onclick="cardClickHandler|w1-restarant"><div class="restnt-rating-widget pull-right text-right"><div class="restnt-rating rating-4 hide">4.3</div><div class="rating-txt hide">232 votes</div></div><div class="restnt-info cursor" data-gatype="RestaurantNameClick"><a analytics-action="RestaurantCardClick" analytics-label="23017_Hammered" class="restnt-name ellipsis" data-w-onclick="sendAnalyticsCommon|w1-restarant" href="/bangalore/hammered-cunningham-road-central-bangalore-23017">Hammered</a><div class="restnt-loc ellipsis" data-w-onclick="stopClickPropagation|w1-restarant"><a data-name="Cunningham Road" data-type="LocalityClick" href="/bangalore-restaurants/central-bangalore/cunningham-road">Cunningham Road</a>, <a data-name="Central Bangalore" data-type="AreaClick" href="/bangalore-restaurants/central-bangalore">Central Bangalore</a></div></div><div class="detail-info"><ul><li><span class="double-line-ellipsis"><span>₹ 2,000 for 2 (approx)</span><span> | </span><a data-w-onclick="stopClickPropagation|w1-restarant" href="/bangalore-restaurants/finger-food-cuisine">Finger Food</a><span>, </span><a data-w-onclick="stopClickPropagation|w1-restarant" href="/bangalore-restaurants/italian-cuisine">Italian</a><span>, </span><a data-w-onclick="stopClickPropagation|w1-restarant" href="/bangalore-restaurants/north-indian-cuisine">North Indian</a></span></li><li class="ellipsis"></li></ul></div><div class="add-new-section" style="white-space: nowrap; overflow-x: auto;"><a analytics-action="RestTagClick" analytics-label="Dineout Pay" class="btn pay cursor" data-link="/dineout-pay/instant-discount/how-it-works" data-w-onclick="sendAnalyticsCommon|w1-restarant" href="/dineout-pay/instant-discount/how-it-works" rel="noopener" style="color:#F67373;background:#FFF4F4" target="_blank">Dineout Pay<img class="lazy-load-img" data-src="https://im1.dineout.co.in/images/uploads/misc/2019/Jan/17/information.png"/></a></div></div></div></div></div><div class="restnt-card restaurant"><div class="restnt-main-wrap clearfix"><div class="img-wrap"><div analytics-action="RestaurantImageClick" analytics-label="89066_Coastal Machali Co" class="img cursor" data-link="/bangalore/coastal-machali-co-residency-road-central-bangalore-89066" data-w-onclick="cardClickHandler|w1-restarant"><img alt="Coastal Machali Co" class="lazy-load-img no-img" data-gatype="RestaurantImageClick" data-src="https://im1.dineout.co.in/images/uploads/restaurant/sharpen/8/d/x/p89066-1615294946604771e25bf3d.jpg?tr=tr:n-medium" data-url="/bangalore/coastal-machali-co-residency-road-central-bangalore-89066" data-w-onclick="cardClickHandler"/><div class="persuassion" style="background:#EAF4FF"><img class="persuassion-img lazy-load-img" data-src="https://im1.dineout.co.in/images/uploads/misc/2018/Apr/23/popular.png"/><span style="color:#57aff2">Popular for food</span></div></div><div class="restnt-rating rating-4">4.4</div></div><div class="restnt-detail-wrap"><div analytics-action="RestaurantCardClick" analytics-label="89066_Coastal Machali Co" class="restaurant-info-section restnt-detail" data-link="/bangalore/coastal-machali-co-residency-road-central-bangalore-89066" data-w-onclick="cardClickHandler|w1-restarant"><div class="restnt-rating-widget pull-right text-right"><div class="restnt-rating rating-4 hide">4.3</div><div class="rating-txt hide">232 votes</div></div><div class="restnt-info cursor" data-gatype="RestaurantNameClick"><a analytics-action="RestaurantCardClick" analytics-label="89066_Coastal Machali Co" class="restnt-name ellipsis" data-w-onclick="sendAnalyticsCommon|w1-restarant" href="/bangalore/coastal-machali-co-residency-road-central-bangalore-89066">Coastal Machali Co</a><div class="restnt-loc ellipsis" data-w-onclick="stopClickPropagation|w1-restarant"><a href="/bangalore-restaurants/cears-plaza-landmark">Cears Plaza,</a><a data-name="Residency Road" data-type="LocalityClick" href="/bangalore-restaurants/central-bangalore/residency-road">Residency Road</a>, <a data-name="Central Bangalore" data-type="AreaClick" href="/bangalore-restaurants/central-bangalore">Central Bangalore</a></div></div><div class="detail-info"><ul><li><span class="double-line-ellipsis"><span>₹ 1,300 for 2 (approx)</span><span> | </span><a data-w-onclick="stopClickPropagation|w1-restarant" href="/bangalore-restaurants/chinese-cuisine">Chinese</a><span>, </span><a data-w-onclick="stopClickPropagation|w1-restarant" href="/bangalore-restaurants/north-indian-cuisine">North Indian</a><span>, </span><a data-w-onclick="stopClickPropagation|w1-restarant" href="/bangalore-restaurants/south-indian-cuisine">South Indian</a><span>, </span><a data-w-onclick="stopClickPropagation|w1-restarant" href="/bangalore-restaurants/mangalorean-cuisine">Mangalorean</a><span>, </span><a data-w-onclick="stopClickPropagation|w1-restarant" href="/bangalore-restaurants/asian-cuisine">Asian</a><span>, </span><a data-w-onclick="stopClickPropagation|w1-restarant" href="/bangalore-restaurants/seafood-cuisine">Seafood</a></span></li><li class="ellipsis"></li></ul></div><div class="add-new-section" style="white-space: nowrap; overflow-x: auto;"><a analytics-action="RestTagClick" analytics-label="Dineout Pay" class="btn pay cursor" data-link="/dineout-pay/how-it-works" data-w-onclick="sendAnalyticsCommon|w1-restarant" href="/dineout-pay/how-it-works" rel="noopener" style="color:#F67373;background:#FFF4F4" target="_blank">Dineout Pay<img class="lazy-load-img" data-src="https://im1.dineout.co.in/images/uploads/misc/2019/Jan/17/information.png"/></a></div></div></div></div></div></div><div class="listing-pagination" data-w-events="w1,click,paginationData" data-widget="/dineout.co.in$0.0.2/girf/components/listing-pagination/index" id="w1-pagination"><li class="disabled" data-w-onclick="prevPageSelection|w1-pagination"><a href="javascript:void();"><i class="do do-angle-left"></i> Previous</a></li><li class="active"><a data-pagenumber="1" data-w-onclick="paginationApplied|w1-pagination">1 </a></li><li><a data-pagenumber="2" data-w-onclick="paginationApplied|w1-pagination">2 </a></li><li><a data-pagenumber="3" data-w-onclick="paginationApplied|w1-pagination">3 </a></li><li><a data-pagenumber="4" data-w-onclick="paginationApplied|w1-pagination">4 </a></li><li><a data-pagenumber="5" data-w-onclick="paginationApplied|w1-pagination">5 </a></li><li><a data-pagenumber="6" data-w-onclick="paginationApplied|w1-pagination">6 </a></li><li><a data-pagenumber="7" data-w-onclick="paginationApplied|w1-pagination">7 </a></li><li><a data-pagenumber="8" data-w-onclick="paginationApplied|w1-pagination">8 </a></li><li><a data-pagenumber="9" data-w-onclick="paginationApplied|w1-pagination">9 </a></li><li><a data-pagenumber="10" data-w-onclick="paginationApplied|w1-pagination">10 </a></li><li data-w-onclick="next_pagination|w1-pagination">...</li><li data-w-onclick="nextPageSelection|w1-pagination"><a href="javascript:void();">Next <i class="do do-angle-right"></i></a></li></div></div></div></div></div></div><script type="application/javascript">(function(w,d,t,r,u){w[u]=w[u]||[];w[u].push({'projectId':'10000','properties':{'pixelId':'10033486'}});var s=d.createElement(t);s.src=r;s.async=true;s.onload=s.onreadystatechange=function(){var y,rs=this.readyState,c=w[u];if(rs&&rs!="complete"&&rs!="loaded"){return}try{y=YAHOO.ywa.I13N.fireBeacon;w[u]=[];w[u].push=function(p){y([p])};y(c)}catch(e){}};var scr=d.getElementsByTagName(t)[0],par=scr.parentNode;par.insertBefore(s,scr)})(window,document,"script","https://s.yimg.com/wi/ytc.js","dotq");</script></div></div></div><script>(function() {var t=window.$markoWidgetsState||(window.$markoWidgetsState={})
var $={"w0-w0-searchLocationList":{"popularLocations":[],"recentLocations":[]},"w0-w0":{"locationSuggestion":"Bangalore","locData":{"cityId":"2","gps_enabled":0}},"w0-searchResults":{"searchResults":[],"selectedCity":{"cityName":"Bangalore","cityId":"2"},"categoryGroup":"All"},"w0-desktopuser":{"isScbWebView":false,"pageToken":"O7e3PnnP-6AyYQ08AQAVhbOuazTX48X4z5cc"},"w0":{"suggestedSearch":[],"headerRecentLocations":[],"searchQuery":"","isCorporatePage":false,"carlsonCity":false,"websiteDomain":"https://www.dineout.co.in/","cityList":[{"c_id":"0","name":"Delhi","is_doplus_city":"1","latitude":"28.63117","longitude":"77.21943","suggestion":"Delhi","isDineoutCity":"1","isGourmetPassportCity":"1","gps_enabled":"0","elat":"28.63117","elng":"77.21943","d_latitude":"28.669392792882352","d_longitude":"77.09867342635883"},{"c_id":"1","name":"Mumbai","is_doplus_city":"1","latitude":"19.10904","longitude":"72.91962","suggestion":"Mumbai","isDineoutCity":"1","isGourmetPassportCity":"1","gps_enabled":"0","elat":"19.10904","elng":"72.91962","d_latitude":"19.108469","d_longitude":"72.867266"},{"c_id":"2","name":"Bangalore","is_doplus_city":"1","latitude":"12.971650","longitude":"77.594595","suggestion":"Bangalore","isDineoutCity":"1","isGourmetPassportCity":"1","gps_enabled":"0","elat":"12.971650","elng":"77.594595","d_latitude":"12.958731500000003","d_longitude":"77.65488919999999"},{"c_id":"3","name":"Chennai","is_doplus_city":"1","latitude":"13.04182","longitude":"80.22664","suggestion":"Chennai","isDineoutCity":"1","isGourmetPassportCity":"1","gps_enabled":"0","elat":"13.04182","elng":"80.22664","d_latitude":"12.985618937500004","d_longitude":"80.24356156249999"},{"c_id":"4","name":"Hyderabad","is_doplus_city":"1","latitude":"17.42685","longitude":"78.46601","suggestion":"Hyderabad","isDineoutCity":"1","isGourmetPassportCity":"1","gps_enabled":"0","elat":"17.42685","elng":"78.46601","d_latitude":"17.495256500000004","d_longitude":"78.32474400000001"},{"c_id":"5","name":"Pune","is_doplus_city":"1","latitude":"18.54550","longitude":"73.83958","suggestion":"Pune","isDineoutCity":"1","isGourmetPassportCity":"1","gps_enabled":"0","elat":"18.5316806261312","elng":"73.8121219133091","d_latitude":"18.456843","d_longitude":"73.909152"},{"c_id":"6","name":"Kolkata","is_doplus_city":"1","latitude":"22.57926","longitude":"88.37897","suggestion":"Kolkata","isDineoutCity":"1","isGourmetPassportCity":"1","gps_enabled":"0","elat":"22.57926","elng":"88.37897","d_latitude":"22.552502178571427","d_longitude":"88.35352755357142"},{"c_id":"7","name":"Ahmedabad","is_doplus_city":"1","latitude":"23.02493","longitude":"72.54435","suggestion":"Ahmedabad","isDineoutCity":"1","isGourmetPassportCity":"1","gps_enabled":"0","elat":"23.02493","elng":"72.54435","d_latitude":"23.038556397954544","d_longitude":"72.51136124295455"},{"c_id":"9","name":"Chandigarh","is_doplus_city":"1","latitude":"30.741468","longitude":"76.782967","suggestion":"Chandigarh","isDineoutCity":"1","isGourmetPassportCity":"1","gps_enabled":"0","elat":"30.741468","elng":"76.782967","d_latitude":"30.674864","d_longitude":"76.73573"},{"c_id":"8","name":"Goa","is_doplus_city":"1","latitude":"15.2993","longitude":"74.1240","suggestion":"Goa","isDineoutCity":"1","isGourmetPassportCity":"1","gps_enabled":"0","elat":"15.2993","elng":"74.1240","d_latitude":"15.56827122857143","d_longitude":"73.75953851428574"},{"c_id":"10","name":"Jaipur","is_doplus_city":"1","latitude":"26.9124","longitude":"75.7873","suggestion":"Jaipur","isDineoutCity":"1","isGourmetPassportCity":"1","gps_enabled":"0","elat":"26.9124","elng":"75.7873","d_latitude":"26.777040333333332","d_longitude":"75.841139"},{"c_id":"13","name":"Lucknow","is_doplus_city":"1","latitude":"26.8447","longitude":"80.9316045","isDineoutCity":"1","suggestion":"Lucknow","isGourmetPassportCity":"1","gps_enabled":"0","elat":"26.8447","elng":"80.9316045","d_latitude":"26.847185500000002","d_longitude":"80.9383255"},{"c_id":"11","name":"Indore","is_doplus_city":"1","latitude":"22.7213101","longitude":"75.7915405","isDineoutCity":"1","suggestion":"Indore","isGourmetPassportCity":"1","gps_enabled":"0","elat":"22.7213101","elng":"75.7915405","d_latitude":"22.746493","d_longitude":"75.877662"},{"c_id":"16","name":"Amritsar","is_doplus_city":"0","latitude":"","longitude":"","isDineoutCity":"0"},{"c_id":"33","name":"Udaipur","is_doplus_city":"1","latitude":"24.585445","longitude":"73.712479","suggestion":"Udaipur","isDineoutCity":"1","isGourmetPassportCity":"1","gps_enabled":"0","elat":"24.585445","elng":"73.712479"},{"c_id":"43","name":"Agra","is_doplus_city":"1","latitude":"27.173504","longitude":"77.991381","suggestion":"Agra","isDineoutCity":"1","isGourmetPassportCity":"1","gps_enabled":"0","elat":"27.173504","elng":"77.991381","d_latitude":"27.149991","d_longitude":"78.035422"},{"c_id":"63","name":"Vadodara","is_doplus_city":"1","latitude":"22.32103","longitude":"73.172398","suggestion":"Vadodara","isDineoutCity":"1","isGourmetPassportCity":"1","gps_enabled":"0","elat":"22.32103","elng":"73.172398","d_latitude":"22.0544","d_longitude":"73.1194"},{"c_id":"34","name":"Khajuraho","is_doplus_city":"0","latitude":"24.831845","longitude":"79.919855","suggestion":"","isDineoutCity":"0"},{"c_id":"35","name":"Kandla","is_doplus_city":"0","latitude":"23.008141","longitude":"70.187255","suggestion":"","isDineoutCity":"0"},{"c_id":"36","name":"Nagpur","is_doplus_city":"1","latitude":"21.1458","longitude":"79.088155","suggestion":"Nagpur","isDineoutCity":"1","isGourmetPassportCity":"1","gps_enabled":"0","elat":"21.1458","elng":"79.088155","d_latitude":"21.0936","d_longitude":"79.075722"},{"c_id":"55","name":"Kochi","is_doplus_city":"1","latitude":"9.999494","longitude":"76.289749","suggestion":"Kochi","isDineoutCity":"1","isGourmetPassportCity":"1","gps_enabled":"0","elat":"9.999494","elng":"76.289749","d_latitude":"10.333472","d_longitude":"76.319193"},{"c_id":"62","name":"Surat","is_doplus_city":"1","latitude":"21.1591425","longitude":"72.6822102","suggestion":"Surat","isDineoutCity":"1","isGourmetPassportCity":"1","gps_enabled":"0","elat":"21.1591425","elng":"72.6822102","d_latitude":"21.199129","d_longitude":"72.807745"},{"c_id":"15","name":"Ludhiana","is_doplus_city":"1","latitude":"30.9010","longitude":"75.8573","suggestion":"Ludhiana","isDineoutCity":"1","isGourmetPassportCity":"1","gps_enabled":"0","elat":"30.9010","elng":"75.8573","d_latitude":"30.877171","d_longitude":"75.788803"},{"c_id":"37","name":"Ranchi","is_doplus_city":"0","latitude":"23.3441","longitude":"85.309562","suggestion":"","isDineoutCity":"0"},{"c_id":"39","name":"Guwahati","is_doplus_city":"0","latitude":"26.144517","longitude":"91.736237","suggestion":"","isDineoutCity":"0"},{"c_id":"40","name":"Salem","is_doplus_city":"0","latitude":"44.942898","longitude":"-123.035096","suggestion":"","isDineoutCity":"0"},{"c_id":"41","name":"Raigad","is_doplus_city":"0","latitude":"18.734888","longitude":"73.096602","suggestion":"","isDineoutCity":"0"},{"c_id":"42","name":"Alibag","is_doplus_city":"0","latitude":"18.655394","longitude":"72.867082","suggestion":"","isDineoutCity":"0"}],"carlsonCityList":["Agra","Ahmedabad","Ajmer","Alibaug","Amritsar","Bangalore","Bhathinda","Bhiwadi","Chennai","Coimbatore","Delhi","Goa","Guwahati","Haridwar","Hyderabad","Indore","Jaipur","Jalandar","Jammu","Jodhpur","Kandla","Karjat","Katra","Khajuraho","Kochi","Kolkata","Ludhiana","Manipal","Meerut","Mumbai","Mussoorie","Mysore","Nagpur","Pune","Ranchi","Rudrapur","Salem","Shimla","Udaipur","Varanasi","Zirakpur"],"scbCityList":["Bangalore","Delhi","Kolkata","Mumbai"],"corporateConfig":false,"currentPageUrl":"https://www.dineout.co.in/bangalore-restaurants/welcome-back","autoSuggestData":{},"locSuggestion":"Bangalore","isCmhWebView":false,"isScbWebView":false,"whichCorporateSite":false,"categoryGroup":"All","isDPActiveForMicrosite":true,"pageToken":"O7e3PnnP-6AyYQ08AQAVhbOuazTX48X4z5cc"},"w1-filters-0":{"filters":[{"is_visible":true,"is_searchable":true,"type":"CHECKBOX","key":"cuisine","name":"Cuisines","arr":[{"name":"North Indian","count":593,"applied":0},{"name":"Chinese","count":432,"applied":0},{"name":"Fast Food","count":360,"applied":0},{"name":"Desserts","count":317,"applied":0},{"name":"Continental","count":293,"applied":0},{"name":"Beverages","count":174,"applied":0},{"name":"Italian","count":166,"applied":0},{"name":"Asian","count":134,"applied":0},{"name":"South Indian","count":101,"applied":0},{"name":"Finger Food","count":70,"applied":0},{"name":"Pizza","count":69,"applied":0},{"name":"Biryani","count":56,"applied":0},{"name":"Mughlai","count":52,"applied":0},{"name":"Thai","count":51,"applied":0},{"name":"Street Food","count":48,"applied":0},{"name":"Andhra","count":36,"applied":0},{"name":"Mexican","count":36,"applied":0},{"name":"Seafood","count":36,"applied":0},{"name":"Health Food","count":33,"applied":0},{"name":"American","count":32,"applied":0},{"name":"European","count":26,"applied":0},{"name":"Japanese","count":17,"applied":0},{"name":"Kerala","count":17,"applied":0},{"name":"Mangalorean","count":16,"applied":0},{"name":"Arabian","count":14,"applied":0},{"name":"Tex Mex","count":13,"applied":0},{"name":"Bengali","count":10,"applied":0},{"name":"Mediterranean","count":10,"applied":0},{"name":"Modern Indian","count":10,"applied":0},{"name":"Rajasthani","count":9,"applied":0},{"name":"Chettinad","count":7,"applied":0},{"name":"Sushi","count":7,"applied":0},{"name":"French","count":6,"applied":0},{"name":"Burger","count":5,"applied":0},{"name":"Tibetan","count":5,"applied":0},{"name":"Fusion","count":4,"applied":0},{"name":"Gujarati","count":4,"applied":0},{"name":"Hyderabadi","count":4,"applied":0},{"name":"Middle Eastern","count":4,"applied":0},{"name":"Turkish","count":4,"applied":0},{"name":"Goan","count":3,"applied":0},{"name":"Iranian","count":3,"applied":0},{"name":"Malaysian","count":3,"applied":0},{"name":"Tea","count":3,"applied":0},{"name":"Burmese","count":2,"applied":0},{"name":"Konkani","count":2,"applied":0},{"name":"Lebanese","count":2,"applied":0},{"name":"Maharashtrian","count":2,"applied":0},{"name":"Nepalese","count":2,"applied":0},{"name":"Assamese","count":1,"applied":0},{"name":"Awadhi","count":1,"applied":0},{"name":"Cantonese","count":1,"applied":0},{"name":"Korean","count":1,"applied":0},{"name":"Malvani","count":1,"applied":0},{"name":"North Eastern","count":1,"applied":0},{"name":"Parsi","count":1,"applied":0},{"name":"Sri Lankan","count":1,"applied":0},{"name":"Vietnamese","count":1,"applied":0}]},{"is_visible":true,"is_searchable":true,"type":"CHECKBOX","key":"tag","name":"Tags","arr":[{"name":"Casual Dining","count":607,"applied":0},{"name":"Best Family Dining","count":310,"applied":0},{"name":"Pure Veg","count":288,"applied":0},{"name":"Breakfast","count":263,"applied":0},{"name":"Best Pizza Places","count":252,"applied":0},{"name":"Best Pure Veg","count":243,"applied":0},{"name":"Raising the Bar","count":190,"applied":0},{"name":"Best Quick Bites","count":184,"applied":0},{"name":"Best Places to Drink","count":176,"applied":0},{"name":"Best Bars and Pubs","count":164,"applied":0},{"name":"Best Cafes","count":156,"applied":0},{"name":"Buffet","count":152,"applied":0},{"name":"Happy Hours","count":142,"applied":0},{"name":"Cafe","count":133,"applied":0},{"name":"Best Outdoor and Rooftop","count":130,"applied":0},{"name":"Nightlife","count":128,"applied":0},{"name":"Best Fine Dining","count":112,"applied":0},{"name":"Best of Food 2021","count":99,"applied":0},{"name":"Serves Breakfast","count":98,"applied":0},{"name":"Best All Day Dining","count":96,"applied":0},{"name":"Paypal","count":90,"applied":0},{"name":"Bottoms Up","count":87,"applied":0},{"name":"5 Star","count":73,"applied":0},{"name":"Handpicked Hotel","count":70,"applied":0},{"name":"Dessert Parlour","count":69,"applied":0},{"name":"Best of Drinks","count":61,"applied":0},{"name":"Best Budget Friendly Restaurants","count":56,"applied":0},{"name":"Brunch","count":53,"applied":0},{"name":"Valentines Special","count":47,"applied":0},{"name":"Bakery","count":42,"applied":0},{"name":"Food Court","count":41,"applied":0},{"name":"Best of Luxury Dining","count":40,"applied":0},{"name":"Movie Special","count":38,"applied":0},{"name":"Top Breweries","count":37,"applied":0},{"name":"Best Places to Eat","count":35,"applied":0},{"name":"Femtastic","count":33,"applied":0},{"name":"Serves Jain Food","count":33,"applied":0},{"name":"Best Breweries","count":32,"applied":0},{"name":"TFA","count":31,"applied":0},{"name":"Top Fine Dine","count":30,"applied":0},{"name":"Microbrewery","count":29,"applied":0},{"name":"Pay Day","count":29,"applied":0},{"name":"1 plus 1 on Food and Drinks","count":27,"applied":0},{"name":"Best Gastropub","count":27,"applied":0},{"name":"Best of Buffet 2021","count":25,"applied":0},{"name":"Fine Dining","count":24,"applied":0},{"name":"Top Drinks","count":23,"applied":0},{"name":"Top Outdoor Rooftop","count":23,"applied":0},{"name":"Top Cafes","count":22,"applied":0},{"name":"Top Quick Bites","count":22,"applied":0},{"name":"Top Budget Friendly","count":21,"applied":0},{"name":"Outdoor Dining","count":20,"applied":0},{"name":"Bar","count":19,"applied":0},{"name":"Top Family","count":19,"applied":0},{"name":"Best Cafes to Chill","count":16,"applied":0},{"name":"Childrens Day","count":14,"applied":0},{"name":"Phoenix Market City","count":14,"applied":0},{"name":"The Great Grub Fest Phoenix Marketcity","count":14,"applied":0},{"name":"Top Pure Veg","count":13,"applied":0},{"name":"Kingfisher IPL","count":12,"applied":0},{"name":"Coffee and Chill","count":10,"applied":0},{"name":"Lounge","count":10,"applied":0},{"name":"Valentines Day 2022 Block","count":10,"applied":0},{"name":"Pedigree Sponsored","count":8,"applied":0},{"name":"HSBC Bank Simply Indulge","count":6,"applied":0},{"name":"Christmas Collection 2021","count":4,"applied":0},{"name":"Deli","count":4,"applied":0},{"name":"New Year Collection 2021","count":4,"applied":0},{"name":"Courtyard By Marriott","count":3,"applied":0},{"name":"Restaurant of the Week","count":3,"applied":0},{"name":"Barbeque Nation Super Savers","count":2,"applied":0},{"name":"The Den","count":2,"applied":0},{"name":"Best Bars","count":1,"applied":0},{"name":"Best Buffet","count":1,"applied":0},{"name":"Best ID restaurants","count":1,"applied":0},{"name":"The Ottera","count":1,"applied":0}]},{"is_visible":true,"is_searchable":true,"type":"CHECKBOX","key":"feature","name":"Features","arr":[{"name":"Cards Accepted","count":1345,"applied":0},{"name":"Wallet Accepted","count":1141,"applied":0},{"name":"Home Delivery","count":996,"applied":0},{"name":"Air Conditioned","count":944,"applied":0},{"name":"Parking","count":804,"applied":0},{"name":"Outdoor Seating","count":415,"applied":0},{"name":"Wifi","count":357,"applied":0},{"name":"Lift","count":339,"applied":0},{"name":"Live Screening","count":316,"applied":0},{"name":"Valet Available","count":288,"applied":0},{"name":"Smoking Area","count":274,"applied":0},{"name":"Serves Alcohol","count":205,"applied":0},{"name":"Differently Abled Friendly","count":195,"applied":0},{"name":"Roof Top","count":152,"applied":0},{"name":"Full Bar Available","count":145,"applied":0},{"name":"Live Performance","count":94,"applied":0},{"name":"DJ","count":62,"applied":0},{"name":"Hookah","count":42,"applied":0},{"name":"Dance Floor","count":35,"applied":0},{"name":"Private Dining Available","count":26,"applied":0},{"name":"Candle Light Dinner","count":23,"applied":0},{"name":"Pet Friendly","count":19,"applied":0},{"name":"Poolside","count":19,"applied":0},{"name":"Karaoke","count":9,"applied":0}]}],"count":0,"listingGaCategory":"D_Listing"},"w1-filters-filter_popup":{"popFilters":{},"city_name":"bangalore","chain_url":"","listingGaCategory":"D_Listing"},"w1-filters-filter[0]":{"filterlist":{"key":"tag","name":"Dineout Pay","applied":0},"checked":0,"key":"_quickfilters","type":"CHECKBOX","url":null,"index":"","city_name":"bangalore","name":"Quick Filters","listingGaCategory":"D_Listing"},"w1-filters-filter[1]":{"filterlist":{"key":"tag","name":"Pure Veg","applied":0},"checked":0,"key":"_quickfilters","type":"CHECKBOX","url":null,"index":"","city_name":"bangalore","name":"Quick Filters","listingGaCategory":"D_Listing"},"w1-filters-filter[2]":{"filterlist":{"key":"tag","name":"5 Star","applied":0},"checked":0,"key":"_quickfilters","type":"CHECKBOX","url":null,"index":"","city_name":"bangalore","name":"Quick Filters","listingGaCategory":"D_Listing"},"w1-filters-filter[3]":{"filterlist":{"key":"tag","name":"Buffet","applied":0},"checked":0,"key":"_quickfilters","type":"CHECKBOX","url":null,"index":"","city_name":"bangalore","name":"Quick Filters","listingGaCategory":"D_Listing"},"w1-filters-filter[4]":{"checked":0,"key":"cuisine","type":"CHECKBOX","url":"/bangalore-restaurants/north-indian-cuisine","index":"","city_name":"bangalore","name":"Cuisines","listingGaCategory":"D_Listing"},"w1-filters-filter[5]":{"checked":0,"key":"cuisine","type":"CHECKBOX","url":"/bangalore-restaurants/chinese-cuisine","index":"","city_name":"bangalore","name":"Cuisines","listingGaCategory":"D_Listing"},"w1-filters-filter[6]":{"checked":0,"key":"cuisine","type":"CHECKBOX","url":"/bangalore-restaurants/fast-food-cuisine","index":"","city_name":"bangalore","name":"Cuisines","listingGaCategory":"D_Listing"},"w1-filters-filter[7]":{"checked":0,"key":"cuisine","type":"CHECKBOX","url":"/bangalore-restaurants/desserts-cuisine","index":"","city_name":"bangalore","name":"Cuisines","listingGaCategory":"D_Listing"},"w1-filters-filter[8]":{"checked":0,"key":"tag","type":"CHECKBOX","url":null,"index":"","city_name":"bangalore","name":"Tags","listingGaCategory":"D_Listing"},"w1-filters-filter[9]":{"checked":0,"key":"tag","type":"CHECKBOX","url":null,"index":"","city_name":"bangalore","name":"Tags","listingGaCategory":"D_Listing"},"w1-filters-filter[10]":{"checked":0,"key":"tag","type":"CHECKBOX","url":null,"index":"","city_name":"bangalore","name":"Tags","listingGaCategory":"D_Listing"},"w1-filters-filter[11]":{"checked":0,"key":"tag","type":"CHECKBOX","url":null,"index":"","city_name":"bangalore","name":"Tags","listingGaCategory":"D_Listing"},"w1-filters-filter[12]":{"checked":0,"key":"feature","type":"CHECKBOX","url":null,"index":"","city_name":"bangalore","name":"Features","listingGaCategory":"D_Listing"},"w1-filters-filter[13]":{"checked":0,"key":"feature","type":"CHECKBOX","url":null,"index":"","city_name":"bangalore","name":"Features","listingGaCategory":"D_Listing"},"w1-filters-filter[14]":{"checked":0,"key":"feature","type":"CHECKBOX","url":null,"index":"","city_name":"bangalore","name":"Features","listingGaCategory":"D_Listing"},"w1-filters-filter[15]":{"checked":0,"key":"feature","type":"CHECKBOX","url":null,"index":"","city_name":"bangalore","name":"Features","listingGaCategory":"D_Listing"},"w1-filters":{"all_filters":[{"is_visible":true,"is_searchable":false,"type":"CHECKBOX","key":"_quickfilters","name":"Quick Filters","arr":[null,null,null,null,{"key":"tag","name":"Happy Hours","applied":0},{"key":"cuisine","name":"Chinese","applied":0},{"key":"cuisine","name":"North Indian","applied":0},{"key":"cuisine","name":"Italian","applied":0}]},null,null,null],"is_open_filter":{"_quickfilters":true,"cuisine":true,"tag":true,"feature":false},"search_value":{"key":"","value":""},"chain_url":"","city_name":"bangalore","listingGaCategory":"D_Listing","girfEndDate":"2021-03-31 23:59:59"},"w1-sorter":{"resultCount":1381,"sortFilters":{"is_visible":true,"is_searchable":false,"type":"DESELECTABLE_RADIO","key":"sortby","name":"SORT BY","arr":[{"name":"Rating","key":"ratingDESC","applied":0,"url_selected":"https://im1.dineout.co.in/images/uploads/misc/2016/Oct/19/ic_rate_active.png","url_deselected":"https://im1.dineout.co.in/images/uploads/misc/2016/Oct/19/ic_rate.png"},{"name":"Popularity","key":"relevance","applied":1,"url_selected":"https://im1.dineout.co.in/images/uploads/misc/2016/Oct/19/ic_relevance_active.png","url_deselected":"https://im1.dineout.co.in/images/uploads/misc/2016/Oct/19/ic_relevance.png"},{"name":"Price: Low to High","key":"costASC","applied":0,"url_selected":"https://im1.dineout.co.in/images/uploads/misc/2016/Oct/19/ic_price_lowtohigh_active.png","url_deselected":"https://im1.dineout.co.in/images/uploads/misc/2016/Oct/19/ic_price_lowtohigh.png"},{"name":"Price: High to Low","key":"costDESC","applied":0,"url_selected":"https://im1.dineout.co.in/images/uploads/misc/2016/Oct/19/ic_price_hightolow_active.png","url_deselected":"https://im1.dineout.co.in/images/uploads/misc/2016/Oct/19/ic_price_hightolow.png"}]},"tag_url":"Best Welcome Back Restaurants Near Me in Bangalore","listingGaCategory":"D_Listing","showing_rest_with_applicable_deals":{"status":true,"is_visible":false}},"w1-restarant":{"listing":[{"cuisine":["Continental","Finger Food","North Indian"],"img":["https://im1.dineout.co.in/images/uploads/restaurant/sharpen/4/r/y/p48670-15414807385be1212212d20.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/4/f/i/p48670-15414807205be12110487d2.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/4/v/f/p48670-15414807015be120fda225d.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/4/l/w/p48670-15595445045cf4c2b8cc51c.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/4/g/l/p48670-15595445135cf4c2c14fe1d.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/4/h/t/p48670-15595445215cf4c2c936d18.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/4/y/i/p48670-15595445285cf4c2d0b5d4f.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/4/z/v/p48670-15595445365cf4c2d8a18fa.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/4/o/b/p48670-15595445445cf4c2e0af845.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/4/k/t/p48670-15595445525cf4c2e867950.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/4/b/o/p48670-15595445625cf4c2f276a9e.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/4/t/w/p48670-15595445705cf4c2fa4ec0a.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/4/c/q/p48670-15595445795cf4c303f2324.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/4/e/a/p48670-15595445875cf4c30bcde03.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/4/l/y/p48670-15414810655be12269e2456.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/4/y/j/p48670-15414810845be1227c94f15.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/4/z/q/p48670-15414811035be1228f45602.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/4/w/n/p48670-15414812145be122fef1d44.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/4/a/k/p48670-15414811925be122e8c4d24.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/4/k/p/p48670-15414810465be1225686de4.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/4/n/i/p48670-15414812335be12311b377d.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/4/l/q/p48670-15414812545be123264b72a.jpg?w=400"],"locality_name":"Koramangala","is_pf":"false","area_name":"South Bangalore","is_accept_payment":true,"is_swor":true,"costFor2":"1,900","tags":["Happy Hours","Happy Hours","Dineout Pay","Nightlife","Christmas Recommendations","Brewery","Halloween Special","Bottoms Up","Valentine_Deal","Must Try Microbrewery","bangalore block","Diageo Special","Octobeer Fest","Gandhi Jayanti","Beer Deal","Meet Your Meat","Microbrewery Fest","Food 2019","Christmas and New Year Celebration","HSBC Cashback","Todays Special","Love Aajkal","Ban Alcohol Block","Safe To Eat Out","Welcome Back","Certified Safe","Instant Discount","Unlock Drinks","Save Big or Crib","Instant Savings","31DecBlock","Pawri Specials","Vaccinated Staff","Certified Vaccinated Staff","Outdoor Dining","Bangalores Finest","Raising the Bar","Bangalore Alcohol Shut","Best of Food 2021","Best of 2021","Delhi Bar Casual Cafe Fine DC4","Delhi Bar Casual NI DC2","Delhi Bar Casual NI DC5","Delhi Cafe Fine QSR FastFood DC3","Bangalore Bar Casual DC2","Bangalore Bar Casual NI DC3","Best Places to Drink","Best Places to Eat","Best Breweries","Microbrewery","Best Pizza Places","Dineout Birthday","Bangalore Restaurants for DC0 v1","Bangalore Restaurants for RDP DC1 v1","Bangalore Restaurants for DC6 v1","Skip IB","Top Outdoor Rooftop","Top Drinks","Bangalore Restaurants for DC0 v2","Bangalore Restaurants for DC1 v2","Bangalore Restaurants for DC6 v2","Bangalore Restaurants for RDP C0 v2","Bangalore Restaurants for RDP C1 v2","Bangalore Restaurants for RDP C2 v2","Bangalore Restaurants for RDP C3 v2","Bangalore Restaurants for RDP C4 v2","Bangalore Restaurants for RDP C5 v2","Best After Hours","Best Diners Choice","Bangalore Restaurants for DC0 v3","Bangalore Restaurants for DC6 v3","Bangalore Restaurants for RDP C1 v3","Bangalore Restaurants for RDP C2 v3","Bangalore Restaurants for RDP C3 v3","Bangalore Restaurants for RDP C4 v3","Top North Indian","Trending in Bangalore","Best Places to Drinks"],"avg_rating":4.4,"r_id":48670,"profile_name":"The Bier Library Brewery & Kitchen","recency":0,"offers":["instant_discount##Flat {{Percentage_OFFER}}% Off the Total Bill"],"offer_type":["instant_discount"],"fullfillment":"true","n_regular_offers":0,"n_offers":1,"offer_data":{"title":"Offers available","smartpay_text":"Pay your restaurant bill via Dineout and get 20% cashback (up to Rs. 300)","more_offers_text":"","offers":[{"title_1":"Flat {{Percentage_OFFER}}% Off the Total Bill","labelText":"","labelColor":""}],"textColor":"#3595ff","tagColor":"#00c34e","tagId":1,"deepLink":"dineout://web?title=Dineout Pay&link=https://www.dineout.co.in/app-webview-smartpay"},"all_offer_data":{"title":"","smartpay_text":"Pay your restaurant bill via Dineout and get 20% cashback (up to Rs. 300)","more_offers_text":"","offers":[{"title":"Flat {{Percentage_OFFER}}% Off the Total Bill","type":"","offerValidityAr":[{"day":"Sunday","startTime":0,"endTime":1439},{"day":"Monday","startTime":0,"endTime":1439},{"day":"Tuesday","startTime":0,"endTime":1439},{"day":"Wednesday","startTime":0,"endTime":1439},{"day":"Thursday","startTime":0,"endTime":1439},{"day":"Friday","startTime":0,"endTime":1439},{"day":"Saturday","startTime":0,"endTime":1439}],"offerValidityStr":"Mon-Sun 00:00 AM-11:59 PM"}],"textColor":"#3595ff"},"gpAlert":"","events_obj":[],"cta":[],"event_text":"","restaurant_open_close_ar":[],"restaurant_closed_status":false,"restaurant_closed_message":"","rdp_link":"/bangalore/the-bier-library-brewery-kitchen-koramangala-south-bangalore-48670","restaurantType":2,"ctaHeader":"","buyFrom":1664084930,"tickets":{"show_count":1,"data":[]},"type":"restaurant","hotelName":"","hasPreBook":false,"isSponsered":0,"persuassionArr":[],"more_offers_text":"","more_all_offers_text":"","tagInfo":[{"text":"Pay bill and get 10% cashback","textColor":"#333333","tagColor":"#FFF4F4","tagTextColor":"#F67373","tagText":"Dineout Pay","url":"/dineout-pay/instant-discount/how-it-works","deepLink":"dineout://web?title=Dineout Pay&link=https://www.dineout.co.in/app-webview-smartpay","tagIcon":"https://im1.dineout.co.in/images/uploads/misc/2019/Jan/17/information.png","action":{"tag":{"title":{"text":"Dineout Pay Offer","color":"#ffffff"},"gradients":["#28e397","#00c34e"]},"restName":{"text":"at The Bier Library Brewery & Kitchen, Koramangala","color":"#696969"},"cashbacks":[{"title1":{"text":"Usable","color":"#696969"},"title2":{"text":"PromoCash","color":"#3595FF","icon":"https://im1.dineout.co.in/images/uploads/misc/2019/May/23/group33@3x.png"},"cb":{"text":"#5#%","color":"#141723"},"title3":{"text":"#Of Bill Amount#","color":"#141723"},"bg_color":"#eeeeee"},{"title1":{"text":"Additional","color":"#696969"},"title2":{"text":"Cashback","color":"#00c34e"},"cb":{"text":"#20#%","color":"#141723"},"title3":{"text":"#Of Payable Amount#","color":"#141723"},"bg_color":"#eeeeee"}],"header":{"primary_color":"#fff4f4","secondary_color":"#fff4f4","imageLogo":"https://im1.dineout.co.in/images/uploads/misc/2020/Jun/24/group15@3x.png","icon":"https://im1.dineout.co.in/images/uploads/misc/2020/Jun/24/address@3x.png","title":{"text":"","sub_title":"","sub_titleColor":"#999999","textColor":""}},"cashback":{"title":{"text":"Get {cb_percentage}% Cashback","textColor":"#FF645A"},"title2":{"text":"as PromoCash, when you pay your bill via Dineout Pay","boldTextColor":""}},"IDcashback":{"icon":"https://im1.dineout.co.in/images/uploads/misc/2020/Jun/24/group@3x.png","title":{"text":"Flat {id_percentage}% Instant Discount","textColor":"#FF645A"},"title1":{"text":"on Total Bill","textColor":"#FF645A","bgColor":"#FFF4F4"},"title2":{"text":"when you pay your bill via Dineout Pay","boldTextColor":""}},"promocash":{"icon":"https://im1.dineout.co.in/images/uploads/misc/2019/May/23/group33@3x.png","title2":{"text":"Additionaly, you can #Save extra upto {earning_percentage}%# on your bill using @AMNT@ Promocash","boldTextColor":"#3877D6"}},"note":{"text":"Pay your bill via Dineout Pay to save upto #5%# on your bill using @AMNT@ PromoCash & additionally, get #20% cashback#","color":"#696969","cashColor":"#3595ff"},"rdp":{"title":{"text":"View Restaurant Details","color":"#ffffff"},"gradients":["#65c7ff","#3595ff"],"primary_color":"#ff645a","secondary_color":"#ff645a","deepLink":"bangalore/the-bier-library-brewery-kitchen-koramangala-south-bangalore-48670"},"action":{"title":{"text":"How it works?","color":"#3c79d3"},"deepLink":"dineout://web?title=Dineout Pay&link=https://www.dineout.co.in/dineout-pay/how-it-works&showNav=1","url":"/dineout-pay/how-it-works"}}}],"totalOfferDealText":""},{"cuisine":["Continental","American","Finger Food"],"img":["https://im1.dineout.co.in/images/uploads/restaurant/sharpen/3/h/z/p3728-15819343935e4a6739ada8d.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/3/v/h/p3728-15819344305e4a675e53114.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/3/h/l/p3728-15819343875e4a673334e70.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/3/d/y/p3728-15819344245e4a67584b083.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/3/s/f/p3728-15819344185e4a675242b1f.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/3/v/f/p3728-15819343995e4a673fdf519.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/3/c/o/p3728-15819344055e4a674562589.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/3/n/b/p3728-15819344115e4a674bd4a8f.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/3/b/x/p3728-15819343815e4a672d16656.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/3/p/a/p3728-15819344365e4a67648d5cf.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/3/a/z/p3728-15819344415e4a6769f2991.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/1/t/o/p1350-1645014554620cee1a02bcb.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/1/l/z/p1350-1645014560620cee20c772e.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/1/x/o/p1350-163739019861989776a5f5a.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/1/b/f/p1350-16373902056198977d712a6.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/1/b/e/p1350-16373902126198978406280.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/1/d/l/p1350-16373902186198978a99479.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/1/t/q/p1350-1637390225619897916325a.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/1/x/a/p1350-16373902326198979832bfc.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/1/l/j/p1350-16373902386198979e9d9b3.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/1/o/m/p1350-1637390245619897a548a11.jpg?w=400"],"locality_name":"St. Marks Road","is_pf":"false","area_name":"Central Bangalore","is_accept_payment":true,"is_swor":true,"costFor2":"2,500","tags":["Dineout Pay","Nightlife","TFA","Broke Tippler's Guide","CNY","Places to Celebrate","Best Bars and Pubs","Paypal","k a","Halloween Special","Steal deals","Valentine_Booking","Valentine_Deal","New On Gourmet Passport","bangalore block","Gandhi Jayanti","Meet Your Meat","AMEXFORFOODIES","14 Feb Blocking 2020","Love Aajkal","Ban Alcohol Block","Safe To Eat Out","Welcome Back","Now Open","Instant Discount","Save Big or Crib","Budweiser","DP 2020","Pawri Specials","Trending in Central Bangalore","Clearance Sale","Vaccinated Staff","Safe to Serve","DP Percentage","Raising the Bar","New on DP","DP Match Screening","Bangalore Alcohol Shut","Best of Drinks","Best of 2021","Best of Dineout Passport","Dineout Passport Winter Treats","Delhi Bar Casual Cafe Fine DC4","Delhi Bar Casual NI DC2","Delhi Bar Casual NI DC5","Bangalore Bar Casual DC2","Bangalore Bar Casual NI DC3","Best Places to Drink","Dineout Passport Most Popular","Valentines Day 2022 Block","Femtastic","Dineout Birthday","Bangalore Restaurants for DC0 v1","Bangalore Restaurants for RDP DC1 v1","Bangalore Restaurants for DC6 v1","Skip IB","Top Drinks","Bangalore Restaurants for DC0 v2","Bangalore Restaurants for DC6 v2","Bangalore Restaurants for RDP C0 v2","Bangalore Restaurants for RDP C2 v2","Best After Hours","Best Diners Choice","Bangalore Restaurants for DC0 v3","Bangalore Restaurants for DC6 v3","Bangalore Restaurants for RDP C1 v3","Bangalore Restaurants for RDP C2 v3","Bangalore Restaurants for RDP C3 v3","Bangalore Restaurants for RDP C4 v3","Bangalore Trending Dineout Passport","Best Places to Drinks"],"avg_rating":4.4,"r_id":1350,"profile_name":"Hard Rock Cafe","recency":0,"offers":["instant_discount##Flat {{Percentage_OFFER}}% Off the Total Bill"],"offer_type":["instant_discount"],"fullfillment":"true","n_regular_offers":0,"n_offers":1,"offer_data":{"title":"Offers available","smartpay_text":"Pay your restaurant bill via Dineout and get 20% cashback (up to Rs. 300)","more_offers_text":"","offers":[{"title_1":"Flat {{Percentage_OFFER}}% Off the Total Bill","labelText":"","labelColor":""}],"textColor":"#3595ff","tagColor":"#00c34e","tagId":1,"deepLink":"dineout://web?title=Dineout Pay&link=https://www.dineout.co.in/app-webview-smartpay"},"all_offer_data":{"title":"","smartpay_text":"Pay your restaurant bill via Dineout and get 20% cashback (up to Rs. 300)","more_offers_text":"","offers":[{"title":"Flat {{Percentage_OFFER}}% Off the Total Bill","type":"","offerValidityAr":[{"day":"Sunday","startTime":0,"endTime":1439},{"day":"Monday","startTime":0,"endTime":1439},{"day":"Tuesday","startTime":0,"endTime":1439},{"day":"Wednesday","startTime":0,"endTime":1439},{"day":"Thursday","startTime":0,"endTime":1439},{"day":"Friday","startTime":0,"endTime":1439},{"day":"Saturday","startTime":0,"endTime":1439}],"offerValidityStr":"Mon-Sun 00:00 AM-11:59 PM"}],"textColor":"#3595ff"},"gpAlert":"","events_obj":[],"cta":[],"event_text":"","restaurant_open_close_ar":[],"restaurant_closed_status":false,"restaurant_closed_message":"","rdp_link":"/bangalore/hard-rock-cafe-st-marks-road-central-bangalore-1350","restaurantType":2,"ctaHeader":"","buyFrom":1664084930,"tickets":{"show_count":1,"data":[]},"type":"restaurant","hotelName":"","hasPreBook":false,"isSponsered":0,"persuassionArr":[],"more_offers_text":"","more_all_offers_text":"","tagInfo":[{"text":"Pay bill and get 10% cashback","textColor":"#333333","tagColor":"#FFF4F4","tagTextColor":"#F67373","tagText":"Dineout Pay","url":"/dineout-pay/instant-discount/how-it-works","deepLink":"dineout://web?title=Dineout Pay&link=https://www.dineout.co.in/app-webview-smartpay","tagIcon":"https://im1.dineout.co.in/images/uploads/misc/2019/Jan/17/information.png","action":{"tag":{"title":{"text":"Dineout Pay Offer","color":"#ffffff"},"gradients":["#28e397","#00c34e"]},"restName":{"text":"at Hard Rock Cafe, St. Marks Road","color":"#696969"},"cashbacks":[{"title1":{"text":"Usable","color":"#696969"},"title2":{"text":"PromoCash","color":"#3595FF","icon":"https://im1.dineout.co.in/images/uploads/misc/2019/May/23/group33@3x.png"},"cb":{"text":"#5#%","color":"#141723"},"title3":{"text":"#Of Bill Amount#","color":"#141723"},"bg_color":"#eeeeee"},{"title1":{"text":"Additional","color":"#696969"},"title2":{"text":"Cashback","color":"#00c34e"},"cb":{"text":"#20#%","color":"#141723"},"title3":{"text":"#Of Payable Amount#","color":"#141723"},"bg_color":"#eeeeee"}],"header":{"primary_color":"#fff4f4","secondary_color":"#fff4f4","imageLogo":"https://im1.dineout.co.in/images/uploads/misc/2020/Jun/24/group15@3x.png","icon":"https://im1.dineout.co.in/images/uploads/misc/2020/Jun/24/address@3x.png","title":{"text":"","sub_title":"","sub_titleColor":"#999999","textColor":""}},"cashback":{"title":{"text":"Get {cb_percentage}% Cashback","textColor":"#FF645A"},"title2":{"text":"as PromoCash, when you pay your bill via Dineout Pay","boldTextColor":""}},"IDcashback":{"icon":"https://im1.dineout.co.in/images/uploads/misc/2020/Jun/24/group@3x.png","title":{"text":"Flat {id_percentage}% Instant Discount","textColor":"#FF645A"},"title1":{"text":"on Total Bill","textColor":"#FF645A","bgColor":"#FFF4F4"},"title2":{"text":"when you pay your bill via Dineout Pay","boldTextColor":""}},"promocash":{"icon":"https://im1.dineout.co.in/images/uploads/misc/2019/May/23/group33@3x.png","title2":{"text":"Additionaly, you can #Save extra upto {earning_percentage}%# on your bill using @AMNT@ Promocash","boldTextColor":"#3877D6"}},"note":{"text":"Pay your bill via Dineout Pay to save upto #5%# on your bill using @AMNT@ PromoCash & additionally, get #20% cashback#","color":"#696969","cashColor":"#3595ff"},"rdp":{"title":{"text":"View Restaurant Details","color":"#ffffff"},"gradients":["#65c7ff","#3595ff"],"primary_color":"#ff645a","secondary_color":"#ff645a","deepLink":"bangalore/hard-rock-cafe-st-marks-road-central-bangalore-1350"},"action":{"title":{"text":"How it works?","color":"#3c79d3"},"deepLink":"dineout://web?title=Dineout Pay&link=https://www.dineout.co.in/dineout-pay/how-it-works&showNav=1","url":"/dineout-pay/how-it-works"}}}],"totalOfferDealText":""},{"cuisine":["North Indian","Italian","Continental","Asian"],"img":["https://im1.dineout.co.in/images/uploads/restaurant/sharpen/6/k/n/p60213-162643925660f17e58443c5.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/6/s/x/p60213-15661957475d5a4023c8b72.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/6/n/v/p60213-162643927060f17e66a7451.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/6/c/e/p60213-162643926360f17e5f964bb.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/6/l/p/p60213-162643928460f17e74928da.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/6/z/x/p60213-162643927760f17e6d9b03d.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/6/v/d/p60213-15661957145d5a400284263.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/6/c/a/p60213-15661957235d5a400b2ef06.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/6/x/g/p60213-162643929260f17e7c1fad1.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/6/s/q/p60213-15661957575d5a402d3a7de.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/6/l/k/p60213-15663949345d5d4a36043ed.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/6/g/t/p60213-15663950225d5d4a8e99604.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/6/g/z/p60213-15663949525d5d4a480f25b.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/6/d/o/p60213-15663949775d5d4a613aee3.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/6/b/i/p60213-15663949615d5d4a513f483.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/6/u/c/p60213-15663949955d5d4a73e4dc8.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/6/g/j/p60213-15663949865d5d4a6a5db3a.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/6/g/u/p60213-15663951195d5d4aef6a2e5.jpg?w=400"],"locality_name":"JP Nagar","is_pf":"false","area_name":"South Bangalore","is_accept_payment":true,"is_swor":true,"costFor2":"2,000","tags":["Breakfast","Happy Hours","Dineout Pay","Nightlife","Christmas Recommendations","Best Bars and Pubs","Trending","Halloween Special","Bottoms Up","Valentines Special","Gandhi Jayanti","International Curry Week","Beer Deal","24 December Block","25 December Block","31 December Block","Drinks 2019","Christmas and New Year Celebration","Ban Alcohol Block","Safe To Eat Out","Welcome Back","Certified Safe","Instant Discount","Bill se Aazaadi","Unlock Drinks","Instant Savings","Reopened Restaurants","25DecBlock","Pawri Specials","Vaccinated Staff","Certified Vaccinated Staff","Outdoor Dining","Morning Meals","Bangalores Finest","Raising the Bar","Bangalore Alcohol Shut","Best of Food 2021","Best of 2021","Delhi Bar Casual Cafe Fine DC4","Delhi Bar Casual NI DC2","Delhi Bar Casual NI DC5","Bangalore Bar Casual DC2","Bangalore Bar Casual NI DC3","Movie Special","Best Places to Drink","Best Places to Eat","Microbrewery","Best Family Dining","Best Pizza Places","Dineout Birthday","Bangalore Restaurants for DC0 v1","Bangalore Restaurants for RDP DC1 v1","Bangalore Restaurants for DC6 v1","Skip IB","Top Outdoor Rooftop","Top Drinks","Top Breweries","Pay Day","Serves Breakfast","Bangalore Restaurants for DC2 v2","Best After Hours","Best Diners Choice","Best Pay Day Treat","Best Metaverse Restaurant","Best Metaverse Restaurant","Bangalore Restaurants for DC2 v3","Bangalore Restaurants for RDP C4 v3","Bangalore Restaurants for RDP C5 v3","Top Italian","Trending in Bangalore","Best Places to Drinks"],"avg_rating":4.3,"r_id":60213,"profile_name":"Uru Brewpark","recency":0,"offers":["instant_discount##Flat {{Percentage_OFFER}}% Off the Total Bill"],"offer_type":["instant_discount"],"fullfillment":"true","n_regular_offers":0,"n_offers":1,"offer_data":{"title":"Offers available","smartpay_text":"Pay your restaurant bill via Dineout and get 20% cashback (up to Rs. 300)","more_offers_text":"","offers":[{"title_1":"Flat {{Percentage_OFFER}}% Off the Total Bill","labelText":"","labelColor":""}],"textColor":"#3595ff","tagColor":"#00c34e","tagId":1,"deepLink":"dineout://web?title=Dineout Pay&link=https://www.dineout.co.in/app-webview-smartpay"},"all_offer_data":{"title":"","smartpay_text":"Pay your restaurant bill via Dineout and get 20% cashback (up to Rs. 300)","more_offers_text":"","offers":[{"title":"Flat {{Percentage_OFFER}}% Off the Total Bill","type":"","offerValidityAr":[{"day":"Sunday","startTime":0,"endTime":1439},{"day":"Monday","startTime":0,"endTime":1439},{"day":"Tuesday","startTime":0,"endTime":1439},{"day":"Wednesday","startTime":0,"endTime":1439},{"day":"Thursday","startTime":0,"endTime":1439},{"day":"Friday","startTime":0,"endTime":1439},{"day":"Saturday","startTime":0,"endTime":1439}],"offerValidityStr":"Mon-Sun 00:00 AM-11:59 PM"}],"textColor":"#3595ff"},"gpAlert":"","events_obj":[],"cta":[],"event_text":"","restaurant_open_close_ar":[],"restaurant_closed_status":false,"restaurant_closed_message":"","rdp_link":"/bangalore/uru-brewpark-jp-nagar-south-bangalore-60213","restaurantType":2,"ctaHeader":"","buyFrom":1664084930,"tickets":{"show_count":1,"data":[]},"type":"restaurant","hotelName":"","hasPreBook":false,"isSponsered":0,"persuassionArr":[{"bgColor":"#FAE5E5","textColor":"#ef2f2f","text":"In high demand","icon":"https://im1.dineout.co.in/images/uploads/misc/2018/Apr/23/high_demand.png"}],"more_offers_text":"","more_all_offers_text":"","tagInfo":[{"text":"Pay bill and get 10% cashback","textColor":"#333333","tagColor":"#FFF4F4","tagTextColor":"#F67373","tagText":"Dineout Pay","url":"/dineout-pay/instant-discount/how-it-works","deepLink":"dineout://web?title=Dineout Pay&link=https://www.dineout.co.in/app-webview-smartpay","tagIcon":"https://im1.dineout.co.in/images/uploads/misc/2019/Jan/17/information.png","action":{"tag":{"title":{"text":"Dineout Pay Offer","color":"#ffffff"},"gradients":["#28e397","#00c34e"]},"restName":{"text":"at Uru Brewpark, JP Nagar","color":"#696969"},"cashbacks":[{"title1":{"text":"Usable","color":"#696969"},"title2":{"text":"PromoCash","color":"#3595FF","icon":"https://im1.dineout.co.in/images/uploads/misc/2019/May/23/group33@3x.png"},"cb":{"text":"#5#%","color":"#141723"},"title3":{"text":"#Of Bill Amount#","color":"#141723"},"bg_color":"#eeeeee"},{"title1":{"text":"Additional","color":"#696969"},"title2":{"text":"Cashback","color":"#00c34e"},"cb":{"text":"#20#%","color":"#141723"},"title3":{"text":"#Of Payable Amount#","color":"#141723"},"bg_color":"#eeeeee"}],"header":{"primary_color":"#fff4f4","secondary_color":"#fff4f4","imageLogo":"https://im1.dineout.co.in/images/uploads/misc/2020/Jun/24/group15@3x.png","icon":"https://im1.dineout.co.in/images/uploads/misc/2020/Jun/24/address@3x.png","title":{"text":"","sub_title":"","sub_titleColor":"#999999","textColor":""}},"cashback":{"title":{"text":"Get {cb_percentage}% Cashback","textColor":"#FF645A"},"title2":{"text":"as PromoCash, when you pay your bill via Dineout Pay","boldTextColor":""}},"IDcashback":{"icon":"https://im1.dineout.co.in/images/uploads/misc/2020/Jun/24/group@3x.png","title":{"text":"Flat {id_percentage}% Instant Discount","textColor":"#FF645A"},"title1":{"text":"on Total Bill","textColor":"#FF645A","bgColor":"#FFF4F4"},"title2":{"text":"when you pay your bill via Dineout Pay","boldTextColor":""}},"promocash":{"icon":"https://im1.dineout.co.in/images/uploads/misc/2019/May/23/group33@3x.png","title2":{"text":"Additionaly, you can #Save extra upto {earning_percentage}%# on your bill using @AMNT@ Promocash","boldTextColor":"#3877D6"}},"note":{"text":"Pay your bill via Dineout Pay to save upto #5%# on your bill using @AMNT@ PromoCash & additionally, get #20% cashback#","color":"#696969","cashColor":"#3595ff"},"rdp":{"title":{"text":"View Restaurant Details","color":"#ffffff"},"gradients":["#65c7ff","#3595ff"],"primary_color":"#ff645a","secondary_color":"#ff645a","deepLink":"bangalore/uru-brewpark-jp-nagar-south-bangalore-60213"},"action":{"title":{"text":"How it works?","color":"#3c79d3"},"deepLink":"dineout://web?title=Dineout Pay&link=https://www.dineout.co.in/dineout-pay/how-it-works&showNav=1","url":"/dineout-pay/how-it-works"}}}],"totalOfferDealText":""},{"cuisine":["Continental","European"],"img":["https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/k/q/p50533-15783109835e131d4774e89.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/g/a/p50533-15783109925e131d5003bc0.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/y/r/p50533-15783110175e131d69d74ff.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/m/w/p50533-15783110265e131d72a2db3.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/s/v/p50533-15783110005e131d58f4030.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/w/o/p50533-15783110095e131d617ec85.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/c/a/p50533-15461093285c27c1907854b.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/w/k/p50533-15461093505c27c1a6310c1.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/x/b/p50533-15461093625c27c1b219a3a.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/n/j/p50533-15461093725c27c1bcee14f.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/i/b/p50533-15558293075cbc123b6c8aa.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/z/i/p50533-15558293155cbc1243b0d33.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/u/f/p50533-15558293305cbc1252946a9.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/m/j/p50533-15558293535cbc12693a394.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/j/j/p50533-15558293625cbc1272456f2.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/i/u/p50533-15558294105cbc12a25af60.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/k/x/p50533-15558294485cbc12c8a9c1d.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/z/o/p5872-16013809925f7322802eef6.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/g/x/p5872-16013813425f7323de6ee97.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/m/p/p5872-16013813265f7323ced123c.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/h/u/p5872-16013808165f7321d076abd.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/a/p/p5872-16013808365f7321e442728.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/o/v/p5872-16013808715f732207718e5.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/o/k/p5872-16013808895f7322191235b.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/p/q/p5872-16013809505f732256a5fc8.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/q/q/p5872-16013809715f73226b5f79d.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/i/q/p5872-16013810105f732292229cc.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/o/q/p5872-16013811525f73232071645.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/e/l/p5872-16013810255f7322a19279b.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/u/i/p5872-16013814235f73242fb5aec.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/j/b/p5872-16013814665f73245aa0925.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/m/s/p5872-16013810415f7322b1dc165.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/u/m/p5872-16013811165f7322fc1d2a4.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/o/t/p5872-16013811005f7322ece090f.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/j/e/p5872-16013811355f73230f99afc.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/g/p/p5872-16013810635f7322c7730c2.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/d/i/p5872-16013814395f73243fcb401.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/t/i/p5872-16013814085f732420acd69.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/y/u/p5872-16013813715f7323fb389ea.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/i/h/p5872-16013813925f732410dbb2a.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/i/e/p5872-16013814845f73246cac9e2.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/u/e/p5872-16013813565f7323ecae4f7.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/a/j/p5872-16013810845f7322dc0c3f7.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/z/p/p5872-16013809315f7322435de11.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/y/d/p5872-16013811675f73232f13d0a.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/c/s/p5872-16013808565f7321f882472.jpg?w=400"],"locality_name":"Koramangala","is_pf":"false","area_name":"South Bangalore","is_accept_payment":true,"is_swor":true,"costFor2":"2,400","tags":["Happy Hours","Dineout Pay","Beer Fest","Christmas Recommendations","CNY","Best Bars and Pubs","Brewery","Trending","Halloween Special","Bottoms Up","Valentine_Deal","Must Try Microbrewery","Eat and Cheer","bangalore block","Octobeer Fest","Gandhi Jayanti","Beer Deal","Stories","Microbrewery Fest","Christmas and New Year Celebration","HSBC Cashback","14 Feb Blocking 2020","Todays Special","Love Aajkal","Park Plus","Ban Alcohol Block","Safe To Eat Out","Welcome Back","Instant Discount","Bill se Aazaadi","Unlock Drinks","Save Big or Crib","Pay Day Sale","Great Dineout Challenge","Pawri Specials","Vaccinated Staff","Raising the Bar","Bangalore Alcohol Shut","Best of Drinks","Best of 2021","Delhi Bar Casual Cafe Fine DC4","Delhi Bar Casual NI DC2","Delhi Bar Casual NI DC5","Bangalore Bar Casual NI DC3","Best Places to Drink","Best Places to Eat","Best Breweries","Microbrewery","Best Family Dining","Dineout Birthday","Bangalore Restaurants for DC0 v1","Bangalore Restaurants for RDP DC1 v1","Bangalore Restaurants for DC6 v1","Skip IB","Top Drinks","Top Breweries","Pay Day","Bangalore Restaurants for DC0 v2","Bangalore Restaurants for DC6 v2","Bangalore Restaurants for RDP C0 v2","Bangalore Restaurants for RDP C2 v2","Best After Hours","Best Diners Choice","Best Pay Day Treat","Bangalore Restaurants for DC0 v3","Bangalore Restaurants for DC6 v3","Bangalore Restaurants for RDP C0 v3","Bangalore Restaurants for RDP C1 v3","Bangalore Restaurants for RDP C2 v3","Bangalore Restaurants for RDP C2 v3","Bangalore Restaurants for RDP C3 v3","Bangalore Restaurants for RDP C4 v3","Bangalore Restaurants for RDP C5 v3","Trending in Bangalore","Best Places to Drinks"],"avg_rating":4.4,"r_id":50533,"profile_name":"Biergarten","recency":0,"offers":["instant_discount##Flat {{Percentage_OFFER}}% Off the Total Bill"],"offer_type":["instant_discount"],"fullfillment":"true","n_regular_offers":0,"n_offers":1,"offer_data":{"title":"Offers available","smartpay_text":"Pay your restaurant bill via Dineout and get 20% cashback (up to Rs. 300)","more_offers_text":"","offers":[{"title_1":"Flat {{Percentage_OFFER}}% Off the Total Bill","labelText":"","labelColor":""}],"textColor":"#3595ff","tagColor":"#00c34e","tagId":1,"deepLink":"dineout://web?title=Dineout Pay&link=https://www.dineout.co.in/app-webview-smartpay"},"all_offer_data":{"title":"","smartpay_text":"Pay your restaurant bill via Dineout and get 20% cashback (up to Rs. 300)","more_offers_text":"","offers":[{"title":"Flat {{Percentage_OFFER}}% Off the Total Bill","type":"","offerValidityAr":[{"day":"Sunday","startTime":0,"endTime":1439},{"day":"Monday","startTime":0,"endTime":1439},{"day":"Tuesday","startTime":0,"endTime":1439},{"day":"Wednesday","startTime":0,"endTime":1439},{"day":"Thursday","startTime":0,"endTime":1439},{"day":"Friday","startTime":0,"endTime":1439},{"day":"Saturday","startTime":0,"endTime":1439}],"offerValidityStr":"Mon-Sun 00:00 AM-11:59 PM"}],"textColor":"#3595ff"},"gpAlert":"","events_obj":[],"cta":[],"event_text":"","restaurant_open_close_ar":[],"restaurant_closed_status":false,"restaurant_closed_message":"","rdp_link":"/bangalore/biergarten-koramangala-south-bangalore-50533","restaurantType":2,"ctaHeader":"","buyFrom":1664084930,"tickets":{"show_count":1,"data":[]},"type":"restaurant","hotelName":"","hasPreBook":false,"isSponsered":0,"persuassionArr":[],"more_offers_text":"","more_all_offers_text":"","tagInfo":[{"text":"Pay bill and get 10% cashback","textColor":"#333333","tagColor":"#FFF4F4","tagTextColor":"#F67373","tagText":"Dineout Pay","url":"/dineout-pay/instant-discount/how-it-works","deepLink":"dineout://web?title=Dineout Pay&link=https://www.dineout.co.in/app-webview-smartpay","tagIcon":"https://im1.dineout.co.in/images/uploads/misc/2019/Jan/17/information.png","action":{"tag":{"title":{"text":"Dineout Pay Offer","color":"#ffffff"},"gradients":["#28e397","#00c34e"]},"restName":{"text":"at Biergarten, Koramangala","color":"#696969"},"cashbacks":[{"title1":{"text":"Usable","color":"#696969"},"title2":{"text":"PromoCash","color":"#3595FF","icon":"https://im1.dineout.co.in/images/uploads/misc/2019/May/23/group33@3x.png"},"cb":{"text":"#5#%","color":"#141723"},"title3":{"text":"#Of Bill Amount#","color":"#141723"},"bg_color":"#eeeeee"},{"title1":{"text":"Additional","color":"#696969"},"title2":{"text":"Cashback","color":"#00c34e"},"cb":{"text":"#20#%","color":"#141723"},"title3":{"text":"#Of Payable Amount#","color":"#141723"},"bg_color":"#eeeeee"}],"header":{"primary_color":"#fff4f4","secondary_color":"#fff4f4","imageLogo":"https://im1.dineout.co.in/images/uploads/misc/2020/Jun/24/group15@3x.png","icon":"https://im1.dineout.co.in/images/uploads/misc/2020/Jun/24/address@3x.png","title":{"text":"","sub_title":"","sub_titleColor":"#999999","textColor":""}},"cashback":{"title":{"text":"Get {cb_percentage}% Cashback","textColor":"#FF645A"},"title2":{"text":"as PromoCash, when you pay your bill via Dineout Pay","boldTextColor":""}},"IDcashback":{"icon":"https://im1.dineout.co.in/images/uploads/misc/2020/Jun/24/group@3x.png","title":{"text":"Flat {id_percentage}% Instant Discount","textColor":"#FF645A"},"title1":{"text":"on Total Bill","textColor":"#FF645A","bgColor":"#FFF4F4"},"title2":{"text":"when you pay your bill via Dineout Pay","boldTextColor":""}},"promocash":{"icon":"https://im1.dineout.co.in/images/uploads/misc/2019/May/23/group33@3x.png","title2":{"text":"Additionaly, you can #Save extra upto {earning_percentage}%# on your bill using @AMNT@ Promocash","boldTextColor":"#3877D6"}},"note":{"text":"Pay your bill via Dineout Pay to save upto #5%# on your bill using @AMNT@ PromoCash & additionally, get #20% cashback#","color":"#696969","cashColor":"#3595ff"},"rdp":{"title":{"text":"View Restaurant Details","color":"#ffffff"},"gradients":["#65c7ff","#3595ff"],"primary_color":"#ff645a","secondary_color":"#ff645a","deepLink":"bangalore/biergarten-koramangala-south-bangalore-50533"},"action":{"title":{"text":"How it works?","color":"#3c79d3"},"deepLink":"dineout://web?title=Dineout Pay&link=https://www.dineout.co.in/dineout-pay/how-it-works&showNav=1","url":"/dineout-pay/how-it-works"}}}],"totalOfferDealText":""},{"cuisine":["Continental","North Indian","Fast Food"],"img":["https://im1.dineout.co.in/images/uploads/restaurant/sharpen/4/u/u/p48391-15501219495c64fbdd483e4.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/4/q/x/p48391-15476413855c3f2229e9b4c.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/4/r/s/p48391-15501219405c64fbd440790.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/4/i/q/p48391-15630184495d29c4d1cf990.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/4/b/a/p48391-15476414105c3f22424a173.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/4/d/y/p48391-15476414285c3f225485d72.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/4/n/p/p48391-15476414385c3f225ea297d.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/4/p/d/p48391-15476414495c3f22697f7db.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/4/y/b/p48391-15490166585c541e52f21ee.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/4/k/j/p48391-15490166675c541e5b1f8ff.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/4/u/c/p48391-15490166755c541e635caaa.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/4/m/u/p48391-15490166835c541e6bdf7f9.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/4/w/b/p48391-15490166925c541e74b0a10.jpg?w=400"],"locality_name":"Shanti Nagar","is_pf":"false","area_name":"Central Bangalore","is_accept_payment":true,"is_swor":true,"costFor2":"800","tags":["Breakfast","Breakfast","Pure Veg","Dineout Pay","Casual Dining","Shudh Shakahari","Steal 10","Valentine_Booking","Valentine_Deal","Must Try Vegetarian","Food 2019","14 Feb Blocking 2020","Welcome Back","Instant Discount","Reopened Restaurants","Delhi Bar Casual NI DC5","Delhi Casual NI Buffet Weekday DC1","Delhi Casual NI Buffet Weekend DC0","Bangalore Casual Buffet Weekday DC4","Bangalore Casual Buffet Weekend DC5","Best Cafes to Chill","Best Pure Veg","Best Pizza Places","Dineout Birthday","Bangalore Restaurants for RDP DC5 v1","Bangalore Restaurants for RDP DC7 v1","Top Pure Veg","Top Budget Friendly","Bangalore Restaurants for DC4 v2","Bangalore Restaurants for RDP C3 v2","Best Cafe and Desserts","Bangalore Restaurants for DC0 v3","Bangalore Restaurants for DC6 v3","Bangalore Restaurants for RDP C1 v3","Bangalore Restaurants for RDP C2 v3","Bangalore Restaurants for RDP C2 v3","Bangalore Restaurants for RDP C4 v3","Top North Indian"],"avg_rating":4.3,"r_id":48391,"profile_name":"The Bangalore Cafe","recency":0,"offers":["instant_discount##Flat {{Percentage_OFFER}}% Off the Total Bill"],"offer_type":["instant_discount"],"fullfillment":"true","n_regular_offers":0,"n_offers":1,"offer_data":{"title":"Offers available","smartpay_text":"Pay your restaurant bill via Dineout and get 20% cashback (up to Rs. 300)","more_offers_text":"","offers":[{"title_1":"Flat {{Percentage_OFFER}}% Off the Total Bill","labelText":"","labelColor":""}],"textColor":"#3595ff","tagColor":"#00c34e","tagId":1,"deepLink":"dineout://web?title=Dineout Pay&link=https://www.dineout.co.in/app-webview-smartpay"},"all_offer_data":{"title":"","smartpay_text":"Pay your restaurant bill via Dineout and get 20% cashback (up to Rs. 300)","more_offers_text":"","offers":[{"title":"Flat {{Percentage_OFFER}}% Off the Total Bill","type":"","offerValidityAr":[{"day":"Sunday","startTime":0,"endTime":1439},{"day":"Monday","startTime":0,"endTime":1439},{"day":"Tuesday","startTime":0,"endTime":1439},{"day":"Wednesday","startTime":0,"endTime":1439},{"day":"Thursday","startTime":0,"endTime":1439},{"day":"Friday","startTime":0,"endTime":1439},{"day":"Saturday","startTime":0,"endTime":1439}],"offerValidityStr":"Mon-Sun 00:00 AM-11:59 PM"}],"textColor":"#3595ff"},"gpAlert":"","events_obj":[],"cta":[],"event_text":"","restaurant_open_close_ar":[],"restaurant_closed_status":false,"restaurant_closed_message":"","rdp_link":"/bangalore/the-bangalore-cafe-shanti-nagar-central-bangalore-48391","restaurantType":2,"ctaHeader":"","buyFrom":1664084930,"tickets":{"show_count":1,"data":[]},"type":"restaurant","hotelName":"","hasPreBook":false,"isSponsered":0,"persuassionArr":[],"more_offers_text":"","more_all_offers_text":"","tagInfo":[{"text":"Pay bill and get 10% cashback","textColor":"#333333","tagColor":"#FFF4F4","tagTextColor":"#F67373","tagText":"Dineout Pay","url":"/dineout-pay/instant-discount/how-it-works","deepLink":"dineout://web?title=Dineout Pay&link=https://www.dineout.co.in/app-webview-smartpay","tagIcon":"https://im1.dineout.co.in/images/uploads/misc/2019/Jan/17/information.png","action":{"tag":{"title":{"text":"Dineout Pay Offer","color":"#ffffff"},"gradients":["#28e397","#00c34e"]},"restName":{"text":"at The Bangalore Cafe, Shanti Nagar","color":"#696969"},"cashbacks":[{"title1":{"text":"Usable","color":"#696969"},"title2":{"text":"PromoCash","color":"#3595FF","icon":"https://im1.dineout.co.in/images/uploads/misc/2019/May/23/group33@3x.png"},"cb":{"text":"#5#%","color":"#141723"},"title3":{"text":"#Of Bill Amount#","color":"#141723"},"bg_color":"#eeeeee"},{"title1":{"text":"Additional","color":"#696969"},"title2":{"text":"Cashback","color":"#00c34e"},"cb":{"text":"#20#%","color":"#141723"},"title3":{"text":"#Of Payable Amount#","color":"#141723"},"bg_color":"#eeeeee"}],"header":{"primary_color":"#fff4f4","secondary_color":"#fff4f4","imageLogo":"https://im1.dineout.co.in/images/uploads/misc/2020/Jun/24/group15@3x.png","icon":"https://im1.dineout.co.in/images/uploads/misc/2020/Jun/24/address@3x.png","title":{"text":"","sub_title":"","sub_titleColor":"#999999","textColor":""}},"cashback":{"title":{"text":"Get {cb_percentage}% Cashback","textColor":"#FF645A"},"title2":{"text":"as PromoCash, when you pay your bill via Dineout Pay","boldTextColor":""}},"IDcashback":{"icon":"https://im1.dineout.co.in/images/uploads/misc/2020/Jun/24/group@3x.png","title":{"text":"Flat {id_percentage}% Instant Discount","textColor":"#FF645A"},"title1":{"text":"on Total Bill","textColor":"#FF645A","bgColor":"#FFF4F4"},"title2":{"text":"when you pay your bill via Dineout Pay","boldTextColor":""}},"promocash":{"icon":"https://im1.dineout.co.in/images/uploads/misc/2019/May/23/group33@3x.png","title2":{"text":"Additionaly, you can #Save extra upto {earning_percentage}%# on your bill using @AMNT@ Promocash","boldTextColor":"#3877D6"}},"note":{"text":"Pay your bill via Dineout Pay to save upto #5%# on your bill using @AMNT@ PromoCash & additionally, get #20% cashback#","color":"#696969","cashColor":"#3595ff"},"rdp":{"title":{"text":"View Restaurant Details","color":"#ffffff"},"gradients":["#65c7ff","#3595ff"],"primary_color":"#ff645a","secondary_color":"#ff645a","deepLink":"bangalore/the-bangalore-cafe-shanti-nagar-central-bangalore-48391"},"action":{"title":{"text":"How it works?","color":"#3c79d3"},"deepLink":"dineout://web?title=Dineout Pay&link=https://www.dineout.co.in/dineout-pay/how-it-works&showNav=1","url":"/dineout-pay/how-it-works"}}}],"totalOfferDealText":""},{"cuisine":["Italian"],"img":["https://im1.dineout.co.in/images/uploads/restaurant/sharpen/8/g/h/p860-16107933836002c1a7713ed.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/8/j/l/p860-1610703192600161582eb0b.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/8/s/d/p860-1610703279600161afec3c6.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/8/j/d/p860-1610703348600161f4ad49d.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/8/o/z/p860-16107034576001626147823.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/8/g/g/p860-16107034746001627296326.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/8/k/s/p860-16107031386001612248638.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/8/g/z/p860-1610703272600161a81f926.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/8/j/j/p860-1610703154600161320646e.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/8/t/w/p860-16107031466001612a43afc.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/8/j/r/p860-1610703238600161869c1d6.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/8/k/v/p860-16107032456001618dd58f1.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/8/u/q/p860-1610703177600161493f405.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/8/d/t/p860-16107034666001626a588dd.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/8/j/s/p860-1610703341600161ed84f4e.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/8/t/z/p860-16107034826001627aadd33.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/8/g/c/p860-1610703264600161a0bcdfe.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/8/w/s/p860-16107033866001621a86c6f.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/8/l/t/p860-16107032566001619894bee.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/8/w/f/p860-16107031626001613a03eb8.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/8/t/z/p860-1610703379600162138ed09.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/8/f/g/p860-16107032006001616042f24.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/8/g/v/p860-16107033726001620c3147d.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/8/a/o/p860-161070336460016204da376.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/8/z/p/p860-16107032316001617f67184.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/8/v/y/p860-1610703295600161bf5515c.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/8/l/e/p860-1610703287600161b769387.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/8/k/h/p860-161070349760016289870f0.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/8/c/x/p860-161070350560016291df2e3.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/8/u/h/p860-161070351360016299dd038.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/8/e/i/p860-1610703522600162a29f0b3.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/8/x/x/p860-161070318460016150ec694.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/g/r/p5068-15650004835d480323e1f77.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/l/q/p5068-15650004765d48031c6256e.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/t/h/p5068-15650004925d48032c448be.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/e/j/p5068-15650004995d480333f35e8.jpg?w=400"],"locality_name":"Vittal Mallya Road","is_pf":"false","area_name":"Central Bangalore","is_accept_payment":true,"is_swor":false,"costFor2":"1,600","tags":["Happy Hours","Dineout Pay","Casual Dining","Outdoor Seating","CNY","Places to Celebrate","Hidden Gems","k a","Drink Festival","Valentine_Booking","Valentine_Deal","bangalore block","Independence_Deal","Gandhi Jayanti","HSBC Cashback","14 Feb Blocking 2020","Todays Special","Love Aajkal","Ban Alcohol Block","BlockAfter8Pm","Welcome Back","Instant Discount","Reopened Restaurants","31DecBlock","Fine Dine 2020","Trending in Central Bangalore","Raising the Bar","Bangalore Alcohol Shut","Delhi Bar Casual NI DC5","Delhi Casual NI Buffet Weekday DC1","Delhi Casual NI Buffet Weekend DC0","Bangalore Casual Buffet Weekday DC4","Bangalore Casual Buffet Weekend DC5","Best Outdoor and Rooftop","Best Pizza Places","Dineout Birthday","Bangalore Restaurants for RDP DC5 v1","Bangalore Restaurants for RDP DC7 v1","Bangalore Restaurants for DC4 v2","Bangalore Restaurants for DC5 v3","Bangalore Restaurants for RDP C0 v3","Bangalore Restaurants for RDP C4 v3"],"avg_rating":4.5,"r_id":5068,"profile_name":"Toscano","recency":0,"offers":["instant_discount##Flat {{Percentage_OFFER}}% Off the Total Bill"],"offer_type":["instant_discount"],"fullfillment":"true","n_regular_offers":0,"n_offers":1,"offer_data":{"title":"Offers available","smartpay_text":"Pay your restaurant bill via Dineout and get 20% cashback (up to Rs. 300)","more_offers_text":"","offers":[{"title_1":"Flat {{Percentage_OFFER}}% Off the Total Bill","labelText":"","labelColor":""}],"textColor":"#3595ff","tagColor":"#00c34e","tagId":1,"deepLink":"dineout://web?title=Dineout Pay&link=https://www.dineout.co.in/app-webview-smartpay"},"all_offer_data":{"title":"","smartpay_text":"Pay your restaurant bill via Dineout and get 20% cashback (up to Rs. 300)","more_offers_text":"","offers":[{"title":"Flat {{Percentage_OFFER}}% Off the Total Bill","type":"","offerValidityAr":[{"day":"Monday","startTime":0,"endTime":1439},{"day":"Tuesday","startTime":0,"endTime":1439},{"day":"Wednesday","startTime":0,"endTime":1439},{"day":"Thursday","startTime":0,"endTime":1439}],"offerValidityStr":"Mon-Thu 00:00 AM-11:59 PM"}],"textColor":"#3595ff"},"gpAlert":"","events_obj":[],"cta":[],"event_text":"","restaurant_open_close_ar":[],"restaurant_closed_status":false,"restaurant_closed_message":"","rdp_link":"/bangalore/toscano-vittal-mallya-road-central-bangalore-5068","restaurantType":2,"ctaHeader":"","buyFrom":1664084930,"tickets":{"show_count":1,"data":[]},"type":"restaurant","hotelName":"UB City","hasPreBook":false,"isSponsered":0,"persuassionArr":[],"more_offers_text":"","more_all_offers_text":"","tagInfo":[{"text":"Pay bill and get 10% cashback","textColor":"#333333","tagColor":"#FFF4F4","tagTextColor":"#F67373","tagText":"Dineout Pay","url":"/dineout-pay/instant-discount/how-it-works","deepLink":"dineout://web?title=Dineout Pay&link=https://www.dineout.co.in/app-webview-smartpay","tagIcon":"https://im1.dineout.co.in/images/uploads/misc/2019/Jan/17/information.png","action":{"tag":{"title":{"text":"Dineout Pay Offer","color":"#ffffff"},"gradients":["#28e397","#00c34e"]},"restName":{"text":"at Toscano, Vittal Mallya Road","color":"#696969"},"cashbacks":[{"title1":{"text":"Usable","color":"#696969"},"title2":{"text":"PromoCash","color":"#3595FF","icon":"https://im1.dineout.co.in/images/uploads/misc/2019/May/23/group33@3x.png"},"cb":{"text":"#5#%","color":"#141723"},"title3":{"text":"#Of Bill Amount#","color":"#141723"},"bg_color":"#eeeeee"},{"title1":{"text":"Additional","color":"#696969"},"title2":{"text":"Cashback","color":"#00c34e"},"cb":{"text":"#20#%","color":"#141723"},"title3":{"text":"#Of Payable Amount#","color":"#141723"},"bg_color":"#eeeeee"}],"header":{"primary_color":"#fff4f4","secondary_color":"#fff4f4","imageLogo":"https://im1.dineout.co.in/images/uploads/misc/2020/Jun/24/group15@3x.png","icon":"https://im1.dineout.co.in/images/uploads/misc/2020/Jun/24/address@3x.png","title":{"text":"","sub_title":"","sub_titleColor":"#999999","textColor":""}},"cashback":{"title":{"text":"Get {cb_percentage}% Cashback","textColor":"#FF645A"},"title2":{"text":"as PromoCash, when you pay your bill via Dineout Pay","boldTextColor":""}},"IDcashback":{"icon":"https://im1.dineout.co.in/images/uploads/misc/2020/Jun/24/group@3x.png","title":{"text":"Flat {id_percentage}% Instant Discount","textColor":"#FF645A"},"title1":{"text":"on Total Bill","textColor":"#FF645A","bgColor":"#FFF4F4"},"title2":{"text":"when you pay your bill via Dineout Pay","boldTextColor":""}},"promocash":{"icon":"https://im1.dineout.co.in/images/uploads/misc/2019/May/23/group33@3x.png","title2":{"text":"Additionaly, you can #Save extra upto {earning_percentage}%# on your bill using @AMNT@ Promocash","boldTextColor":"#3877D6"}},"note":{"text":"Pay your bill via Dineout Pay to save upto #5%# on your bill using @AMNT@ PromoCash & additionally, get #20% cashback#","color":"#696969","cashColor":"#3595ff"},"rdp":{"title":{"text":"View Restaurant Details","color":"#ffffff"},"gradients":["#65c7ff","#3595ff"],"primary_color":"#ff645a","secondary_color":"#ff645a","deepLink":"bangalore/toscano-vittal-mallya-road-central-bangalore-5068"},"action":{"title":{"text":"How it works?","color":"#3c79d3"},"deepLink":"dineout://web?title=Dineout Pay&link=https://www.dineout.co.in/dineout-pay/how-it-works&showNav=1","url":"/dineout-pay/how-it-works"}}}],"totalOfferDealText":"","message":"you can pay after reseervation"},{"cuisine":["Asian","North Indian","European","Italian"],"img":["https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/u/f/p57949-15604908195d033343f04f5.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/w/t/p57949-15604908095d03333933f26.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/a/r/p57949-15604908305d03334e6a8c7.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/j/d/p57949-15599831215cfb741157bf9.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/v/w/p57949-15599831285cfb7418bbb76.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/u/r/p57949-15599831355cfb741f89a8d.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/r/w/p57949-15599831425cfb742667b38.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/j/w/p57949-15599831495cfb742d31804.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/r/b/p57949-15604906485d0332988a705.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/r/f/p57949-15604906675d0332ab440bb.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/q/a/p57949-15604906765d0332b40cb90.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/v/x/p57949-15604906865d0332be3af7c.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/x/d/p57949-15604906965d0332c81e89a.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/p/h/p57949-15604907165d0332dca005d.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/e/u/p57949-15604907365d0332f06f302.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/w/e/p57949-15604907595d0333077ee3d.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/c/s/p57949-15604907695d033311e60e1.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/a/b/p57949-15604907805d03331c20dca.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/k/i/p57949-16148634856040dc7d6076b.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/s/x/p57949-16148634546040dc5e3ae65.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/r/i/p57949-16148634606040dc645e717.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/o/z/p57949-16148634926040dc846d494.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/g/x/p57949-16148634796040dc7720db7.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/q/i/p57949-16148634666040dc6ac3009.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/c/r/p57949-16148634726040dc7092760.jpg?w=400"],"locality_name":"Indiranagar","is_pf":"false","area_name":"East Bangalore","is_accept_payment":true,"is_swor":true,"costFor2":"2,200","tags":["Dineout Pay","Casual Dining","Nightlife","Takeaway","Trending","k a","Halloween Special","Valentine_Deal","Independence_Deal","Gandhi Jayanti","24 December Block","25 December Block","31 December Block","Drinks 2019","Todays Special","Deals At 8","Park Plus","Ban Alcohol Block","Contactless Dining","Welcome Back","Instant Discount","Bill se Aazaadi","Budweiser","Pawri Specials","Trending in Indiranagar","Bangalore Alcohol Shut","Delhi Bar Casual NI DC5","Delhi Casual NI Buffet Weekday DC1","Delhi Casual NI Buffet Weekend DC0","Bangalore Casual Buffet Weekday DC4","Bangalore Casual Buffet Weekend DC5","Best Family Dining","Best Pizza Places","Dineout Birthday","Bangalore Restaurants for DC1 v1","Bangalore Restaurants for RDP DC3 v1","Bangalore Restaurants for DC2 v2","Best After Hours","Best Diners Choice","Bangalore Restaurants for DC0 v3","Bangalore Restaurants for RDP C1 v3","Best in Indiranagar"],"avg_rating":4.2,"r_id":57949,"profile_name":"Daddy","recency":0,"offers":["instant_discount##Flat {{Percentage_OFFER}}% Off the Total Bill"],"offer_type":["instant_discount"],"fullfillment":"true","n_regular_offers":0,"n_offers":1,"offer_data":{"title":"Offers available","smartpay_text":"Pay your restaurant bill via Dineout and get 20% cashback (up to Rs. 300)","more_offers_text":"","offers":[{"title_1":"Flat {{Percentage_OFFER}}% Off the Total Bill","labelText":"","labelColor":""}],"textColor":"#3595ff","tagColor":"#00c34e","tagId":1,"deepLink":"dineout://web?title=Dineout Pay&link=https://www.dineout.co.in/app-webview-smartpay"},"all_offer_data":{"title":"","smartpay_text":"Pay your restaurant bill via Dineout and get 20% cashback (up to Rs. 300)","more_offers_text":"","offers":[{"title":"Flat {{Percentage_OFFER}}% Off the Total Bill","type":"","offerValidityAr":[{"day":"Sunday","startTime":0,"endTime":1439},{"day":"Monday","startTime":0,"endTime":1439},{"day":"Tuesday","startTime":0,"endTime":1439},{"day":"Wednesday","startTime":0,"endTime":1439},{"day":"Friday","startTime":0,"endTime":1439},{"day":"Saturday","startTime":0,"endTime":1439}],"offerValidityStr":"Mon-Wed 00:00 AM-11:59 PM, Fri-Sun 00:00 AM-11:59 PM"}],"textColor":"#3595ff"},"gpAlert":"","events_obj":[],"cta":[],"event_text":"","restaurant_open_close_ar":[],"restaurant_closed_status":false,"restaurant_closed_message":"","rdp_link":"/bangalore/daddy-indiranagar-east-bangalore-57949","restaurantType":2,"ctaHeader":"","buyFrom":1664084930,"tickets":{"show_count":1,"data":[]},"type":"restaurant","hotelName":"","hasPreBook":false,"isSponsered":0,"persuassionArr":[],"more_offers_text":"","more_all_offers_text":"","tagInfo":[{"text":"Pay bill and get 10% cashback","textColor":"#333333","tagColor":"#FFF4F4","tagTextColor":"#F67373","tagText":"Dineout Pay","url":"/dineout-pay/instant-discount/how-it-works","deepLink":"dineout://web?title=Dineout Pay&link=https://www.dineout.co.in/app-webview-smartpay","tagIcon":"https://im1.dineout.co.in/images/uploads/misc/2019/Jan/17/information.png","action":{"tag":{"title":{"text":"Dineout Pay Offer","color":"#ffffff"},"gradients":["#28e397","#00c34e"]},"restName":{"text":"at Daddy, Indiranagar","color":"#696969"},"cashbacks":[{"title1":{"text":"Usable","color":"#696969"},"title2":{"text":"PromoCash","color":"#3595FF","icon":"https://im1.dineout.co.in/images/uploads/misc/2019/May/23/group33@3x.png"},"cb":{"text":"#5#%","color":"#141723"},"title3":{"text":"#Of Bill Amount#","color":"#141723"},"bg_color":"#eeeeee"},{"title1":{"text":"Additional","color":"#696969"},"title2":{"text":"Cashback","color":"#00c34e"},"cb":{"text":"#20#%","color":"#141723"},"title3":{"text":"#Of Payable Amount#","color":"#141723"},"bg_color":"#eeeeee"}],"header":{"primary_color":"#fff4f4","secondary_color":"#fff4f4","imageLogo":"https://im1.dineout.co.in/images/uploads/misc/2020/Jun/24/group15@3x.png","icon":"https://im1.dineout.co.in/images/uploads/misc/2020/Jun/24/address@3x.png","title":{"text":"","sub_title":"","sub_titleColor":"#999999","textColor":""}},"cashback":{"title":{"text":"Get {cb_percentage}% Cashback","textColor":"#FF645A"},"title2":{"text":"as PromoCash, when you pay your bill via Dineout Pay","boldTextColor":""}},"IDcashback":{"icon":"https://im1.dineout.co.in/images/uploads/misc/2020/Jun/24/group@3x.png","title":{"text":"Flat {id_percentage}% Instant Discount","textColor":"#FF645A"},"title1":{"text":"on Total Bill","textColor":"#FF645A","bgColor":"#FFF4F4"},"title2":{"text":"when you pay your bill via Dineout Pay","boldTextColor":""}},"promocash":{"icon":"https://im1.dineout.co.in/images/uploads/misc/2019/May/23/group33@3x.png","title2":{"text":"Additionaly, you can #Save extra upto {earning_percentage}%# on your bill using @AMNT@ Promocash","boldTextColor":"#3877D6"}},"note":{"text":"Pay your bill via Dineout Pay to save upto #5%# on your bill using @AMNT@ PromoCash & additionally, get #20% cashback#","color":"#696969","cashColor":"#3595ff"},"rdp":{"title":{"text":"View Restaurant Details","color":"#ffffff"},"gradients":["#65c7ff","#3595ff"],"primary_color":"#ff645a","secondary_color":"#ff645a","deepLink":"bangalore/daddy-indiranagar-east-bangalore-57949"},"action":{"title":{"text":"How it works?","color":"#3c79d3"},"deepLink":"dineout://web?title=Dineout Pay&link=https://www.dineout.co.in/dineout-pay/how-it-works&showNav=1","url":"/dineout-pay/how-it-works"}}}],"totalOfferDealText":""},{"cuisine":["Continental","Italian","Desserts","Bengali"],"img":["https://im1.dineout.co.in/images/uploads/restaurant/sharpen/2/g/h/p29533-14807615365842a0c04da29.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/2/c/m/p29533-14807615405842a0c40f12c.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/2/s/i/p29533-14807615435842a0c79b5e5.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/2/o/k/p29533-14807615475842a0cb56105.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/2/o/o/p29533-14807615505842a0cee5143.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/2/o/r/p29533-14807615595842a0d7050da.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/2/n/o/p29533-14807615625842a0da660bf.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/p/s/p5889-16034542855f92c54d3e5f9.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/s/y/p5889-15669708475d6613df873e5.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/c/y/p5889-16034542935f92c5556f051.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/m/a/p5889-16067262355fc4b25b705a3.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/o/n/p5889-164994627262582ea0befb6.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/p/m/p5889-164994628162582ea914ec1.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/f/t/p5889-164994628862582eb083fdc.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/x/i/p5889-164994629862582eba72678.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/m/g/p5889-164994630562582ec10b8ee.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/z/f/p5889-164994631062582ec6f2dee.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/u/b/p5889-164994632062582ed0dd71f.jpg?w=400"],"locality_name":"MG Road","is_pf":"false","area_name":"Central Bangalore","is_accept_payment":true,"is_swor":true,"costFor2":"1,200","tags":["Cafe","Dineout Pay","Outdoor Seating","CNY","Paypal","Raksha Bandhan","Chai Coffee","Trending","Valentine_Booking","Valentines Special","bangalore block","Best Cafes","31 December Block","1 January Block","Welcome Back","Trending Now","Instant Discount","Bill se Aazaadi","Bangalores Finest","Best of Food 2021","Best of 2021","Delhi Bar Casual Cafe Fine DC4","Delhi Bar Casual NI DC5","Delhi Cafe Fine QSR FastFood DC3","Bangalore Bar Casual Cafe DC0","Bangalore QSR PureVeg Cafe DC1","Movie Special","Best Cafes to Chill","Best Outdoor and Rooftop","Best Family Dining","Best Budget Friendly Restaurants","Dineout Birthday","Bangalore Restaurants for RDP DC5 v1","Bangalore Restaurants for RDP DC7 v1","Skip IB","Top Outdoor Rooftop","Top Cafes","Bangalore Restaurants for DC7 v2","Best Metaverse Restaurant","Best Metaverse Restaurant","Bangalore Restaurants for DC1 v3"],"avg_rating":4.3,"r_id":29533,"profile_name":"Cafe Azzure","recency":0,"offers":["instant_discount##Flat {{Percentage_OFFER}}% Off the Total Bill"],"offer_type":["instant_discount"],"fullfillment":"true","n_regular_offers":0,"n_offers":1,"offer_data":{"title":"Offers available","smartpay_text":"Pay your restaurant bill via Dineout and get 20% cashback (up to Rs. 300)","more_offers_text":"","offers":[{"title_1":"Flat {{Percentage_OFFER}}% Off the Total Bill","labelText":"","labelColor":""}],"textColor":"#3595ff","tagColor":"#00c34e","tagId":1,"deepLink":"dineout://web?title=Dineout Pay&link=https://www.dineout.co.in/app-webview-smartpay"},"all_offer_data":{"title":"","smartpay_text":"Pay your restaurant bill via Dineout and get 20% cashback (up to Rs. 300)","more_offers_text":"","offers":[{"title":"Flat {{Percentage_OFFER}}% Off the Total Bill","type":"","offerValidityAr":[{"day":"Sunday","startTime":0,"endTime":1439},{"day":"Monday","startTime":0,"endTime":1439},{"day":"Tuesday","startTime":0,"endTime":1439},{"day":"Wednesday","startTime":0,"endTime":1439},{"day":"Thursday","startTime":0,"endTime":1439},{"day":"Friday","startTime":0,"endTime":1439},{"day":"Saturday","startTime":0,"endTime":1439}],"offerValidityStr":"Mon-Sun 00:00 AM-11:59 PM"}],"textColor":"#3595ff"},"gpAlert":"","events_obj":[],"cta":[],"event_text":"","restaurant_open_close_ar":[],"restaurant_closed_status":false,"restaurant_closed_message":"","rdp_link":"/bangalore/cafe-azzure-mg-road-central-bangalore-29533","restaurantType":2,"ctaHeader":"","buyFrom":1664084930,"tickets":{"show_count":1,"data":[]},"type":"restaurant","hotelName":"","hasPreBook":false,"isSponsered":0,"persuassionArr":[],"more_offers_text":"","more_all_offers_text":"","tagInfo":[{"text":"Pay bill and get 10% cashback","textColor":"#333333","tagColor":"#FFF4F4","tagTextColor":"#F67373","tagText":"Dineout Pay","url":"/dineout-pay/instant-discount/how-it-works","deepLink":"dineout://web?title=Dineout Pay&link=https://www.dineout.co.in/app-webview-smartpay","tagIcon":"https://im1.dineout.co.in/images/uploads/misc/2019/Jan/17/information.png","action":{"tag":{"title":{"text":"Dineout Pay Offer","color":"#ffffff"},"gradients":["#28e397","#00c34e"]},"restName":{"text":"at Cafe Azzure, MG Road","color":"#696969"},"cashbacks":[{"title1":{"text":"Usable","color":"#696969"},"title2":{"text":"PromoCash","color":"#3595FF","icon":"https://im1.dineout.co.in/images/uploads/misc/2019/May/23/group33@3x.png"},"cb":{"text":"#5#%","color":"#141723"},"title3":{"text":"#Of Bill Amount#","color":"#141723"},"bg_color":"#eeeeee"},{"title1":{"text":"Additional","color":"#696969"},"title2":{"text":"Cashback","color":"#00c34e"},"cb":{"text":"#20#%","color":"#141723"},"title3":{"text":"#Of Payable Amount#","color":"#141723"},"bg_color":"#eeeeee"}],"header":{"primary_color":"#fff4f4","secondary_color":"#fff4f4","imageLogo":"https://im1.dineout.co.in/images/uploads/misc/2020/Jun/24/group15@3x.png","icon":"https://im1.dineout.co.in/images/uploads/misc/2020/Jun/24/address@3x.png","title":{"text":"","sub_title":"","sub_titleColor":"#999999","textColor":""}},"cashback":{"title":{"text":"Get {cb_percentage}% Cashback","textColor":"#FF645A"},"title2":{"text":"as PromoCash, when you pay your bill via Dineout Pay","boldTextColor":""}},"IDcashback":{"icon":"https://im1.dineout.co.in/images/uploads/misc/2020/Jun/24/group@3x.png","title":{"text":"Flat {id_percentage}% Instant Discount","textColor":"#FF645A"},"title1":{"text":"on Total Bill","textColor":"#FF645A","bgColor":"#FFF4F4"},"title2":{"text":"when you pay your bill via Dineout Pay","boldTextColor":""}},"promocash":{"icon":"https://im1.dineout.co.in/images/uploads/misc/2019/May/23/group33@3x.png","title2":{"text":"Additionaly, you can #Save extra upto {earning_percentage}%# on your bill using @AMNT@ Promocash","boldTextColor":"#3877D6"}},"note":{"text":"Pay your bill via Dineout Pay to save upto #5%# on your bill using @AMNT@ PromoCash & additionally, get #20% cashback#","color":"#696969","cashColor":"#3595ff"},"rdp":{"title":{"text":"View Restaurant Details","color":"#ffffff"},"gradients":["#65c7ff","#3595ff"],"primary_color":"#ff645a","secondary_color":"#ff645a","deepLink":"bangalore/cafe-azzure-mg-road-central-bangalore-29533"},"action":{"title":{"text":"How it works?","color":"#3c79d3"},"deepLink":"dineout://web?title=Dineout Pay&link=https://www.dineout.co.in/dineout-pay/how-it-works&showNav=1","url":"/dineout-pay/how-it-works"}}}],"totalOfferDealText":""},{"cuisine":["Mexican"],"img":["https://im1.dineout.co.in/images/uploads/restaurant/sharpen/1/y/t/p1258-15517088875c7d32d7331ff.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/1/e/n/p1258-163620177661867530eb93f.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/1/r/v/p1258-163620181161867553376f3.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/1/o/x/p1258-16362017706186752a5723a.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/1/x/u/p1258-163620179761867545d80da.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/1/b/f/p1258-1636201784618675384848c.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/1/u/v/p1258-16362017906186753ee0f6a.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/1/l/k/p1258-16362018046186754c8afa0.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/1/s/d/p1258-15517088965c7d32e059615.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/1/j/i/p1258-15517089085c7d32ec40f28.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/1/r/e/p1258-15517088775c7d32cd7b02f.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/1/f/c/p1258-15517091025c7d33ae0320b.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/1/c/o/p1258-15517090825c7d339b0021d.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/1/h/d/p1258-15517091075c7d33b3946a2.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/1/k/z/p1258-15517091135c7d33b9c0f31.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/1/a/j/p1258-15517091195c7d33bf19469.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/1/o/v/p1258-15517091255c7d33c5c9f6b.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/1/n/d/p1258-15517091315c7d33cb1c223.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/1/q/p/p1258-15517091365c7d33d09783a.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/1/x/h/p1258-15517091535c7d33e11068f.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/1/z/s/p1258-15517090925c7d33a4c7a02.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/1/g/r/p1258-15517091415c7d33d5c12d7.jpg?w=400"],"locality_name":"Vittal Mallya Road","is_pf":"false","area_name":"Central Bangalore","is_accept_payment":true,"is_swor":true,"costFor2":"1,800","tags":["Dineout Pay","Casual Dining","TFA","Popularly Priced","Outdoor Seating","Diwali Special Collection","Places to Celebrate","Cool and Casual","Best Bars and Pubs","Gourmet Passport","Takeaway","k a","Halloween Special","Gandhi Jayanti","Eat Good","Ban Alcohol Block","Gourmet Passport Delivery","Contactless Dining","Welcome Back","Gourmet Takeaway","Instant Discount","DP 2020","Pawri Specials","DP Food","Raising the Bar","Bangalore Alcohol Shut","Delhi Bar Casual Cafe Fine DC4","Delhi Bar Casual NI DC2","Delhi Bar Casual NI DC5","Bangalore Bar Casual DC2","Bangalore Bar Casual NI DC3","Best Places to Drink","Best Outdoor and Rooftop","Dineout Birthday","Bangalore Restaurants for DC0 v1","Bangalore Restaurants for RDP DC1 v1","Bangalore Restaurants for DC6 v1","Bangalore Restaurants for DC4 v2","Bangalore Restaurants for DC0 v3","Bangalore Restaurants for RDP C1 v3","Best Places to Drinks"],"avg_rating":4.3,"r_id":1258,"profile_name":"Sanchez","recency":0,"offers":["instant_discount##Flat {{Percentage_OFFER}}% Off the Total Bill"],"offer_type":["instant_discount"],"fullfillment":"true","n_regular_offers":0,"n_offers":1,"offer_data":{"title":"Offers available","smartpay_text":"Pay your restaurant bill via Dineout and get 20% cashback (up to Rs. 300)","more_offers_text":"","offers":[{"title_1":"Flat {{Percentage_OFFER}}% Off the Total Bill","labelText":"","labelColor":""}],"textColor":"#3595ff","tagColor":"#00c34e","tagId":1,"deepLink":"dineout://web?title=Dineout Pay&link=https://www.dineout.co.in/app-webview-smartpay"},"all_offer_data":{"title":"","smartpay_text":"Pay your restaurant bill via Dineout and get 20% cashback (up to Rs. 300)","more_offers_text":"","offers":[{"title":"Flat {{Percentage_OFFER}}% Off the Total Bill","type":"","offerValidityAr":[{"day":"Sunday","startTime":0,"endTime":1439},{"day":"Monday","startTime":0,"endTime":1439},{"day":"Tuesday","startTime":0,"endTime":1439},{"day":"Wednesday","startTime":0,"endTime":1439},{"day":"Thursday","startTime":0,"endTime":1439},{"day":"Friday","startTime":0,"endTime":1439},{"day":"Saturday","startTime":0,"endTime":1439}],"offerValidityStr":"Mon-Sun 00:00 AM-11:59 PM"}],"textColor":"#3595ff"},"gpAlert":"","events_obj":[],"cta":[],"event_text":"","restaurant_open_close_ar":[],"restaurant_closed_status":false,"restaurant_closed_message":"","rdp_link":"/bangalore/sanchez-vittal-mallya-road-central-bangalore-1258","restaurantType":2,"ctaHeader":"","buyFrom":1664084930,"tickets":{"show_count":1,"data":[]},"type":"restaurant","hotelName":"UB City","hasPreBook":false,"isSponsered":0,"persuassionArr":[],"more_offers_text":"","more_all_offers_text":"","tagInfo":[{"text":"Pay bill and get 10% cashback","textColor":"#333333","tagColor":"#FFF4F4","tagTextColor":"#F67373","tagText":"Dineout Pay","url":"/dineout-pay/instant-discount/how-it-works","deepLink":"dineout://web?title=Dineout Pay&link=https://www.dineout.co.in/app-webview-smartpay","tagIcon":"https://im1.dineout.co.in/images/uploads/misc/2019/Jan/17/information.png","action":{"tag":{"title":{"text":"Dineout Pay Offer","color":"#ffffff"},"gradients":["#28e397","#00c34e"]},"restName":{"text":"at Sanchez, Vittal Mallya Road","color":"#696969"},"cashbacks":[{"title1":{"text":"Usable","color":"#696969"},"title2":{"text":"PromoCash","color":"#3595FF","icon":"https://im1.dineout.co.in/images/uploads/misc/2019/May/23/group33@3x.png"},"cb":{"text":"#5#%","color":"#141723"},"title3":{"text":"#Of Bill Amount#","color":"#141723"},"bg_color":"#eeeeee"},{"title1":{"text":"Additional","color":"#696969"},"title2":{"text":"Cashback","color":"#00c34e"},"cb":{"text":"#20#%","color":"#141723"},"title3":{"text":"#Of Payable Amount#","color":"#141723"},"bg_color":"#eeeeee"}],"header":{"primary_color":"#fff4f4","secondary_color":"#fff4f4","imageLogo":"https://im1.dineout.co.in/images/uploads/misc/2020/Jun/24/group15@3x.png","icon":"https://im1.dineout.co.in/images/uploads/misc/2020/Jun/24/address@3x.png","title":{"text":"","sub_title":"","sub_titleColor":"#999999","textColor":""}},"cashback":{"title":{"text":"Get {cb_percentage}% Cashback","textColor":"#FF645A"},"title2":{"text":"as PromoCash, when you pay your bill via Dineout Pay","boldTextColor":""}},"IDcashback":{"icon":"https://im1.dineout.co.in/images/uploads/misc/2020/Jun/24/group@3x.png","title":{"text":"Flat {id_percentage}% Instant Discount","textColor":"#FF645A"},"title1":{"text":"on Total Bill","textColor":"#FF645A","bgColor":"#FFF4F4"},"title2":{"text":"when you pay your bill via Dineout Pay","boldTextColor":""}},"promocash":{"icon":"https://im1.dineout.co.in/images/uploads/misc/2019/May/23/group33@3x.png","title2":{"text":"Additionaly, you can #Save extra upto {earning_percentage}%# on your bill using @AMNT@ Promocash","boldTextColor":"#3877D6"}},"note":{"text":"Pay your bill via Dineout Pay to save upto #5%# on your bill using @AMNT@ PromoCash & additionally, get #20% cashback#","color":"#696969","cashColor":"#3595ff"},"rdp":{"title":{"text":"View Restaurant Details","color":"#ffffff"},"gradients":["#65c7ff","#3595ff"],"primary_color":"#ff645a","secondary_color":"#ff645a","deepLink":"bangalore/sanchez-vittal-mallya-road-central-bangalore-1258"},"action":{"title":{"text":"How it works?","color":"#3c79d3"},"deepLink":"dineout://web?title=Dineout Pay&link=https://www.dineout.co.in/dineout-pay/how-it-works&showNav=1","url":"/dineout-pay/how-it-works"}}}],"totalOfferDealText":""},{"cuisine":["Continental","French","European","Health Food","Beverages"],"img":["https://im1.dineout.co.in/images/uploads/restaurant/sharpen/4/b/e/p4471-16353141816178ea05c332c.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/4/p/z/p4471-1647260989622f353d692da.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/4/w/q/p4471-1647260997622f3545bd212.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/4/t/r/p4471-1647261023622f355f9fb84.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/4/l/x/p4471-1647261031622f3567cbaf1.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/4/p/l/p4471-1647261070622f358ec74b7.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/4/p/b/p4471-1647261078622f35969a72a.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/4/m/d/p4471-1647261086622f359eb8e8a.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/4/b/u/p4471-1647261098622f35aa69d90.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/4/t/u/p4471-1647261107622f35b35ca4b.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/4/j/c/p4471-1647261141622f35d59e543.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/4/m/u/p4471-1647261153622f35e10dc76.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/4/l/r/p4471-1647261005622f354d6b2f7.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/4/a/w/p4471-1647261160622f35e832772.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/4/d/k/p4471-1647261013622f3555daeb7.jpg?w=400"],"locality_name":"Vittal Mallya Road","is_pf":"false","area_name":"Central Bangalore","is_accept_payment":true,"is_swor":true,"costFor2":"1,700","tags":["Breakfast","Cafe","Dineout Pay","TFA","Popularly Priced","Outdoor Seating","CNY","Chai Coffee","k a","Valentine_Booking","Valentines Special","Best Cafes","Gandhi Jayanti","HSBC Cashback","Steal at 20","Ban Alcohol Block","Safe To Eat Out","Welcome Back","Now Open","Dineout Passport","GpDp","Reopened Restaurants","Price Drop","Trending in Central Bangalore","Clearance Sale","Vaccinated Staff","DP Percentage","Bangalore Alcohol Shut","Delhi Cafe Fine QSR FastFood DC3","Bangalore Bar Casual Cafe DC0","Bangalore QSR PureVeg Cafe DC1","Dineout Passport Most Popular","Best Outdoor and Rooftop","Best Pizza Places","Dineout Birthday","Bangalore Restaurants for DC5 v1","Skip IB","Bangalore Restaurants for DC0 v2","Bangalore Restaurants for DC6 v2","Bangalore Restaurants for RDP C0 v2","Bangalore Restaurants for RDP C1 v2","Bangalore Restaurants for RDP C2 v2","Bangalore Restaurants for RDP C4 v2","Best Cafe and Desserts","Bangalore Restaurants for DC1 v3","Bangalore Trending Dineout Passport"],"avg_rating":4.4,"r_id":4471,"profile_name":"Cafe Noir","recency":0,"offers":["passport_discount##Flat {{Percentage_OFFER}}% Off the Total Bill",",free_discount_pin##15% Off the Total Bill"],"offer_type":["passport_discount","free_discount_pin"],"fullfillment":"true","n_regular_offers":0,"n_offers":2,"offer_data":{"title":"Offers available","smartpay_text":"Pay your restaurant bill via Dineout and get 20% cashback (up to Rs. 300)","more_offers_text":"1 more offer ","offers":[{"title_1":"Flat {{Percentage_OFFER}}% Off the Total Bill","labelText":"","labelColor":""},{"title_1":"15% Off the Total Bill","labelText":"","labelColor":""}],"textColor":"#3595ff","tagColor":"#00c34e","tagId":1,"deepLink":"dineout://web?title=Dineout Pay&link=https://www.dineout.co.in/app-webview-smartpay"},"all_offer_data":{"title":"","smartpay_text":"Pay your restaurant bill via Dineout and get 20% cashback (up to Rs. 300)","more_offers_text":"","offers":[{"title":"Flat {{Percentage_OFFER}}% Off the Total Bill","type":"","offerValidityAr":[{"day":"Sunday","startTime":0,"endTime":1439},{"day":"Monday","startTime":0,"endTime":1439},{"day":"Tuesday","startTime":0,"endTime":1439},{"day":"Wednesday","startTime":0,"endTime":1439},{"day":"Thursday","startTime":0,"endTime":1439},{"day":"Friday","startTime":0,"endTime":1439},{"day":"Saturday","startTime":0,"endTime":1439}],"offerValidityStr":"Mon-Sun 00:00 AM-11:59 PM"},{"title":"15% Off the Total Bill","type":"","offerValidityAr":[{"day":"Sunday","startTime":0,"endTime":1439},{"day":"Monday","startTime":0,"endTime":1439},{"day":"Tuesday","startTime":0,"endTime":1439},{"day":"Wednesday","startTime":0,"endTime":1439},{"day":"Thursday","startTime":0,"endTime":1439},{"day":"Friday","startTime":0,"endTime":1439},{"day":"Saturday","startTime":0,"endTime":1439}],"offerValidityStr":"Mon-Sun 00:00 AM-11:59 PM"}],"textColor":"#3595ff"},"gpAlert":"","events_obj":[],"cta":[],"event_text":"","restaurant_open_close_ar":[],"restaurant_closed_status":false,"restaurant_closed_message":"","rdp_link":"/bangalore/cafe-noir-vittal-mallya-road-central-bangalore-4471","restaurantType":2,"ctaHeader":"","buyFrom":1664084930,"tickets":{"show_count":1,"data":[]},"type":"restaurant","hotelName":"UB City","hasPreBook":false,"isSponsered":0,"persuassionArr":[],"more_offers_text":"1 more offer ","more_all_offers_text":"","tagInfo":[{"text":"Pay bill and get 10% cashback","textColor":"#333333","tagColor":"#FFF4F4","tagTextColor":"#F67373","tagText":"Dineout Pay","url":"/dineout-pay/how-it-works","deepLink":"dineout://web?title=Dineout Pay&link=https://www.dineout.co.in/app-webview-smartpay","tagIcon":"https://im1.dineout.co.in/images/uploads/misc/2019/Jan/17/information.png","action":{"tag":{"title":{"text":"Dineout Pay Offer","color":"#ffffff"},"gradients":["#28e397","#00c34e"]},"restName":{"text":"at Cafe Noir, Vittal Mallya Road","color":"#696969"},"cashbacks":[{"title1":{"text":"Usable","color":"#696969"},"title2":{"text":"PromoCash","color":"#3595FF","icon":"https://im1.dineout.co.in/images/uploads/misc/2019/May/23/group33@3x.png"},"cb":{"text":"#5#%","color":"#141723"},"title3":{"text":"#Of Bill Amount#","color":"#141723"},"bg_color":"#eeeeee"},{"title1":{"text":"Additional","color":"#696969"},"title2":{"text":"Cashback","color":"#00c34e"},"cb":{"text":"#20#%","color":"#141723"},"title3":{"text":"#Of Payable Amount#","color":"#141723"},"bg_color":"#eeeeee"}],"header":{"primary_color":"#fff4f4","secondary_color":"#fff4f4","imageLogo":"https://im1.dineout.co.in/images/uploads/misc/2020/Jun/24/group15@3x.png","icon":"https://im1.dineout.co.in/images/uploads/misc/2020/Jun/24/address@3x.png","title":{"text":"","sub_title":"","sub_titleColor":"#999999","textColor":""}},"cashback":{"title":{"text":"Get {cb_percentage}% Cashback","textColor":"#FF645A"},"title2":{"text":"as PromoCash, when you pay your bill via Dineout Pay","boldTextColor":""}},"IDcashback":{"icon":"https://im1.dineout.co.in/images/uploads/misc/2020/Jun/24/group@3x.png","title":{"text":"Flat {id_percentage}% Instant Discount","textColor":"#FF645A"},"title1":{"text":"on Total Bill","textColor":"#FF645A","bgColor":"#FFF4F4"},"title2":{"text":"when you pay your bill via Dineout Pay","boldTextColor":""}},"promocash":{"icon":"https://im1.dineout.co.in/images/uploads/misc/2019/May/23/group33@3x.png","title2":{"text":"Additionaly, you can #Save extra upto {earning_percentage}%# on your bill using @AMNT@ Promocash","boldTextColor":"#3877D6"}},"note":{"text":"Pay your bill via Dineout Pay to save upto #5%# on your bill using @AMNT@ PromoCash & additionally, get #20% cashback#","color":"#696969","cashColor":"#3595ff"},"rdp":{"title":{"text":"View Restaurant Details","color":"#ffffff"},"gradients":["#65c7ff","#3595ff"],"primary_color":"#ff645a","secondary_color":"#ff645a","deepLink":"bangalore/cafe-noir-vittal-mallya-road-central-bangalore-4471"},"action":{"title":{"text":"How it works?","color":"#3c79d3"},"deepLink":"dineout://web?title=Dineout Pay&link=https://www.dineout.co.in/dineout-pay/how-it-works&showNav=1","url":"/dineout-pay/how-it-works"}}}],"totalOfferDealText":""},{"cuisine":["North Indian","Continental","Chinese","Fast Food"],"img":["https://im1.dineout.co.in/images/uploads/restaurant/sharpen/6/s/t/p64100-15789184475e1c622faf327.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/6/z/i/p64100-15789184635e1c623f380ef.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/6/t/o/p64100-15789184735e1c6249390d6.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/6/o/d/p64100-15789184815e1c6251d61ae.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/6/z/k/p64100-15789184915e1c625b2779b.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/6/c/b/p64100-16018998305f7b0d36903df.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/6/b/q/p64100-16018998825f7b0d6a6dd46.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/6/e/s/p64100-16018999295f7b0d99ea54d.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/6/v/j/p64100-16019000185f7b0df29f4f1.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/6/d/w/p64100-16019000085f7b0de850b97.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/6/q/w/p64100-16019000315f7b0dffcb33f.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/6/d/t/p64100-16019000485f7b0e1064189.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/6/a/m/p64100-16019000005f7b0de042208.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/6/x/b/p64100-16019000615f7b0e1d577c9.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/6/p/q/p64100-16019000685f7b0e2496b6c.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/6/a/p/p64100-16019000555f7b0e1729ed2.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/6/m/x/p64100-16019000405f7b0e08ad9e0.jpg?w=400"],"locality_name":"Indiranagar","is_pf":"false","area_name":"East Bangalore","is_accept_payment":true,"is_swor":true,"costFor2":"1,500","tags":["Dineout Pay","Casual Dining","Best Bars and Pubs","Halloween Special","Budget Friendly","Bottoms Up","Valentines Special","Ban Alcohol Block","Welcome Back","Instant Discount","Budweiser","Reopened Restaurants","Pawri Specials","Raising the Bar","Kingfisher IPL","Bangalore Alcohol Shut","Best of Food 2021","Best of 2021","Delhi Bar Casual NI DC5","Delhi Casual NI Buffet Weekday DC1","Delhi Casual NI Buffet Weekend DC0","Bangalore Bar Casual DC2","Bangalore Bar Casual NI DC3","Best Places to Drink","Best Places to Eat","Best Budget Friendly Restaurants","Dineout Birthday","Bangalore Restaurants for DC0 v1","Bangalore Restaurants for RDP DC0 v1","Bangalore Restaurants for RDP DC1 v1","Bangalore Restaurants for RDP DC3 v1","Bangalore Restaurants for RDP DC4 v1","Bangalore Restaurants for RDP DC5 v1","Bangalore Restaurants for DC6 v1","Skip IB","Top Breweries","Top Budget Friendly","Bangalore Restaurants for DC2 v2","Bangalore Restaurants for DC2 v3","Bangalore Restaurants for DC6 v3","Bangalore Restaurants for RDP C1 v3","Bangalore Restaurants for RDP C2 v3","Bangalore Restaurants for RDP C4 v3","Bangalore Restaurants for RDP C5 v3","Top Multi Cuisine","Top North Indian","Trending in Bangalore","Best in Indiranagar","Best Places to Drinks"],"avg_rating":4.1,"r_id":64100,"profile_name":"21st Amendment Gastrobar","recency":0,"offers":["instant_discount##Flat {{Percentage_OFFER}}% Off the Total Bill"],"offer_type":["instant_discount"],"fullfillment":"true","n_regular_offers":0,"n_offers":1,"offer_data":{"title":"Offers available","smartpay_text":"Pay your restaurant bill via Dineout and get 20% cashback (up to Rs. 300)","more_offers_text":"","offers":[{"title_1":"Flat {{Percentage_OFFER}}% Off the Total Bill","labelText":"","labelColor":""}],"textColor":"#3595ff","tagColor":"#00c34e","tagId":1,"deepLink":"dineout://web?title=Dineout Pay&link=https://www.dineout.co.in/app-webview-smartpay"},"all_offer_data":{"title":"","smartpay_text":"Pay your restaurant bill via Dineout and get 20% cashback (up to Rs. 300)","more_offers_text":"","offers":[{"title":"Flat {{Percentage_OFFER}}% Off the Total Bill","type":"","offerValidityAr":[{"day":"Sunday","startTime":0,"endTime":1439},{"day":"Monday","startTime":0,"endTime":1439},{"day":"Tuesday","startTime":0,"endTime":1439},{"day":"Wednesday","startTime":0,"endTime":1439},{"day":"Thursday","startTime":0,"endTime":1439},{"day":"Friday","startTime":0,"endTime":1439},{"day":"Saturday","startTime":0,"endTime":1439}],"offerValidityStr":"Mon-Sun 00:00 AM-11:59 PM"}],"textColor":"#3595ff"},"gpAlert":"","events_obj":[],"cta":[],"event_text":"","restaurant_open_close_ar":[],"restaurant_closed_status":false,"restaurant_closed_message":"","rdp_link":"/bangalore/21st-amendment-gastrobar-indiranagar-east-bangalore-64100","restaurantType":2,"ctaHeader":"","buyFrom":1664084930,"tickets":{"show_count":1,"data":[]},"type":"restaurant","hotelName":"","hasPreBook":false,"isSponsered":0,"persuassionArr":[],"more_offers_text":"","more_all_offers_text":"","tagInfo":[{"text":"Pay bill and get 10% cashback","textColor":"#333333","tagColor":"#FFF4F4","tagTextColor":"#F67373","tagText":"Dineout Pay","url":"/dineout-pay/instant-discount/how-it-works","deepLink":"dineout://web?title=Dineout Pay&link=https://www.dineout.co.in/app-webview-smartpay","tagIcon":"https://im1.dineout.co.in/images/uploads/misc/2019/Jan/17/information.png","action":{"tag":{"title":{"text":"Dineout Pay Offer","color":"#ffffff"},"gradients":["#28e397","#00c34e"]},"restName":{"text":"at 21st Amendment Gastrobar, Indiranagar","color":"#696969"},"cashbacks":[{"title1":{"text":"Usable","color":"#696969"},"title2":{"text":"PromoCash","color":"#3595FF","icon":"https://im1.dineout.co.in/images/uploads/misc/2019/May/23/group33@3x.png"},"cb":{"text":"#5#%","color":"#141723"},"title3":{"text":"#Of Bill Amount#","color":"#141723"},"bg_color":"#eeeeee"},{"title1":{"text":"Additional","color":"#696969"},"title2":{"text":"Cashback","color":"#00c34e"},"cb":{"text":"#20#%","color":"#141723"},"title3":{"text":"#Of Payable Amount#","color":"#141723"},"bg_color":"#eeeeee"}],"header":{"primary_color":"#fff4f4","secondary_color":"#fff4f4","imageLogo":"https://im1.dineout.co.in/images/uploads/misc/2020/Jun/24/group15@3x.png","icon":"https://im1.dineout.co.in/images/uploads/misc/2020/Jun/24/address@3x.png","title":{"text":"","sub_title":"","sub_titleColor":"#999999","textColor":""}},"cashback":{"title":{"text":"Get {cb_percentage}% Cashback","textColor":"#FF645A"},"title2":{"text":"as PromoCash, when you pay your bill via Dineout Pay","boldTextColor":""}},"IDcashback":{"icon":"https://im1.dineout.co.in/images/uploads/misc/2020/Jun/24/group@3x.png","title":{"text":"Flat {id_percentage}% Instant Discount","textColor":"#FF645A"},"title1":{"text":"on Total Bill","textColor":"#FF645A","bgColor":"#FFF4F4"},"title2":{"text":"when you pay your bill via Dineout Pay","boldTextColor":""}},"promocash":{"icon":"https://im1.dineout.co.in/images/uploads/misc/2019/May/23/group33@3x.png","title2":{"text":"Additionaly, you can #Save extra upto {earning_percentage}%# on your bill using @AMNT@ Promocash","boldTextColor":"#3877D6"}},"note":{"text":"Pay your bill via Dineout Pay to save upto #5%# on your bill using @AMNT@ PromoCash & additionally, get #20% cashback#","color":"#696969","cashColor":"#3595ff"},"rdp":{"title":{"text":"View Restaurant Details","color":"#ffffff"},"gradients":["#65c7ff","#3595ff"],"primary_color":"#ff645a","secondary_color":"#ff645a","deepLink":"bangalore/21st-amendment-gastrobar-indiranagar-east-bangalore-64100"},"action":{"title":{"text":"How it works?","color":"#3c79d3"},"deepLink":"dineout://web?title=Dineout Pay&link=https://www.dineout.co.in/dineout-pay/how-it-works&showNav=1","url":"/dineout-pay/how-it-works"}}}],"totalOfferDealText":""},{"cuisine":["Finger Food"],"img":["https://im1.dineout.co.in/images/uploads/restaurant/sharpen/1/i/k/p1168-15992017925f51e2003d1f0.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/1/a/t/p1168-15992018005f51e2089c9a8.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/1/h/u/p1168-16353137866178e87aa99ce.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/1/p/x/p1168-16353137796178e87352f84.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/1/l/p/p1168-15720031515db2dd4f19e8e.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/1/o/a/p1168-14327944355566b54343e95.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/1/o/h/p1168-149072880958dab769c55ef.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/1/n/v/p1168-149072850558dab6391aba7.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/1/t/n/p1168-15992038855f51ea2dece44.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/1/e/k/p1168-15720031595db2dd57b1e81.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/1/v/z/p1168-149072850158dab63519641.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/1/t/r/p1168-15720031685db2dd602474e.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/1/o/v/p1168-15720031775db2dd69a7c1b.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/1/z/w/p1168-15720031865db2dd72c24a9.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/1/r/h/p1168-15720031955db2dd7b3e9c7.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/1/s/d/p1168-15992018355f51e22bb1035.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/1/d/o/p1168-15992038785f51ea269aa0c.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/1/y/j/p1168-15720032205db2dd94bce22.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/1/p/m/p1168-15720032035db2dd83d5dec.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/1/g/y/p1168-15720032125db2dd8c50e30.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/1/v/l/p1168-15992018125f51e2145f26f.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/1/p/u/p1168-149072880058dab76045de0.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/1/l/i/p1168-149072852458dab64c9e903.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/1/f/e/p1168-149072880558dab765d2196.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/1/a/u/p1168-149072852058dab648f2b74.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/1/x/a/p1168-149072851258dab640aa0aa.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/1/l/g/p1168-149072851758dab64506936.jpg?w=400"],"locality_name":"Vittal Mallya Road","is_pf":"false","area_name":"Central Bangalore","is_accept_payment":true,"is_swor":true,"costFor2":"2,000","tags":["Breakfast","Happy Hours","Dineout Pay","Nightlife","TFA","Hot Offers","Freshly Brewed","Baes of Bangalore","Beer Month","CNY","Cool and Casual","Best Bars and Pubs","Gourmet Passport","Paypal","Takeaway","Brewery","Trending","Halloween Special","Valentine_Booking","Biere Club","Live Screening","Must Try Microbrewery","Eat and Cheer","bangalore block","Octobeer Fest","Gandhi Jayanti","Beer Deal","Meet Your Meat","Microbrewery Fest","31 December Block","1 January Block","Ban Alcohol Block","Safe To Eat Out","Contactless Dining","Welcome Back","Now Open","Certified Safe","Instant Discount","Bill se Aazaadi","Unlock Drinks","Pawri Specials","GIRF Breweries","Trending in Central Bangalore","Clearance Sale","Vaccinated Staff","Certified Vaccinated Staff","Safe to Serve","DP Percentage","Raising the Bar","DP Micro Breweries","Bangalore Alcohol Shut","Dineout Passport Winter Treats","Delhi Bar Casual Cafe Fine DC4","Delhi Bar Casual NI DC2","Delhi Bar Casual NI DC5","Delhi Cafe Fine QSR FastFood DC3","Bangalore Bar Casual DC2","Bangalore Bar Casual NI DC3","Best Places to Drink","Best Places to Eat","Best Breweries","Dineout Passport Most Popular","Best Family Dining","Best Pizza Places","Femtastic","Dineout Birthday","Bangalore Restaurants for DC0 v1","Bangalore Restaurants for RDP DC0 v1","Bangalore Restaurants for RDP DC1 v1","Bangalore Restaurants for RDP DC3 v1","Bangalore Restaurants for RDP DC4 v1","Bangalore Restaurants for RDP DC5 v1","Bangalore Restaurants for DC6 v1","Top Breweries","Pay Day","Bangalore Restaurants for DC0 v2","Bangalore Restaurants for DC1 v2","Bangalore Restaurants for DC6 v2","Bangalore Restaurants for RDP C0 v2","Bangalore Restaurants for RDP C1 v2","Bangalore Restaurants for RDP C2 v2","Bangalore Restaurants for RDP C3 v2","Bangalore Restaurants for RDP C4 v2","Bangalore Restaurants for RDP C5 v2","Best After Hours","Best Pay Day Treat","Bangalore Restaurants for DC0 v3","Bangalore Restaurants for DC6 v3","Bangalore Restaurants for RDP C0 v3","Bangalore Restaurants for RDP C1 v3","Bangalore Restaurants for RDP C2 v3","Bangalore Restaurants for RDP C2 v3","Bangalore Restaurants for RDP C3 v3","Bangalore Restaurants for RDP C4 v3","Bangalore Restaurants for RDP C5 v3","Trending in Bangalore","Best Places to Drinks"],"avg_rating":4.3,"r_id":1168,"profile_name":"The Biere Club","recency":0,"offers":["instant_discount##Flat {{Percentage_OFFER}}% Off the Total Bill"],"offer_type":["instant_discount"],"fullfillment":"true","n_regular_offers":0,"n_offers":1,"offer_data":{"title":"Offers available","smartpay_text":"Pay your restaurant bill via Dineout and get 20% cashback (up to Rs. 300)","more_offers_text":"","offers":[{"title_1":"Flat {{Percentage_OFFER}}% Off the Total Bill","labelText":"","labelColor":""}],"textColor":"#3595ff","tagColor":"#00c34e","tagId":1,"deepLink":"dineout://web?title=Dineout Pay&link=https://www.dineout.co.in/app-webview-smartpay"},"all_offer_data":{"title":"","smartpay_text":"Pay your restaurant bill via Dineout and get 20% cashback (up to Rs. 300)","more_offers_text":"","offers":[{"title":"Flat {{Percentage_OFFER}}% Off the Total Bill","type":"","offerValidityAr":[{"day":"Sunday","startTime":0,"endTime":1439},{"day":"Monday","startTime":0,"endTime":1439},{"day":"Tuesday","startTime":0,"endTime":1439},{"day":"Wednesday","startTime":0,"endTime":1439},{"day":"Thursday","startTime":0,"endTime":1439},{"day":"Friday","startTime":0,"endTime":1439},{"day":"Saturday","startTime":0,"endTime":1439}],"offerValidityStr":"Mon-Sun 00:00 AM-11:59 PM"}],"textColor":"#3595ff"},"gpAlert":"","events_obj":[],"cta":[],"event_text":"","restaurant_open_close_ar":[],"restaurant_closed_status":false,"restaurant_closed_message":"","rdp_link":"/bangalore/the-biere-club-vittal-mallya-road-central-bangalore-1168","restaurantType":2,"ctaHeader":"","buyFrom":1664084930,"tickets":{"show_count":1,"data":[]},"type":"restaurant","hotelName":"","hasPreBook":false,"isSponsered":0,"persuassionArr":[],"more_offers_text":"","more_all_offers_text":"","tagInfo":[{"text":"Pay bill and get 10% cashback","textColor":"#333333","tagColor":"#FFF4F4","tagTextColor":"#F67373","tagText":"Dineout Pay","url":"/dineout-pay/instant-discount/how-it-works","deepLink":"dineout://web?title=Dineout Pay&link=https://www.dineout.co.in/app-webview-smartpay","tagIcon":"https://im1.dineout.co.in/images/uploads/misc/2019/Jan/17/information.png","action":{"tag":{"title":{"text":"Dineout Pay Offer","color":"#ffffff"},"gradients":["#28e397","#00c34e"]},"restName":{"text":"at The Biere Club, Vittal Mallya Road","color":"#696969"},"cashbacks":[{"title1":{"text":"Usable","color":"#696969"},"title2":{"text":"PromoCash","color":"#3595FF","icon":"https://im1.dineout.co.in/images/uploads/misc/2019/May/23/group33@3x.png"},"cb":{"text":"#5#%","color":"#141723"},"title3":{"text":"#Of Bill Amount#","color":"#141723"},"bg_color":"#eeeeee"},{"title1":{"text":"Additional","color":"#696969"},"title2":{"text":"Cashback","color":"#00c34e"},"cb":{"text":"#20#%","color":"#141723"},"title3":{"text":"#Of Payable Amount#","color":"#141723"},"bg_color":"#eeeeee"}],"header":{"primary_color":"#fff4f4","secondary_color":"#fff4f4","imageLogo":"https://im1.dineout.co.in/images/uploads/misc/2020/Jun/24/group15@3x.png","icon":"https://im1.dineout.co.in/images/uploads/misc/2020/Jun/24/address@3x.png","title":{"text":"","sub_title":"","sub_titleColor":"#999999","textColor":""}},"cashback":{"title":{"text":"Get {cb_percentage}% Cashback","textColor":"#FF645A"},"title2":{"text":"as PromoCash, when you pay your bill via Dineout Pay","boldTextColor":""}},"IDcashback":{"icon":"https://im1.dineout.co.in/images/uploads/misc/2020/Jun/24/group@3x.png","title":{"text":"Flat {id_percentage}% Instant Discount","textColor":"#FF645A"},"title1":{"text":"on Total Bill","textColor":"#FF645A","bgColor":"#FFF4F4"},"title2":{"text":"when you pay your bill via Dineout Pay","boldTextColor":""}},"promocash":{"icon":"https://im1.dineout.co.in/images/uploads/misc/2019/May/23/group33@3x.png","title2":{"text":"Additionaly, you can #Save extra upto {earning_percentage}%# on your bill using @AMNT@ Promocash","boldTextColor":"#3877D6"}},"note":{"text":"Pay your bill via Dineout Pay to save upto #5%# on your bill using @AMNT@ PromoCash & additionally, get #20% cashback#","color":"#696969","cashColor":"#3595ff"},"rdp":{"title":{"text":"View Restaurant Details","color":"#ffffff"},"gradients":["#65c7ff","#3595ff"],"primary_color":"#ff645a","secondary_color":"#ff645a","deepLink":"bangalore/the-biere-club-vittal-mallya-road-central-bangalore-1168"},"action":{"title":{"text":"How it works?","color":"#3c79d3"},"deepLink":"dineout://web?title=Dineout Pay&link=https://www.dineout.co.in/dineout-pay/how-it-works&showNav=1","url":"/dineout-pay/how-it-works"}}}],"totalOfferDealText":""},{"cuisine":["Fusion"],"img":["https://im1.dineout.co.in/images/uploads/restaurant/sharpen/7/q/k/p71751-15743140755dd6205b7b8fa.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/7/l/m/p71751-15743140665dd620520d879.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/7/d/m/p71751-15743140565dd620484fc0c.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/7/q/q/p71751-15743147205dd622e04d0d6.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/7/u/z/p71751-15743147285dd622e8db50b.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/7/h/k/p71751-15743147375dd622f1a3c5f.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/7/y/d/p71751-15743147495dd622fd05b5b.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/7/o/k/p71751-15743147575dd6230590468.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/7/b/n/p71751-15743147675dd6230f2cf26.jpg?w=400"],"locality_name":"St. Marks Road","is_pf":"false","area_name":"Central Bangalore","is_accept_payment":true,"is_swor":true,"costFor2":"1,900","tags":["Dineout Pay","Casual Dining","Beer Fest","Best Bars and Pubs","Bottoms Up","Valentines Special","Safe To Eat Out","Welcome Back","Dineout Passport","GpDp","Budweiser","Pawri Specials","Vaccinated Staff","Certified Vaccinated Staff","DP Percentage","Raising the Bar","DP Rooftops","Bangalore Alcohol Shut","Best of Food 2021","Best of 2021","Best of Dineout Passport","Delhi Bar Casual Cafe Fine DC4","Delhi Bar Casual NI DC2","Delhi Bar Casual NI DC5","Delhi Cafe Fine QSR FastFood DC3","Bangalore Bar Casual DC2","Bangalore Bar Casual NI DC3","Best Places to Drink","Femtastic","Dineout Birthday","Bangalore Restaurants for DC0 v1","Bangalore Restaurants for RDP DC1 v1","Bangalore Restaurants for DC6 v1","Skip IB","Bangalore Restaurants for DC4 v2","Bangalore Restaurants for DC0 v3","Bangalore Restaurants for RDP C1 v3","Bangalore Trending Dineout Passport","Best Places to Drinks"],"avg_rating":4,"r_id":71751,"profile_name":"Raahi","recency":0,"offers":["passport_discount##Flat {{Percentage_OFFER}}% Off the Total Bill",",free_discount_pin##20% Off the Total Bill"],"offer_type":["passport_discount","free_discount_pin"],"fullfillment":"true","n_regular_offers":0,"n_offers":2,"offer_data":{"title":"Offers available","smartpay_text":"Pay your restaurant bill via Dineout and get 20% cashback (up to Rs. 300)","more_offers_text":"1 more offer ","offers":[{"title_1":"Flat {{Percentage_OFFER}}% Off the Total Bill","labelText":"","labelColor":""},{"title_1":"20% Off the Total Bill","labelText":"","labelColor":""}],"textColor":"#3595ff","tagColor":"#00c34e","tagId":1,"deepLink":"dineout://web?title=Dineout Pay&link=https://www.dineout.co.in/app-webview-smartpay"},"all_offer_data":{"title":"","smartpay_text":"Pay your restaurant bill via Dineout and get 20% cashback (up to Rs. 300)","more_offers_text":"","offers":[{"title":"Flat {{Percentage_OFFER}}% Off the Total Bill","type":"","offerValidityAr":[{"day":"Sunday","startTime":0,"endTime":1439},{"day":"Monday","startTime":0,"endTime":1439},{"day":"Tuesday","startTime":0,"endTime":1439},{"day":"Wednesday","startTime":0,"endTime":1439},{"day":"Thursday","startTime":0,"endTime":1439},{"day":"Friday","startTime":0,"endTime":1439},{"day":"Saturday","startTime":0,"endTime":1439}],"offerValidityStr":"Mon-Sun 00:00 AM-11:59 PM"},{"title":"20% Off the Total Bill","type":"","offerValidityAr":[{"day":"Sunday","startTime":720,"endTime":1439},{"day":"Monday","startTime":720,"endTime":1439},{"day":"Tuesday","startTime":720,"endTime":1439},{"day":"Wednesday","startTime":720,"endTime":1439},{"day":"Thursday","startTime":720,"endTime":1439},{"day":"Friday","startTime":720,"endTime":1439},{"day":"Saturday","startTime":720,"endTime":1439}],"offerValidityStr":"Mon-Sun 12:00 PM-11:59 PM"}],"textColor":"#3595ff"},"gpAlert":"","events_obj":[],"cta":[],"event_text":"","restaurant_open_close_ar":[],"restaurant_closed_status":false,"restaurant_closed_message":"","rdp_link":"/bangalore/raahi-st-marks-road-central-bangalore-71751","restaurantType":2,"ctaHeader":"","buyFrom":1664084930,"tickets":{"show_count":1,"data":[]},"type":"restaurant","hotelName":"","hasPreBook":false,"isSponsered":0,"persuassionArr":[{"bgColor":"#EAF4FF","textColor":"#57aff2","text":"Popular for food","icon":"https://im1.dineout.co.in/images/uploads/misc/2018/Apr/23/popular.png"}],"more_offers_text":"1 more offer ","more_all_offers_text":"","tagInfo":[{"text":"Pay bill and get 10% cashback","textColor":"#333333","tagColor":"#FFF4F4","tagTextColor":"#F67373","tagText":"Dineout Pay","url":"/dineout-pay/how-it-works","deepLink":"dineout://web?title=Dineout Pay&link=https://www.dineout.co.in/app-webview-smartpay","tagIcon":"https://im1.dineout.co.in/images/uploads/misc/2019/Jan/17/information.png","action":{"tag":{"title":{"text":"Dineout Pay Offer","color":"#ffffff"},"gradients":["#28e397","#00c34e"]},"restName":{"text":"at Raahi, St. Marks Road","color":"#696969"},"cashbacks":[{"title1":{"text":"Usable","color":"#696969"},"title2":{"text":"PromoCash","color":"#3595FF","icon":"https://im1.dineout.co.in/images/uploads/misc/2019/May/23/group33@3x.png"},"cb":{"text":"#5#%","color":"#141723"},"title3":{"text":"#Of Bill Amount#","color":"#141723"},"bg_color":"#eeeeee"},{"title1":{"text":"Additional","color":"#696969"},"title2":{"text":"Cashback","color":"#00c34e"},"cb":{"text":"#20#%","color":"#141723"},"title3":{"text":"#Of Payable Amount#","color":"#141723"},"bg_color":"#eeeeee"}],"header":{"primary_color":"#fff4f4","secondary_color":"#fff4f4","imageLogo":"https://im1.dineout.co.in/images/uploads/misc/2020/Jun/24/group15@3x.png","icon":"https://im1.dineout.co.in/images/uploads/misc/2020/Jun/24/address@3x.png","title":{"text":"","sub_title":"","sub_titleColor":"#999999","textColor":""}},"cashback":{"title":{"text":"Get {cb_percentage}% Cashback","textColor":"#FF645A"},"title2":{"text":"as PromoCash, when you pay your bill via Dineout Pay","boldTextColor":""}},"IDcashback":{"icon":"https://im1.dineout.co.in/images/uploads/misc/2020/Jun/24/group@3x.png","title":{"text":"Flat {id_percentage}% Instant Discount","textColor":"#FF645A"},"title1":{"text":"on Total Bill","textColor":"#FF645A","bgColor":"#FFF4F4"},"title2":{"text":"when you pay your bill via Dineout Pay","boldTextColor":""}},"promocash":{"icon":"https://im1.dineout.co.in/images/uploads/misc/2019/May/23/group33@3x.png","title2":{"text":"Additionaly, you can #Save extra upto {earning_percentage}%# on your bill using @AMNT@ Promocash","boldTextColor":"#3877D6"}},"note":{"text":"Pay your bill via Dineout Pay to save upto #5%# on your bill using @AMNT@ PromoCash & additionally, get #20% cashback#","color":"#696969","cashColor":"#3595ff"},"rdp":{"title":{"text":"View Restaurant Details","color":"#ffffff"},"gradients":["#65c7ff","#3595ff"],"primary_color":"#ff645a","secondary_color":"#ff645a","deepLink":"bangalore/raahi-st-marks-road-central-bangalore-71751"},"action":{"title":{"text":"How it works?","color":"#3c79d3"},"deepLink":"dineout://web?title=Dineout Pay&link=https://www.dineout.co.in/dineout-pay/how-it-works&showNav=1","url":"/dineout-pay/how-it-works"}}}],"totalOfferDealText":""},{"cuisine":["North Indian","Mughlai"],"img":["https://im1.dineout.co.in/images/uploads/restaurant/sharpen/1/m/n/p13467-15646445765d4294e08b5cc.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/1/n/a/p13467-1501757663598300df9e034.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/1/e/w/p13467-15370046465b9cd466ec701.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/1/i/s/p13467-15646446315d42951720ee1.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/1/p/x/p13467-15646446485d429528ec9b8.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/1/r/a/p13467-15646446035d4294fb6a128.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/1/y/j/p13467-1501757667598300e3735c7.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/1/h/z/p13467-15646446125d429504e9b97.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/1/m/l/p13467-15646446225d42950e85c27.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/1/p/w/p13467-1443520675560a60a3d5e71.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/1/o/k/p13467-1501757677598300edab54e.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/1/k/w/p13467-15646445935d4294f12a51a.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/1/h/b/p13467-15646446395d42951f42cd8.jpg?w=400"],"locality_name":"Vittal Mallya Road","is_pf":"false","area_name":"Central Bangalore","is_accept_payment":true,"is_swor":true,"costFor2":"3,900","tags":["5 Star","Dineout Plus","Dineout Pay","Casual Dining","Outdoor Seating","CNY","Best Bars and Pubs","k a","Valentine_Booking","Hotel Dining","Luxury Bar","31 December Block","Ban Alcohol Block","Welcome Back","Instant Discount","5 Star DP Dining","Navratri Special","DP Percentage","Handpicked Hotel","Raising the Bar","DP Luxury Dining","Bangalore Alcohol Shut","Best of Luxury Dining","Best of 2021","Best of Dineout Passport","Delhi Bar Casual Cafe Fine DC4","Delhi Bar Casual NI DC2","Delhi Bar Casual NI DC5","Bangalore Bar Casual NI DC3","Best Places to Drink","Best Fine Dining","Best Outdoor and Rooftop","Valentines Day 2022 Block","Femtastic","Bangalore Restaurants for DC4 v1","Bangalore Restaurants for RDP DC4 v1","Top Fine Dine","Bangalore Restaurants for DC0 v2","Bangalore Restaurants for DC0 v3","Bangalore Restaurants for DC6 v3","Bangalore Restaurants for RDP C2 v3","Bangalore Restaurants for RDP C3 v3","Bangalore Trending Dineout Passport","Best Places to Drinks"],"avg_rating":4.2,"r_id":13467,"profile_name":"Spice Terrace","recency":0,"offers":["instant_discount##Flat {{Percentage_OFFER}}% Off the Total Bill"],"offer_type":["instant_discount"],"fullfillment":"true","n_regular_offers":0,"n_offers":1,"offer_data":{"title":"Offers available","smartpay_text":"Pay your restaurant bill via Dineout and get 20% cashback (up to Rs. 300)","more_offers_text":"","offers":[{"title_1":"Flat {{Percentage_OFFER}}% Off the Total Bill","labelText":"","labelColor":""}],"textColor":"#3595ff","tagColor":"#00c34e","tagId":1,"deepLink":"dineout://web?title=Dineout Pay&link=https://www.dineout.co.in/app-webview-smartpay"},"all_offer_data":{"title":"","smartpay_text":"Pay your restaurant bill via Dineout and get 20% cashback (up to Rs. 300)","more_offers_text":"","offers":[{"title":"Flat {{Percentage_OFFER}}% Off the Total Bill","type":"","offerValidityAr":[{"day":"Sunday","startTime":0,"endTime":1439},{"day":"Monday","startTime":0,"endTime":1439},{"day":"Tuesday","startTime":0,"endTime":1439},{"day":"Wednesday","startTime":0,"endTime":1439},{"day":"Thursday","startTime":0,"endTime":1439},{"day":"Friday","startTime":0,"endTime":1439},{"day":"Saturday","startTime":0,"endTime":1439}],"offerValidityStr":"Mon-Sun 00:00 AM-11:59 PM"}],"textColor":"#3595ff"},"gpAlert":"","events_obj":[],"cta":[],"event_text":"","restaurant_open_close_ar":[],"restaurant_closed_status":false,"restaurant_closed_message":"","rdp_link":"/bangalore/spice-terrace-vittal-mallya-road-central-bangalore-13467","restaurantType":2,"ctaHeader":"","buyFrom":1664084930,"tickets":{"show_count":1,"data":[]},"type":"restaurant","hotelName":"JW Marriott Hotel","hasPreBook":false,"isSponsered":0,"persuassionArr":[],"more_offers_text":"","more_all_offers_text":"","tagInfo":[{"text":"Pay bill and get 10% cashback","textColor":"#333333","tagColor":"#FFF4F4","tagTextColor":"#F67373","tagText":"Dineout Pay","url":"/dineout-pay/instant-discount/how-it-works","deepLink":"dineout://web?title=Dineout Pay&link=https://www.dineout.co.in/app-webview-smartpay","tagIcon":"https://im1.dineout.co.in/images/uploads/misc/2019/Jan/17/information.png","action":{"tag":{"title":{"text":"Dineout Pay Offer","color":"#ffffff"},"gradients":["#28e397","#00c34e"]},"restName":{"text":"at Spice Terrace, Vittal Mallya Road","color":"#696969"},"cashbacks":[{"title1":{"text":"Usable","color":"#696969"},"title2":{"text":"PromoCash","color":"#3595FF","icon":"https://im1.dineout.co.in/images/uploads/misc/2019/May/23/group33@3x.png"},"cb":{"text":"#5#%","color":"#141723"},"title3":{"text":"#Of Bill Amount#","color":"#141723"},"bg_color":"#eeeeee"},{"title1":{"text":"Additional","color":"#696969"},"title2":{"text":"Cashback","color":"#00c34e"},"cb":{"text":"#20#%","color":"#141723"},"title3":{"text":"#Of Payable Amount#","color":"#141723"},"bg_color":"#eeeeee"}],"header":{"primary_color":"#fff4f4","secondary_color":"#fff4f4","imageLogo":"https://im1.dineout.co.in/images/uploads/misc/2020/Jun/24/group15@3x.png","icon":"https://im1.dineout.co.in/images/uploads/misc/2020/Jun/24/address@3x.png","title":{"text":"","sub_title":"","sub_titleColor":"#999999","textColor":""}},"cashback":{"title":{"text":"Get {cb_percentage}% Cashback","textColor":"#FF645A"},"title2":{"text":"as PromoCash, when you pay your bill via Dineout Pay","boldTextColor":""}},"IDcashback":{"icon":"https://im1.dineout.co.in/images/uploads/misc/2020/Jun/24/group@3x.png","title":{"text":"Flat {id_percentage}% Instant Discount","textColor":"#FF645A"},"title1":{"text":"on Total Bill","textColor":"#FF645A","bgColor":"#FFF4F4"},"title2":{"text":"when you pay your bill via Dineout Pay","boldTextColor":""}},"promocash":{"icon":"https://im1.dineout.co.in/images/uploads/misc/2019/May/23/group33@3x.png","title2":{"text":"Additionaly, you can #Save extra upto {earning_percentage}%# on your bill using @AMNT@ Promocash","boldTextColor":"#3877D6"}},"note":{"text":"Pay your bill via Dineout Pay to save upto #5%# on your bill using @AMNT@ PromoCash & additionally, get #20% cashback#","color":"#696969","cashColor":"#3595ff"},"rdp":{"title":{"text":"View Restaurant Details","color":"#ffffff"},"gradients":["#65c7ff","#3595ff"],"primary_color":"#ff645a","secondary_color":"#ff645a","deepLink":"bangalore/spice-terrace-vittal-mallya-road-central-bangalore-13467"},"action":{"title":{"text":"How it works?","color":"#3c79d3"},"deepLink":"dineout://web?title=Dineout Pay&link=https://www.dineout.co.in/dineout-pay/how-it-works&showNav=1","url":"/dineout-pay/how-it-works"}}}],"totalOfferDealText":""},{"cuisine":["Continental","Italian","Chinese","North Indian"],"img":["https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/m/v/p50979-15681917225d78b4eade641.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/p/m/p50979-15681917585d78b50e65636.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/z/c/p50979-15681916935d78b4cdf0fe6.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/l/p/p50979-15681917035d78b4d768e6a.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/d/q/p50979-15681918035d78b53b61172.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/l/m/p50979-15681917135d78b4e10f06a.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/c/o/p50979-15681917315d78b4f389c61.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/y/z/p50979-15681917405d78b4fc7da33.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/w/v/p50979-15681916845d78b4c4eb775.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/g/d/p50979-15681917495d78b5055281e.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/r/z/p50979-15681917675d78b51740d17.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/e/i/p50979-15681917765d78b520ce9cd.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/y/c/p50979-15681917855d78b529c3f2c.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/w/i/p50979-15681917945d78b532aba5d.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/e/s/p50979-15681918115d78b543a8b2b.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/h/z/p50979-15681918205d78b54c41a86.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/v/c/p50979-15681918295d78b555ed5a3.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/m/n/p50979-15681919295d78b5b944a7c.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/r/b/p50979-15681919375d78b5c1e393d.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/n/y/p50979-15681919465d78b5caae9e1.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/t/h/p50979-15681919555d78b5d324b74.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/t/k/p50979-15681919645d78b5dc5405c.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/p/d/p50979-15681919735d78b5e58112e.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/u/a/p50979-15681919825d78b5eea3bbe.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/c/x/p50979-15681919925d78b5f89f627.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/k/f/p50979-15681920015d78b601c9bdd.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/j/o/p50979-15681920115d78b60bc6a6c.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/b/b/p50979-15681920215d78b6152eae0.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/e/w/p50979-1637748753619e101120572.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/t/o/p50979-1637748765619e101df3e3e.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/u/s/p50979-1637748778619e102a812dc.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/f/u/p50979-1637748800619e1040c849e.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/u/l/p50979-1637748814619e104ee1de4.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/k/v/p50979-15681920885d78b65893540.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/e/a/p50979-15681920975d78b6610cd8d.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/r/s/p50979-15681921225d78b67aedff5.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/a/p/p50979-15681921405d78b68c2435f.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/y/c/p50979-15681921495d78b695bc50b.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/e/o/p50979-15681921585d78b69e7ee90.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/v/m/p50979-15681922045d78b6cc03b97.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/l/v/p50979-15681924075d78b797e88fa.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/x/z/p50979-15681921055d78b669a0af7.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/e/l/p50979-15681921855d78b6b90dfe5.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/u/v/p50979-15681922135d78b6d59211b.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/l/t/p50979-15681922865d78b71ec69d3.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/u/l/p50979-15681920795d78b64f3b633.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/n/e/p50979-15681921315d78b68367fdf.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/y/x/p50979-15681921675d78b6a70486a.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/o/v/p50979-15681921765d78b6b018b60.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/k/u/p50979-15681921945d78b6c23f02f.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/g/h/p50979-15681922955d78b7277a4d4.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/w/n/p50979-15681923045d78b7309a1ef.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/e/d/p50979-15681923145d78b73a0df34.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/g/y/p50979-15681923235d78b743476ca.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/n/o/p50979-15681923325d78b74cabfdb.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/y/g/p50979-15681923815d78b77d5f10e.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/y/o/p50979-15681923985d78b78ef376b.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/q/l/p50979-15681924165d78b7a087b2e.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/t/c/p50979-15681924255d78b7a92ca5a.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/a/g/p50979-15681924345d78b7b25998e.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/e/i/p50979-15681924435d78b7bb21273.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/j/m/p50979-15681924505d78b7c2c6f40.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/f/v/p50979-15685362595d7df6c3f1515.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/b/g/p50979-15685362675d7df6cb5af87.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/g/o/p50979-15685362755d7df6d30327f.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/v/o/p50979-15685362825d7df6da0f775.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/f/f/p50979-15685362885d7df6e032160.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/y/e/p50979-16089709845fe6f2e8cf8a2.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/y/j/p50979-16089709925fe6f2f0af024.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/4/o/x/p4135-163851110461a9b200742b3.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/4/l/k/p4135-163851104461a9b1c43892d.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/4/e/a/p4135-163851102661a9b1b2cd818.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/4/u/g/p4135-163851100461a9b19c0abcc.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/4/a/b/p4135-163851106661a9b1da484e2.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/4/t/x/p4135-163851108561a9b1edbff7d.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/4/y/l/p4135-163851112061a9b210e1964.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/4/e/b/p4135-163851114261a9b22662475.jpg?w=400"],"locality_name":"BTM Layout","is_pf":"false","area_name":"South Bangalore","is_accept_payment":true,"is_swor":true,"costFor2":"2,000","tags":["Happy Hours","Dineout Pay","Nightlife","New on Dineout","Best Bars and Pubs","High on Spirit","Brewery","Romantic Rooftops","Trending","Halloween Special","Bottoms Up","Steal 10","Valentine_Deal","Valentines Special","Live Screening","Must Try Microbrewery","bangalore block","Gandhi Jayanti","Beer Deal","Microbrewery Fest","31 December Block","Drinks 2019","Todays Special","Love Aajkal","Ban Alcohol Block","Welcome Back","Instant Discount","Bill se Aazaadi","Unlock Drinks","Beer and Barbeques","Relish the Delish","Great Dineout Challenge","25DecBlock","Pawri Specials","Trending in South Bangalore","Raising the Bar","Bangalore Alcohol Shut","Best of Drinks","Best of 2021","Delhi Bar Casual Cafe Fine DC4","Delhi Bar Casual NI DC2","Delhi Bar Casual NI DC5","Bangalore Bar Casual NI DC3","Movie Special","Best Places to Drink","Best Places to Eat","Best Breweries","Best Family Dining","Best Pizza Places","Dineout Birthday","Bangalore Restaurants for DC0 v1","Bangalore Restaurants for RDP DC1 v1","Bangalore Restaurants for DC6 v1","Skip IB","Top Outdoor Rooftop","Top Drinks","Top Breweries","Pay Day","Bangalore Restaurants for DC0 v2","Bangalore Restaurants for DC6 v2","Bangalore Restaurants for RDP C0 v2","Bangalore Restaurants for RDP C1 v2","Bangalore Restaurants for RDP C2 v2","Bangalore Restaurants for RDP C3 v2","Bangalore Restaurants for RDP C4 v2","Bangalore Restaurants for RDP C5 v2","Best After Hours","Best Diners Choice","Best Pay Day Treat","Best Metaverse Restaurant","Bangalore Restaurants for DC0 v3","Bangalore Restaurants for DC6 v3","Bangalore Restaurants for RDP C1 v3","Bangalore Restaurants for RDP C2 v3","Bangalore Restaurants for RDP C2 v3","Bangalore Restaurants for RDP C3 v3","Bangalore Restaurants for RDP C4 v3","Bangalore Restaurants for RDP C5 v3","Top Italian","Trending in Bangalore","Best Places to Drinks"],"avg_rating":4.3,"r_id":50979,"profile_name":"Stories Brewery and Kitchen","recency":0,"offers":["instant_discount##Flat {{Percentage_OFFER}}% Off the Total Bill"],"offer_type":["instant_discount"],"fullfillment":"true","n_regular_offers":0,"n_offers":1,"offer_data":{"title":"Offers available","smartpay_text":"Pay your restaurant bill via Dineout and get 20% cashback (up to Rs. 300)","more_offers_text":"","offers":[{"title_1":"Flat {{Percentage_OFFER}}% Off the Total Bill","labelText":"","labelColor":""}],"textColor":"#3595ff","tagColor":"#00c34e","tagId":1,"deepLink":"dineout://web?title=Dineout Pay&link=https://www.dineout.co.in/app-webview-smartpay"},"all_offer_data":{"title":"","smartpay_text":"Pay your restaurant bill via Dineout and get 20% cashback (up to Rs. 300)","more_offers_text":"","offers":[{"title":"Flat {{Percentage_OFFER}}% Off the Total Bill","type":"","offerValidityAr":[{"day":"Sunday","startTime":0,"endTime":1439},{"day":"Monday","startTime":0,"endTime":1439},{"day":"Tuesday","startTime":0,"endTime":1439},{"day":"Wednesday","startTime":0,"endTime":1439},{"day":"Thursday","startTime":0,"endTime":1439},{"day":"Friday","startTime":0,"endTime":1439},{"day":"Saturday","startTime":0,"endTime":1439}],"offerValidityStr":"Mon-Sun 00:00 AM-11:59 PM"}],"textColor":"#3595ff"},"gpAlert":"","events_obj":[],"cta":[],"event_text":"","restaurant_open_close_ar":[],"restaurant_closed_status":false,"restaurant_closed_message":"","rdp_link":"/bangalore/stories-brewery-and-kitchen-btm-layout-south-bangalore-50979","restaurantType":2,"ctaHeader":"","buyFrom":1664084930,"tickets":{"show_count":1,"data":[]},"type":"restaurant","hotelName":"","hasPreBook":false,"isSponsered":0,"persuassionArr":[],"more_offers_text":"","more_all_offers_text":"","tagInfo":[{"text":"Pay bill and get 10% cashback","textColor":"#333333","tagColor":"#FFF4F4","tagTextColor":"#F67373","tagText":"Dineout Pay","url":"/dineout-pay/instant-discount/how-it-works","deepLink":"dineout://web?title=Dineout Pay&link=https://www.dineout.co.in/app-webview-smartpay","tagIcon":"https://im1.dineout.co.in/images/uploads/misc/2019/Jan/17/information.png","action":{"tag":{"title":{"text":"Dineout Pay Offer","color":"#ffffff"},"gradients":["#28e397","#00c34e"]},"restName":{"text":"at Stories Brewery and Kitchen, BTM Layout","color":"#696969"},"cashbacks":[{"title1":{"text":"Usable","color":"#696969"},"title2":{"text":"PromoCash","color":"#3595FF","icon":"https://im1.dineout.co.in/images/uploads/misc/2019/May/23/group33@3x.png"},"cb":{"text":"#5#%","color":"#141723"},"title3":{"text":"#Of Bill Amount#","color":"#141723"},"bg_color":"#eeeeee"},{"title1":{"text":"Additional","color":"#696969"},"title2":{"text":"Cashback","color":"#00c34e"},"cb":{"text":"#20#%","color":"#141723"},"title3":{"text":"#Of Payable Amount#","color":"#141723"},"bg_color":"#eeeeee"}],"header":{"primary_color":"#fff4f4","secondary_color":"#fff4f4","imageLogo":"https://im1.dineout.co.in/images/uploads/misc/2020/Jun/24/group15@3x.png","icon":"https://im1.dineout.co.in/images/uploads/misc/2020/Jun/24/address@3x.png","title":{"text":"","sub_title":"","sub_titleColor":"#999999","textColor":""}},"cashback":{"title":{"text":"Get {cb_percentage}% Cashback","textColor":"#FF645A"},"title2":{"text":"as PromoCash, when you pay your bill via Dineout Pay","boldTextColor":""}},"IDcashback":{"icon":"https://im1.dineout.co.in/images/uploads/misc/2020/Jun/24/group@3x.png","title":{"text":"Flat {id_percentage}% Instant Discount","textColor":"#FF645A"},"title1":{"text":"on Total Bill","textColor":"#FF645A","bgColor":"#FFF4F4"},"title2":{"text":"when you pay your bill via Dineout Pay","boldTextColor":""}},"promocash":{"icon":"https://im1.dineout.co.in/images/uploads/misc/2019/May/23/group33@3x.png","title2":{"text":"Additionaly, you can #Save extra upto {earning_percentage}%# on your bill using @AMNT@ Promocash","boldTextColor":"#3877D6"}},"note":{"text":"Pay your bill via Dineout Pay to save upto #5%# on your bill using @AMNT@ PromoCash & additionally, get #20% cashback#","color":"#696969","cashColor":"#3595ff"},"rdp":{"title":{"text":"View Restaurant Details","color":"#ffffff"},"gradients":["#65c7ff","#3595ff"],"primary_color":"#ff645a","secondary_color":"#ff645a","deepLink":"bangalore/stories-brewery-and-kitchen-btm-layout-south-bangalore-50979"},"action":{"title":{"text":"How it works?","color":"#3c79d3"},"deepLink":"dineout://web?title=Dineout Pay&link=https://www.dineout.co.in/dineout-pay/how-it-works&showNav=1","url":"/dineout-pay/how-it-works"}}}],"totalOfferDealText":""},{"cuisine":["Modern Indian"],"img":["https://im1.dineout.co.in/images/uploads/restaurant/sharpen/2/b/h/p24670-164386528961fb64c942ac7.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/2/w/s/p24670-164182785961dc4e1394577.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/2/e/l/p24670-1502533878598ed8f6cceba.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/2/l/w/p24670-147522359257ee20287349a.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/2/k/z/p24670-147522358857ee2024f096b.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/2/y/h/p24670-147522359557ee202be6787.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/2/d/v/p24670-147694698458086c287b748.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/2/z/k/p24670-147694699858086c3660834.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/2/q/h/p24670-1502533881598ed8f9bd18c.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/2/x/r/p24670-1502533884598ed8fca10fe.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/2/b/i/p24670-147694699158086c2f45cba.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/2/i/d/p24670-147694699458086c32c1297.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/2/y/b/p24670-147522358157ee201d6d493.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/2/j/n/p24670-15590538915ced46433ff8f.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/2/y/c/p24670-147522358557ee202136da7.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/2/s/f/p24670-15590538685ced462ca42f6.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/2/q/b/p24670-15590538765ced463484190.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/2/k/e/p24670-15590538835ced463bb84e4.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/2/l/x/p24670-15590538985ced464ae22f3.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/2/v/o/p24670-15590539065ced465226af3.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/2/b/z/p24670-15590539135ced465981f2d.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/2/i/j/p24670-15590539205ced4660e9aec.jpg?w=400"],"locality_name":"Vittal Mallya Road","is_pf":"false","area_name":"Central Bangalore","is_accept_payment":true,"is_swor":false,"costFor2":"1,600","tags":["Happy Hours","Dineout Pay","Casual Dining","1 plus 1 on Food and Drinks","Womens Day Special","Mothers Day","Gourmet Passport","k a","Valentine_Booking","Valentine_Deal","bangalore block","Gandhi Jayanti","24 December Block","25 December Block","31 December Block","1 January Block","Food 2019","HSBC Cashback","Deals At 8","Ban Alcohol Block","Safe To Eat Out","Welcome Back","Budweiser","Pawri Specials","Vaccinated Staff","Bangalore Alcohol Shut","Delhi Bar Casual Cafe Fine DC4","Delhi Bar Casual NI DC2","Delhi Bar Casual NI DC5","Bangalore Bar Casual NI DC3","Bangalore Restaurants for DC0 v1","Bangalore Restaurants for RDP DC1 v1","Bangalore Restaurants for DC6 v1","Bangalore Restaurants for DC4 v2","Bangalore Restaurants for DC0 v3","Bangalore Restaurants for RDP C1 v3","Bangalore Restaurants for RDP C4 v3"],"avg_rating":4.3,"r_id":24670,"profile_name":"Farzi Cafe","recency":0,"fullfillment":"true","n_regular_offers":0,"n_offers":0,"offer_data":{"title":"Offers available","smartpay_text":"Pay your restaurant bill via Dineout and get 20% cashback (up to Rs. 300)","more_offers_text":"","offers":[],"textColor":"#3595ff","tagColor":"#00c34e","tagId":1,"deepLink":"dineout://web?title=Dineout Pay&link=https://www.dineout.co.in/app-webview-smartpay"},"all_offer_data":{"title":"","smartpay_text":"Pay your restaurant bill via Dineout and get 20% cashback (up to Rs. 300)","more_offers_text":"","offers":[],"textColor":"#3595ff"},"gpAlert":"","events_obj":[],"cta":[],"event_text":"","restaurant_open_close_ar":[],"restaurant_closed_status":false,"restaurant_closed_message":"","rdp_link":"/bangalore/farzi-cafe-vittal-mallya-road-central-bangalore-24670","restaurantType":2,"ctaHeader":"","buyFrom":1664084930,"tickets":{"show_count":1,"data":[]},"type":"restaurant","hotelName":"UB City","hasPreBook":false,"isSponsered":0,"persuassionArr":[],"more_offers_text":"","more_all_offers_text":"","tagInfo":[{"text":"Pay bill and get 10% cashback","textColor":"#333333","tagColor":"#FFF4F4","tagTextColor":"#F67373","tagText":"Dineout Pay","url":"/dineout-pay/how-it-works","deepLink":"dineout://web?title=Dineout Pay&link=https://www.dineout.co.in/app-webview-smartpay","tagIcon":"https://im1.dineout.co.in/images/uploads/misc/2019/Jan/17/information.png","action":{"tag":{"title":{"text":"Dineout Pay Offer","color":"#ffffff"},"gradients":["#28e397","#00c34e"]},"restName":{"text":"at Farzi Cafe, Vittal Mallya Road","color":"#696969"},"cashbacks":[{"title1":{"text":"Usable","color":"#696969"},"title2":{"text":"PromoCash","color":"#3595FF","icon":"https://im1.dineout.co.in/images/uploads/misc/2019/May/23/group33@3x.png"},"cb":{"text":"#5#%","color":"#141723"},"title3":{"text":"#Of Bill Amount#","color":"#141723"},"bg_color":"#eeeeee"},{"title1":{"text":"Additional","color":"#696969"},"title2":{"text":"Cashback","color":"#00c34e"},"cb":{"text":"#20#%","color":"#141723"},"title3":{"text":"#Of Payable Amount#","color":"#141723"},"bg_color":"#eeeeee"}],"header":{"primary_color":"#fff4f4","secondary_color":"#fff4f4","imageLogo":"https://im1.dineout.co.in/images/uploads/misc/2020/Jun/24/group15@3x.png","icon":"https://im1.dineout.co.in/images/uploads/misc/2020/Jun/24/address@3x.png","title":{"text":"","sub_title":"","sub_titleColor":"#999999","textColor":""}},"cashback":{"title":{"text":"Get {cb_percentage}% Cashback","textColor":"#FF645A"},"title2":{"text":"as PromoCash, when you pay your bill via Dineout Pay","boldTextColor":""}},"IDcashback":{"icon":"https://im1.dineout.co.in/images/uploads/misc/2020/Jun/24/group@3x.png","title":{"text":"Flat {id_percentage}% Instant Discount","textColor":"#FF645A"},"title1":{"text":"on Total Bill","textColor":"#FF645A","bgColor":"#FFF4F4"},"title2":{"text":"when you pay your bill via Dineout Pay","boldTextColor":""}},"promocash":{"icon":"https://im1.dineout.co.in/images/uploads/misc/2019/May/23/group33@3x.png","title2":{"text":"Additionaly, you can #Save extra upto {earning_percentage}%# on your bill using @AMNT@ Promocash","boldTextColor":"#3877D6"}},"note":{"text":"Pay your bill via Dineout Pay to save upto #5%# on your bill using @AMNT@ PromoCash & additionally, get #20% cashback#","color":"#696969","cashColor":"#3595ff"},"rdp":{"title":{"text":"View Restaurant Details","color":"#ffffff"},"gradients":["#65c7ff","#3595ff"],"primary_color":"#ff645a","secondary_color":"#ff645a","deepLink":"bangalore/farzi-cafe-vittal-mallya-road-central-bangalore-24670"},"action":{"title":{"text":"How it works?","color":"#3c79d3"},"deepLink":"dineout://web?title=Dineout Pay&link=https://www.dineout.co.in/dineout-pay/how-it-works&showNav=1","url":"/dineout-pay/how-it-works"}}}],"totalOfferDealText":"","message":"you can pay after reseervation"},{"cuisine":["Parsi","Iranian"],"img":["https://im1.dineout.co.in/images/uploads/restaurant/sharpen/3/q/j/p3737-1481539616584e80200c0e1.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/3/r/s/p3737-1481539620584e80240e409.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/3/m/n/p3737-1481539623584e802797481.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/3/b/v/p3737-1481539627584e802b86dd1.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/3/t/s/p3737-1481539630584e802ecf0e1.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/3/d/e/p3737-1481539634584e80322d59c.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/3/g/k/p3737-1481539637584e803578013.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/3/z/h/p3737-1481539641584e80392153c.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/3/d/w/p3737-15423684735beeacd99a506.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/3/l/u/p3737-1481539648584e8040bf55c.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/3/h/o/p3737-1481539652584e80448c79c.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/3/k/t/p3737-1481539656584e80484054f.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/3/m/f/p3737-1481539661584e804d55858.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/3/k/r/p3737-1481539664584e8050c815b.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/1/b/i/p19591-16445476836205ce6397fb9.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/1/h/h/p19591-16445476896205ce696ab79.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/1/m/h/p19591-16445476776205ce5d87c84.jpg?w=400"],"locality_name":"Lavelle Road","is_pf":"false","area_name":"Central Bangalore","is_accept_payment":true,"is_swor":false,"costFor2":"1,800","tags":["Breakfast","Happy Hours","Dineout Pay","Casual Dining","TFA","CNY","Hidden Gems","Best Bars and Pubs","Mothers Day","Gourmet Passport","Drinkathon","k a","Black Friday","Steal deals","Valentine_Deal","bangalore block","Independence_Deal","Gandhi Jayanti","24 December Block","25 December Block","31 December Block","1 January Block","HSBC Cashback","Eat Good","14 Feb Blocking 2020","Ban Alcohol Block","Welcome Back","Instant Discount","Pay Day Sale","V Day Special","Clearance Sale","DP Percentage","Raising the Bar","Bangalore Alcohol Shut","Delhi Bar Casual Cafe Fine DC4","Delhi Bar Casual NI DC2","Delhi Bar Casual NI DC5","Delhi Cafe Fine QSR FastFood DC3","Bangalore Bar Casual DC2","Bangalore Bar Casual NI DC3","Best Places to Drink","Femtastic","Dineout Birthday","Bangalore Restaurants for DC0 v1","Bangalore Restaurants for RDP DC1 v1","Bangalore Restaurants for DC6 v1","Bangalore Restaurants for DC4 v2","Bangalore Restaurants for DC0 v3","Bangalore Restaurants for RDP C1 v3","Best Places to Drinks"],"avg_rating":4.3,"r_id":19591,"profile_name":"SodaBottleOpenerWala","recency":0,"offers":["instant_discount##Flat {{Percentage_OFFER}}% Off the Total Bill"],"offer_type":["instant_discount"],"fullfillment":"true","n_regular_offers":0,"n_offers":1,"offer_data":{"title":"Offers available","smartpay_text":"Pay your restaurant bill via Dineout and get 20% cashback (up to Rs. 300)","more_offers_text":"","offers":[{"title_1":"Flat {{Percentage_OFFER}}% Off the Total Bill","labelText":"","labelColor":""}],"textColor":"#3595ff","tagColor":"#00c34e","tagId":1,"deepLink":"dineout://web?title=Dineout Pay&link=https://www.dineout.co.in/app-webview-smartpay"},"all_offer_data":{"title":"","smartpay_text":"Pay your restaurant bill via Dineout and get 20% cashback (up to Rs. 300)","more_offers_text":"","offers":[{"title":"Flat {{Percentage_OFFER}}% Off the Total Bill","type":"","offerValidityAr":[{"day":"Sunday","startTime":0,"endTime":1439},{"day":"Monday","startTime":0,"endTime":1439},{"day":"Tuesday","startTime":0,"endTime":1439},{"day":"Wednesday","startTime":0,"endTime":1439},{"day":"Thursday","startTime":0,"endTime":1439},{"day":"Friday","startTime":0,"endTime":1439},{"day":"Saturday","startTime":0,"endTime":1439}],"offerValidityStr":"Mon-Sun 00:00 AM-11:59 PM"}],"textColor":"#3595ff"},"gpAlert":"","events_obj":[],"cta":[],"event_text":"","restaurant_open_close_ar":[],"restaurant_closed_status":false,"restaurant_closed_message":"","rdp_link":"/bangalore/sodabottleopenerwala-lavelle-road-central-bangalore-19591","restaurantType":2,"ctaHeader":"","buyFrom":1664084930,"tickets":{"show_count":1,"data":[]},"type":"restaurant","hotelName":"","hasPreBook":false,"isSponsered":0,"persuassionArr":[],"more_offers_text":"","more_all_offers_text":"","tagInfo":[{"text":"Pay bill and get 10% cashback","textColor":"#333333","tagColor":"#FFF4F4","tagTextColor":"#F67373","tagText":"Dineout Pay","url":"/dineout-pay/instant-discount/how-it-works","deepLink":"dineout://web?title=Dineout Pay&link=https://www.dineout.co.in/app-webview-smartpay","tagIcon":"https://im1.dineout.co.in/images/uploads/misc/2019/Jan/17/information.png","action":{"tag":{"title":{"text":"Dineout Pay Offer","color":"#ffffff"},"gradients":["#28e397","#00c34e"]},"restName":{"text":"at SodaBottleOpenerWala, Lavelle Road","color":"#696969"},"cashbacks":[{"title1":{"text":"Usable","color":"#696969"},"title2":{"text":"PromoCash","color":"#3595FF","icon":"https://im1.dineout.co.in/images/uploads/misc/2019/May/23/group33@3x.png"},"cb":{"text":"#5#%","color":"#141723"},"title3":{"text":"#Of Bill Amount#","color":"#141723"},"bg_color":"#eeeeee"},{"title1":{"text":"Additional","color":"#696969"},"title2":{"text":"Cashback","color":"#00c34e"},"cb":{"text":"#20#%","color":"#141723"},"title3":{"text":"#Of Payable Amount#","color":"#141723"},"bg_color":"#eeeeee"}],"header":{"primary_color":"#fff4f4","secondary_color":"#fff4f4","imageLogo":"https://im1.dineout.co.in/images/uploads/misc/2020/Jun/24/group15@3x.png","icon":"https://im1.dineout.co.in/images/uploads/misc/2020/Jun/24/address@3x.png","title":{"text":"","sub_title":"","sub_titleColor":"#999999","textColor":""}},"cashback":{"title":{"text":"Get {cb_percentage}% Cashback","textColor":"#FF645A"},"title2":{"text":"as PromoCash, when you pay your bill via Dineout Pay","boldTextColor":""}},"IDcashback":{"icon":"https://im1.dineout.co.in/images/uploads/misc/2020/Jun/24/group@3x.png","title":{"text":"Flat {id_percentage}% Instant Discount","textColor":"#FF645A"},"title1":{"text":"on Total Bill","textColor":"#FF645A","bgColor":"#FFF4F4"},"title2":{"text":"when you pay your bill via Dineout Pay","boldTextColor":""}},"promocash":{"icon":"https://im1.dineout.co.in/images/uploads/misc/2019/May/23/group33@3x.png","title2":{"text":"Additionaly, you can #Save extra upto {earning_percentage}%# on your bill using @AMNT@ Promocash","boldTextColor":"#3877D6"}},"note":{"text":"Pay your bill via Dineout Pay to save upto #5%# on your bill using @AMNT@ PromoCash & additionally, get #20% cashback#","color":"#696969","cashColor":"#3595ff"},"rdp":{"title":{"text":"View Restaurant Details","color":"#ffffff"},"gradients":["#65c7ff","#3595ff"],"primary_color":"#ff645a","secondary_color":"#ff645a","deepLink":"bangalore/sodabottleopenerwala-lavelle-road-central-bangalore-19591"},"action":{"title":{"text":"How it works?","color":"#3c79d3"},"deepLink":"dineout://web?title=Dineout Pay&link=https://www.dineout.co.in/dineout-pay/how-it-works&showNav=1","url":"/dineout-pay/how-it-works"}}}],"totalOfferDealText":"","message":"you can pay after reseervation"},{"cuisine":["Japanese","Asian"],"img":["https://im1.dineout.co.in/images/uploads/restaurant/sharpen/1/z/p/p1352-162632608060efc440c2303.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/1/k/a/p1352-16353145686178eb883f4eb.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/1/k/c/p1352-16353145376178eb699e714.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/1/p/w/p1352-16353145616178eb8105a50.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/1/r/b/p1352-144292966156015bfd886d9.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/1/n/l/p1352-16353145296178eb619c816.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/1/o/w/p1352-16353145546178eb7a399b2.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/1/o/o/p1352-147289601257ca9c0c65191.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/1/w/s/p1352-1502531760598ed0b0b01df.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/1/p/g/p1352-14441361405613c4cc78cc9.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/1/r/a/p1352-14441361565613c4dcd7750.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/1/j/a/p1352-14441361625613c4e249137.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/1/y/t/p1352-14441361665613c4e6e77d5.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/1/x/j/p1352-14441361735613c4ed25ac6.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/1/t/a/p1352-14441361815613c4f5d1ef6.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/1/t/f/p1352-1634561818616d6f1adfafd.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/1/g/o/p1352-14441361895613c4fd1c6b0.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/1/o/x/p1352-14441361925613c5005c687.jpg?w=400"],"locality_name":"Vittal Mallya Road","is_pf":"false","area_name":"Central Bangalore","is_accept_payment":true,"is_swor":true,"costFor2":"3,000","tags":["Happy Hours","Buffet","Lunch Buffet","Dineout Pay","Casual Dining","TFA","Brunch","Broke Tippler's Guide","A Rooftop Affair","Pan Asian Delights","Diwali Special Collection","CNY","Welcome Summers","BOGO on Drinks","Gourmet Passport","Weekend Brunch","High on Spirit","k a","Valentine_Booking","Must Try Pubs and Bars","bangalore block","Gandhi Jayanti","AMEXFORFOODIES","Ban Alcohol Block","Safe To Eat Out","Welcome Back","Now Open","Instant Discount","31DecBlock","DP 2020","Pawri Specials","Trending in Central Bangalore","Clearance Sale","Vaccinated Staff","DP Food","Raising the Bar","Bangalore Alcohol Shut","Delhi Bar Casual Cafe Fine DC4","Delhi Bar Casual NI DC2","Delhi Bar Casual NI DC5","Bangalore Bar Casual NI DC3","Best Places to Drink","Best Places to Eat","Best Fine Dining","Dineout Birthday","Bangalore Restaurants for DC4 v1","Bangalore Restaurants for RDP DC4 v1","Top Fine Dine","Pay Day","Best Asian","Bangalore Restaurants for DC0 v2","Best Pay Day Treat","Bangalore Restaurants for DC0 v3","Bangalore Restaurants for DC6 v3","Bangalore Restaurants for RDP C2 v3","Bangalore Restaurants for RDP C3 v3","Bangalore Restaurants for RDP C4 v3","Trending in Bangalore","Best Places to Drinks"],"avg_rating":4.3,"r_id":1352,"profile_name":"Shiro","recency":0,"offers":["instant_discount##Flat {{Percentage_OFFER}}% Off the Total Bill"],"offer_type":["instant_discount"],"fullfillment":"true","n_regular_offers":0,"n_offers":1,"offer_data":{"title":"Offers available","smartpay_text":"Pay your restaurant bill via Dineout and get 20% cashback (up to Rs. 300)","more_offers_text":"","offers":[{"title_1":"Flat {{Percentage_OFFER}}% Off the Total Bill","labelText":"","labelColor":""}],"textColor":"#3595ff","tagColor":"#00c34e","tagId":1,"deepLink":"dineout://web?title=Dineout Pay&link=https://www.dineout.co.in/app-webview-smartpay"},"all_offer_data":{"title":"","smartpay_text":"Pay your restaurant bill via Dineout and get 20% cashback (up to Rs. 300)","more_offers_text":"","offers":[{"title":"Flat {{Percentage_OFFER}}% Off the Total Bill","type":"","offerValidityAr":[{"day":"Monday","startTime":0,"endTime":1439},{"day":"Tuesday","startTime":0,"endTime":1439},{"day":"Wednesday","startTime":0,"endTime":1439},{"day":"Thursday","startTime":0,"endTime":1439}],"offerValidityStr":"Mon-Thu 00:00 AM-11:59 PM"}],"textColor":"#3595ff"},"gpAlert":"","events_obj":[],"cta":[],"event_text":"","restaurant_open_close_ar":[],"restaurant_closed_status":false,"restaurant_closed_message":"","rdp_link":"/bangalore/shiro-vittal-mallya-road-central-bangalore-1352","restaurantType":2,"ctaHeader":"","buyFrom":1664084930,"tickets":{"show_count":1,"data":[]},"type":"restaurant","hotelName":"UB City","hasPreBook":false,"isSponsered":0,"persuassionArr":[],"more_offers_text":"","more_all_offers_text":"","tagInfo":[{"text":"Pay bill and get 10% cashback","textColor":"#333333","tagColor":"#FFF4F4","tagTextColor":"#F67373","tagText":"Dineout Pay","url":"/dineout-pay/instant-discount/how-it-works","deepLink":"dineout://web?title=Dineout Pay&link=https://www.dineout.co.in/app-webview-smartpay","tagIcon":"https://im1.dineout.co.in/images/uploads/misc/2019/Jan/17/information.png","action":{"tag":{"title":{"text":"Dineout Pay Offer","color":"#ffffff"},"gradients":["#28e397","#00c34e"]},"restName":{"text":"at Shiro, Vittal Mallya Road","color":"#696969"},"cashbacks":[{"title1":{"text":"Usable","color":"#696969"},"title2":{"text":"PromoCash","color":"#3595FF","icon":"https://im1.dineout.co.in/images/uploads/misc/2019/May/23/group33@3x.png"},"cb":{"text":"#5#%","color":"#141723"},"title3":{"text":"#Of Bill Amount#","color":"#141723"},"bg_color":"#eeeeee"},{"title1":{"text":"Additional","color":"#696969"},"title2":{"text":"Cashback","color":"#00c34e"},"cb":{"text":"#20#%","color":"#141723"},"title3":{"text":"#Of Payable Amount#","color":"#141723"},"bg_color":"#eeeeee"}],"header":{"primary_color":"#fff4f4","secondary_color":"#fff4f4","imageLogo":"https://im1.dineout.co.in/images/uploads/misc/2020/Jun/24/group15@3x.png","icon":"https://im1.dineout.co.in/images/uploads/misc/2020/Jun/24/address@3x.png","title":{"text":"","sub_title":"","sub_titleColor":"#999999","textColor":""}},"cashback":{"title":{"text":"Get {cb_percentage}% Cashback","textColor":"#FF645A"},"title2":{"text":"as PromoCash, when you pay your bill via Dineout Pay","boldTextColor":""}},"IDcashback":{"icon":"https://im1.dineout.co.in/images/uploads/misc/2020/Jun/24/group@3x.png","title":{"text":"Flat {id_percentage}% Instant Discount","textColor":"#FF645A"},"title1":{"text":"on Total Bill","textColor":"#FF645A","bgColor":"#FFF4F4"},"title2":{"text":"when you pay your bill via Dineout Pay","boldTextColor":""}},"promocash":{"icon":"https://im1.dineout.co.in/images/uploads/misc/2019/May/23/group33@3x.png","title2":{"text":"Additionaly, you can #Save extra upto {earning_percentage}%# on your bill using @AMNT@ Promocash","boldTextColor":"#3877D6"}},"note":{"text":"Pay your bill via Dineout Pay to save upto #5%# on your bill using @AMNT@ PromoCash & additionally, get #20% cashback#","color":"#696969","cashColor":"#3595ff"},"rdp":{"title":{"text":"View Restaurant Details","color":"#ffffff"},"gradients":["#65c7ff","#3595ff"],"primary_color":"#ff645a","secondary_color":"#ff645a","deepLink":"bangalore/shiro-vittal-mallya-road-central-bangalore-1352"},"action":{"title":{"text":"How it works?","color":"#3c79d3"},"deepLink":"dineout://web?title=Dineout Pay&link=https://www.dineout.co.in/dineout-pay/how-it-works&showNav=1","url":"/dineout-pay/how-it-works"}}}],"totalOfferDealText":""},{"cuisine":["Asian"],"img":["https://im1.dineout.co.in/images/uploads/restaurant/sharpen/3/h/g/p35741-15517711065c7e25e2634b0.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/3/s/x/p35741-16353148466178ec9ec3efe.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/3/c/q/p35741-16353148546178eca60a5cb.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/3/e/m/p35741-16353148686178ecb4287f1.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/3/q/p/p35741-16353148756178ecbba9944.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/3/p/h/p35741-16353148616178ecad19dc5.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/3/m/t/p35741-15517711175c7e25ed3a6f3.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/3/t/r/p35741-15517711215c7e25f1cdaed.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/3/j/h/p35741-15517711265c7e25f6b1d8e.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/3/f/d/p35741-15517711315c7e25fb7b4be.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/3/q/g/p35741-15517711365c7e2600dd5ed.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/3/h/s/p35741-15517711125c7e25e8623a8.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/3/f/m/p35741-15517711415c7e2605eb612.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/3/r/x/p35741-15517711465c7e260ae5353.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/3/i/j/p35741-15517711585c7e26160ef3f.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/3/o/c/p35741-15517711635c7e261b9fefa.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/3/w/a/p35741-15517711525c7e261065c58.jpg?w=400"],"locality_name":"Vittal Mallya Road","is_pf":"false","area_name":"Central Bangalore","is_accept_payment":true,"is_swor":true,"costFor2":"1,600","tags":["Dineout Pay","Casual Dining","Chopsticks and More","Places to Celebrate","Cool and Casual","Best Bars and Pubs","Gourmet Passport","Quick Bites","Takeaway","Dessert","k a","Halloween Special","bangalore block","World Cuisine","Gandhi Jayanti","International Curry Week","Ban Alcohol Block","Welcome Back","Sinfully Sweet","Instant Discount","Pawri Specials","DP Food","Raising the Bar","Bangalore Alcohol Shut","Delhi Bar Casual Cafe Fine DC4","Delhi Bar Casual NI DC2","Delhi Bar Casual NI DC5","Delhi Cafe Fine QSR FastFood DC3","Bangalore Bar Casual DC2","Bangalore Bar Casual NI DC3","Best Places to Drink","Best Quick Bites","Bangalore Restaurants for DC0 v1","Bangalore Restaurants for RDP DC0 v1","Bangalore Restaurants for RDP DC1 v1","Bangalore Restaurants for RDP DC3 v1","Bangalore Restaurants for RDP DC4 v1","Bangalore Restaurants for RDP DC5 v1","Bangalore Restaurants for DC6 v1","Top Quick Bites","Bangalore Restaurants for DC0 v2","Bangalore Restaurants for DC0 v3","Bangalore Restaurants for DC6 v3","Bangalore Restaurants for RDP C2 v3","Bangalore Restaurants for RDP C3 v3","Bangalore Restaurants for RDP C4 v3","Best Places to Drinks"],"avg_rating":4.4,"r_id":35741,"profile_name":"Sriracha","recency":0,"offers":["instant_discount##Flat {{Percentage_OFFER}}% Off the Total Bill"],"offer_type":["instant_discount"],"fullfillment":"true","n_regular_offers":0,"n_offers":1,"offer_data":{"title":"Offers available","smartpay_text":"Pay your restaurant bill via Dineout and get 20% cashback (up to Rs. 300)","more_offers_text":"","offers":[{"title_1":"Flat {{Percentage_OFFER}}% Off the Total Bill","labelText":"","labelColor":""}],"textColor":"#3595ff","tagColor":"#00c34e","tagId":1,"deepLink":"dineout://web?title=Dineout Pay&link=https://www.dineout.co.in/app-webview-smartpay"},"all_offer_data":{"title":"","smartpay_text":"Pay your restaurant bill via Dineout and get 20% cashback (up to Rs. 300)","more_offers_text":"","offers":[{"title":"Flat {{Percentage_OFFER}}% Off the Total Bill","type":"","offerValidityAr":[{"day":"Sunday","startTime":0,"endTime":1439},{"day":"Monday","startTime":0,"endTime":1439},{"day":"Tuesday","startTime":0,"endTime":1439},{"day":"Wednesday","startTime":0,"endTime":1439},{"day":"Thursday","startTime":0,"endTime":1439},{"day":"Friday","startTime":0,"endTime":1439},{"day":"Saturday","startTime":0,"endTime":1439}],"offerValidityStr":"Mon-Sun 00:00 AM-11:59 PM"}],"textColor":"#3595ff"},"gpAlert":"","events_obj":[],"cta":[],"event_text":"","restaurant_open_close_ar":[],"restaurant_closed_status":false,"restaurant_closed_message":"","rdp_link":"/bangalore/sriracha-vittal-mallya-road-central-bangalore-35741","restaurantType":2,"ctaHeader":"","buyFrom":1664084930,"tickets":{"show_count":1,"data":[]},"type":"restaurant","hotelName":"UB City","hasPreBook":false,"isSponsered":0,"persuassionArr":[],"more_offers_text":"","more_all_offers_text":"","tagInfo":[{"text":"Pay bill and get 10% cashback","textColor":"#333333","tagColor":"#FFF4F4","tagTextColor":"#F67373","tagText":"Dineout Pay","url":"/dineout-pay/instant-discount/how-it-works","deepLink":"dineout://web?title=Dineout Pay&link=https://www.dineout.co.in/app-webview-smartpay","tagIcon":"https://im1.dineout.co.in/images/uploads/misc/2019/Jan/17/information.png","action":{"tag":{"title":{"text":"Dineout Pay Offer","color":"#ffffff"},"gradients":["#28e397","#00c34e"]},"restName":{"text":"at Sriracha, Vittal Mallya Road","color":"#696969"},"cashbacks":[{"title1":{"text":"Usable","color":"#696969"},"title2":{"text":"PromoCash","color":"#3595FF","icon":"https://im1.dineout.co.in/images/uploads/misc/2019/May/23/group33@3x.png"},"cb":{"text":"#5#%","color":"#141723"},"title3":{"text":"#Of Bill Amount#","color":"#141723"},"bg_color":"#eeeeee"},{"title1":{"text":"Additional","color":"#696969"},"title2":{"text":"Cashback","color":"#00c34e"},"cb":{"text":"#20#%","color":"#141723"},"title3":{"text":"#Of Payable Amount#","color":"#141723"},"bg_color":"#eeeeee"}],"header":{"primary_color":"#fff4f4","secondary_color":"#fff4f4","imageLogo":"https://im1.dineout.co.in/images/uploads/misc/2020/Jun/24/group15@3x.png","icon":"https://im1.dineout.co.in/images/uploads/misc/2020/Jun/24/address@3x.png","title":{"text":"","sub_title":"","sub_titleColor":"#999999","textColor":""}},"cashback":{"title":{"text":"Get {cb_percentage}% Cashback","textColor":"#FF645A"},"title2":{"text":"as PromoCash, when you pay your bill via Dineout Pay","boldTextColor":""}},"IDcashback":{"icon":"https://im1.dineout.co.in/images/uploads/misc/2020/Jun/24/group@3x.png","title":{"text":"Flat {id_percentage}% Instant Discount","textColor":"#FF645A"},"title1":{"text":"on Total Bill","textColor":"#FF645A","bgColor":"#FFF4F4"},"title2":{"text":"when you pay your bill via Dineout Pay","boldTextColor":""}},"promocash":{"icon":"https://im1.dineout.co.in/images/uploads/misc/2019/May/23/group33@3x.png","title2":{"text":"Additionaly, you can #Save extra upto {earning_percentage}%# on your bill using @AMNT@ Promocash","boldTextColor":"#3877D6"}},"note":{"text":"Pay your bill via Dineout Pay to save upto #5%# on your bill using @AMNT@ PromoCash & additionally, get #20% cashback#","color":"#696969","cashColor":"#3595ff"},"rdp":{"title":{"text":"View Restaurant Details","color":"#ffffff"},"gradients":["#65c7ff","#3595ff"],"primary_color":"#ff645a","secondary_color":"#ff645a","deepLink":"bangalore/sriracha-vittal-mallya-road-central-bangalore-35741"},"action":{"title":{"text":"How it works?","color":"#3c79d3"},"deepLink":"dineout://web?title=Dineout Pay&link=https://www.dineout.co.in/dineout-pay/how-it-works&showNav=1","url":"/dineout-pay/how-it-works"}}}],"totalOfferDealText":""},{"cuisine":["Finger Food","Italian","North Indian"],"img":["https://im1.dineout.co.in/images/uploads/restaurant/sharpen/2/i/a/p23017-16019826555f7c50bfe3d65.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/2/l/m/p23017-147289157757ca8ab97e31c.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/2/s/v/p23017-1466571007576a18ff1de59.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/2/d/q/p23017-1466571010576a1902debe6.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/2/b/k/p23017-1466571014576a19068a036.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/2/x/k/p23017-1502562752598f49c08c949.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/2/o/p/p23017-1502562755598f49c3b361e.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/2/j/d/p23017-1502562758598f49c67e268.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/2/d/z/p23017-1502562761598f49c99f968.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/2/u/o/p23017-1502562764598f49cc8f66a.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/2/h/e/p23017-1502562768598f49d014c97.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/2/o/n/p23017-1502562771598f49d3e22ae.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/2/g/r/p23017-1502562775598f49d7590de.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/2/x/g/p23017-1466571026576a191214e59.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/2/w/i/p23017-1466571029576a1915a6a3f.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/2/d/x/p23017-149072793258dab3fc08382.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/2/r/z/p23017-149072793558dab3ff684cc.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/2/a/w/p23017-149072793958dab4037af05.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/2/o/n/p23017-149072794358dab40767995.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/2/m/u/p23017-149072794758dab40b4727b.jpg?w=400"],"locality_name":"Cunningham Road","is_pf":"false","area_name":"Central Bangalore","is_accept_payment":true,"is_swor":true,"costFor2":"2,000","tags":["Dineout Pay","Nightlife","Addicted to Sheesha","Outdoor Seating","Handpicked Offers","Christmas Recommendations","Party Zones","Hidden Gems","Best Bars and Pubs","Paypal","Takeaway","High on Spirit","Trending","Halloween Special","Bottoms Up","Valentine_Booking","Live Screening","Must Try Pubs and Bars","Eat and Cheer","bangalore block","Best Cafes","Gandhi Jayanti","31 December Block","Christmas and New Year Celebration","Ban Alcohol Block","Safe To Eat Out","Contactless Dining","Welcome Back","Trending Now","Instant Discount","Bill se Aazaadi","Unlock Drinks","Hammered","Budweiser","Pawri Specials","Vaccinated Staff","Outdoor Dining","Bangalores Finest","Raising the Bar","Bangalore Alcohol Shut","Best of Drinks","Best of 2021","Delhi Bar Casual Cafe Fine DC4","Delhi Bar Casual NI DC5","Delhi Cafe Fine QSR FastFood DC3","Bangalore Bar Casual NI DC3","Best Places to Drink","Best Cafes to Chill","Best Outdoor and Rooftop","Best Family Dining","Best Budget Friendly Restaurants","Best Pizza Places","Dineout Birthday","Bangalore Restaurants for DC0 v1","Bangalore Restaurants for RDP DC1 v1","Bangalore Restaurants for DC6 v1","Skip IB","Top Breweries","Pay Day","Bangalore Restaurants for DC7 v2","Best After Hours","Best Diners Choice","Best Pay Day Treat","Bangalore Restaurants for DC1 v3","Top Italian","Best Places to Drinks"],"avg_rating":4.3,"r_id":23017,"profile_name":"Hammered","recency":0,"offers":["instant_discount##Flat {{Percentage_OFFER}}% Off the Total Bill"],"offer_type":["instant_discount"],"fullfillment":"true","n_regular_offers":0,"n_offers":1,"offer_data":{"title":"Offers available","smartpay_text":"Pay your restaurant bill via Dineout and get 20% cashback (up to Rs. 300)","more_offers_text":"","offers":[{"title_1":"Flat {{Percentage_OFFER}}% Off the Total Bill","labelText":"","labelColor":""}],"textColor":"#3595ff","tagColor":"#00c34e","tagId":1,"deepLink":"dineout://web?title=Dineout Pay&link=https://www.dineout.co.in/app-webview-smartpay"},"all_offer_data":{"title":"","smartpay_text":"Pay your restaurant bill via Dineout and get 20% cashback (up to Rs. 300)","more_offers_text":"","offers":[{"title":"Flat {{Percentage_OFFER}}% Off the Total Bill","type":"","offerValidityAr":[{"day":"Sunday","startTime":0,"endTime":1439},{"day":"Monday","startTime":0,"endTime":1439},{"day":"Tuesday","startTime":0,"endTime":1439},{"day":"Wednesday","startTime":0,"endTime":1439},{"day":"Thursday","startTime":0,"endTime":1439},{"day":"Friday","startTime":0,"endTime":1439},{"day":"Saturday","startTime":0,"endTime":1439}],"offerValidityStr":"Mon-Sun 00:00 AM-11:59 PM"}],"textColor":"#3595ff"},"gpAlert":"","events_obj":[],"cta":[],"event_text":"","restaurant_open_close_ar":[],"restaurant_closed_status":false,"restaurant_closed_message":"","rdp_link":"/bangalore/hammered-cunningham-road-central-bangalore-23017","restaurantType":2,"ctaHeader":"","buyFrom":1664084930,"tickets":{"show_count":1,"data":[]},"type":"restaurant","hotelName":"","hasPreBook":false,"isSponsered":0,"persuassionArr":[],"more_offers_text":"","more_all_offers_text":"","tagInfo":[{"text":"Pay bill and get 10% cashback","textColor":"#333333","tagColor":"#FFF4F4","tagTextColor":"#F67373","tagText":"Dineout Pay","url":"/dineout-pay/instant-discount/how-it-works","deepLink":"dineout://web?title=Dineout Pay&link=https://www.dineout.co.in/app-webview-smartpay","tagIcon":"https://im1.dineout.co.in/images/uploads/misc/2019/Jan/17/information.png","action":{"tag":{"title":{"text":"Dineout Pay Offer","color":"#ffffff"},"gradients":["#28e397","#00c34e"]},"restName":{"text":"at Hammered, Cunningham Road","color":"#696969"},"cashbacks":[{"title1":{"text":"Usable","color":"#696969"},"title2":{"text":"PromoCash","color":"#3595FF","icon":"https://im1.dineout.co.in/images/uploads/misc/2019/May/23/group33@3x.png"},"cb":{"text":"#5#%","color":"#141723"},"title3":{"text":"#Of Bill Amount#","color":"#141723"},"bg_color":"#eeeeee"},{"title1":{"text":"Additional","color":"#696969"},"title2":{"text":"Cashback","color":"#00c34e"},"cb":{"text":"#20#%","color":"#141723"},"title3":{"text":"#Of Payable Amount#","color":"#141723"},"bg_color":"#eeeeee"}],"header":{"primary_color":"#fff4f4","secondary_color":"#fff4f4","imageLogo":"https://im1.dineout.co.in/images/uploads/misc/2020/Jun/24/group15@3x.png","icon":"https://im1.dineout.co.in/images/uploads/misc/2020/Jun/24/address@3x.png","title":{"text":"","sub_title":"","sub_titleColor":"#999999","textColor":""}},"cashback":{"title":{"text":"Get {cb_percentage}% Cashback","textColor":"#FF645A"},"title2":{"text":"as PromoCash, when you pay your bill via Dineout Pay","boldTextColor":""}},"IDcashback":{"icon":"https://im1.dineout.co.in/images/uploads/misc/2020/Jun/24/group@3x.png","title":{"text":"Flat {id_percentage}% Instant Discount","textColor":"#FF645A"},"title1":{"text":"on Total Bill","textColor":"#FF645A","bgColor":"#FFF4F4"},"title2":{"text":"when you pay your bill via Dineout Pay","boldTextColor":""}},"promocash":{"icon":"https://im1.dineout.co.in/images/uploads/misc/2019/May/23/group33@3x.png","title2":{"text":"Additionaly, you can #Save extra upto {earning_percentage}%# on your bill using @AMNT@ Promocash","boldTextColor":"#3877D6"}},"note":{"text":"Pay your bill via Dineout Pay to save upto #5%# on your bill using @AMNT@ PromoCash & additionally, get #20% cashback#","color":"#696969","cashColor":"#3595ff"},"rdp":{"title":{"text":"View Restaurant Details","color":"#ffffff"},"gradients":["#65c7ff","#3595ff"],"primary_color":"#ff645a","secondary_color":"#ff645a","deepLink":"bangalore/hammered-cunningham-road-central-bangalore-23017"},"action":{"title":{"text":"How it works?","color":"#3c79d3"},"deepLink":"dineout://web?title=Dineout Pay&link=https://www.dineout.co.in/dineout-pay/how-it-works&showNav=1","url":"/dineout-pay/how-it-works"}}}],"totalOfferDealText":""},{"cuisine":["Chinese","North Indian","South Indian","Mangalorean","Asian","Seafood"],"img":["https://im1.dineout.co.in/images/uploads/restaurant/sharpen/8/d/x/p89066-1615294946604771e25bf3d.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/8/m/i/p89066-1615294953604771e960bcd.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/8/k/g/p89066-1615294960604771f0d3cf0.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/8/s/j/p89066-1615294968604771f88f7e6.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/8/p/n/p89066-161529497860477202d819c.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/8/x/e/p89066-16140824186034f172ae48e.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/8/r/s/p89066-161529499660477214937a4.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/8/h/h/p89066-16152950046047721c6d3e5.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/8/r/v/p89066-16152949896047720d0fa09.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/8/f/d/p89066-16140853866034fd0a6e6de.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/8/r/q/p89066-16140853736034fcfd97c00.jpg?w=400","https://im1.dineout.co.in/images/uploads/restaurant/sharpen/8/w/r/p89066-16140853796034fd03bba7e.jpg?w=400"],"locality_name":"Residency Road","is_pf":"false","area_name":"Central Bangalore","is_accept_payment":true,"is_swor":true,"costFor2":"1,300","tags":["Dineout Pay","Casual Dining","Safe To Eat Out","Welcome Back","Dineout Passport","GpDp","Clearance Sale","Vaccinated Staff","Childrens Day","Best of Food 2021","Best of 2021","Best of Dineout Passport","Delhi Bar Casual NI DC5","Delhi Casual NI Buffet Weekday DC1","Delhi Casual NI Buffet Weekend DC0","Bangalore Casual Buffet Weekday DC4","Bangalore Casual Buffet Weekend DC5","Movie Special","Bangalore Restaurants for RDP DC5 v1","Bangalore Restaurants for RDP DC7 v1","Skip IB","Bangalore Restaurants for DC4 v2","Bangalore Restaurants for RDP C1 v2","Bangalore Restaurants for RDP C3 v2","Best Metaverse Restaurant","Bangalore Restaurants for DC3 v3","Bangalore Restaurants for RDP C4 v3","Bangalore Trending Dineout Passport"],"avg_rating":4.4,"r_id":89066,"profile_name":"Coastal Machali Co","recency":0,"offers":["passport_discount##Flat {{Percentage_OFFER}}% Off the Total Bill",",free_discount_pin##15% Off the Total Bill"],"offer_type":["passport_discount","free_discount_pin"],"fullfillment":"true","n_regular_offers":0,"n_offers":2,"offer_data":{"title":"Offers available","smartpay_text":"Pay your restaurant bill via Dineout and get 20% cashback (up to Rs. 300)","more_offers_text":"1 more offer ","offers":[{"title_1":"Flat {{Percentage_OFFER}}% Off the Total Bill","labelText":"","labelColor":""},{"title_1":"15% Off the Total Bill","labelText":"","labelColor":""}],"textColor":"#3595ff","tagColor":"#00c34e","tagId":1,"deepLink":"dineout://web?title=Dineout Pay&link=https://www.dineout.co.in/app-webview-smartpay"},"all_offer_data":{"title":"","smartpay_text":"Pay your restaurant bill via Dineout and get 20% cashback (up to Rs. 300)","more_offers_text":"","offers":[{"title":"Flat {{Percentage_OFFER}}% Off the Total Bill","type":"","offerValidityAr":[{"day":"Sunday","startTime":0,"endTime":1439},{"day":"Monday","startTime":0,"endTime":1439},{"day":"Tuesday","startTime":0,"endTime":1439},{"day":"Wednesday","startTime":0,"endTime":1439},{"day":"Thursday","startTime":0,"endTime":1439},{"day":"Friday","startTime":0,"endTime":1439},{"day":"Saturday","startTime":0,"endTime":1439}],"offerValidityStr":"Mon-Sun 00:00 AM-11:59 PM"},{"title":"15% Off the Total Bill","type":"","offerValidityAr":[{"day":"Sunday","startTime":0,"endTime":1439},{"day":"Monday","startTime":0,"endTime":1439},{"day":"Tuesday","startTime":0,"endTime":1439},{"day":"Wednesday","startTime":0,"endTime":1439},{"day":"Thursday","startTime":0,"endTime":1439},{"day":"Friday","startTime":0,"endTime":1439},{"day":"Saturday","startTime":0,"endTime":1439}],"offerValidityStr":"Mon-Sun 00:00 AM-11:59 PM"}],"textColor":"#3595ff"},"gpAlert":"","events_obj":[],"cta":[],"event_text":"","restaurant_open_close_ar":[],"restaurant_closed_status":false,"restaurant_closed_message":"","rdp_link":"/bangalore/coastal-machali-co-residency-road-central-bangalore-89066","restaurantType":2,"ctaHeader":"","buyFrom":1664084930,"tickets":{"show_count":1,"data":[]},"type":"restaurant","hotelName":"Cears Plaza","hasPreBook":false,"isSponsered":0,"persuassionArr":[{"bgColor":"#EAF4FF","textColor":"#57aff2","text":"Popular for food","icon":"https://im1.dineout.co.in/images/uploads/misc/2018/Apr/23/popular.png"}],"more_offers_text":"1 more offer ","more_all_offers_text":"","tagInfo":[{"text":"Pay bill and get 10% cashback","textColor":"#333333","tagColor":"#FFF4F4","tagTextColor":"#F67373","tagText":"Dineout Pay","url":"/dineout-pay/how-it-works","deepLink":"dineout://web?title=Dineout Pay&link=https://www.dineout.co.in/app-webview-smartpay","tagIcon":"https://im1.dineout.co.in/images/uploads/misc/2019/Jan/17/information.png","action":{"tag":{"title":{"text":"Dineout Pay Offer","color":"#ffffff"},"gradients":["#28e397","#00c34e"]},"restName":{"text":"at Coastal Machali Co, Residency Road","color":"#696969"},"cashbacks":[{"title1":{"text":"Usable","color":"#696969"},"title2":{"text":"PromoCash","color":"#3595FF","icon":"https://im1.dineout.co.in/images/uploads/misc/2019/May/23/group33@3x.png"},"cb":{"text":"#5#%","color":"#141723"},"title3":{"text":"#Of Bill Amount#","color":"#141723"},"bg_color":"#eeeeee"},{"title1":{"text":"Additional","color":"#696969"},"title2":{"text":"Cashback","color":"#00c34e"},"cb":{"text":"#20#%","color":"#141723"},"title3":{"text":"#Of Payable Amount#","color":"#141723"},"bg_color":"#eeeeee"}],"header":{"primary_color":"#fff4f4","secondary_color":"#fff4f4","imageLogo":"https://im1.dineout.co.in/images/uploads/misc/2020/Jun/24/group15@3x.png","icon":"https://im1.dineout.co.in/images/uploads/misc/2020/Jun/24/address@3x.png","title":{"text":"","sub_title":"","sub_titleColor":"#999999","textColor":""}},"cashback":{"title":{"text":"Get {cb_percentage}% Cashback","textColor":"#FF645A"},"title2":{"text":"as PromoCash, when you pay your bill via Dineout Pay","boldTextColor":""}},"IDcashback":{"icon":"https://im1.dineout.co.in/images/uploads/misc/2020/Jun/24/group@3x.png","title":{"text":"Flat {id_percentage}% Instant Discount","textColor":"#FF645A"},"title1":{"text":"on Total Bill","textColor":"#FF645A","bgColor":"#FFF4F4"},"title2":{"text":"when you pay your bill via Dineout Pay","boldTextColor":""}},"promocash":{"icon":"https://im1.dineout.co.in/images/uploads/misc/2019/May/23/group33@3x.png","title2":{"text":"Additionaly, you can #Save extra upto {earning_percentage}%# on your bill using @AMNT@ Promocash","boldTextColor":"#3877D6"}},"note":{"text":"Pay your bill via Dineout Pay to save upto #5%# on your bill using @AMNT@ PromoCash & additionally, get #20% cashback#","color":"#696969","cashColor":"#3595ff"},"rdp":{"title":{"text":"View Restaurant Details","color":"#ffffff"},"gradients":["#65c7ff","#3595ff"],"primary_color":"#ff645a","secondary_color":"#ff645a","deepLink":"bangalore/coastal-machali-co-residency-road-central-bangalore-89066"},"action":{"title":{"text":"How it works?","color":"#3c79d3"},"deepLink":"dineout://web?title=Dineout Pay&link=https://www.dineout.co.in/dineout-pay/how-it-works&showNav=1","url":"/dineout-pay/how-it-works"}}}],"totalOfferDealText":""}],"city_name":"bangalore","listingGaCategory":"D_Listing","gstValue":"18.00"},"w1-pagination":{"pages":66,"resultCount":1381,"selectedPage":1,"start":1,"apicall":false,"offset":21,"end":10,"pagination_page":1,"listingGaCategory":"D_Listing","applyFilter":{"city_name":"bangalore","limit":21,"tag":["Welcome Back"],"start":0,"cityId":"2","d-id":"GM_0u-EOU00-rWT3kib5DCTV7N9sP8e0","listing":1,"cuisine":[],"feature":[],"gp_offer_types":[],"dp_offer_types":[],"showAvailableTicket":0}},"w1":{"filters":[null,null,null,null],"resultCount":1381,"noResultFound":false,"seo_url":[{"path":"https://www.dineout.co.in","name":"dineout"},{"path":"https://www.dineout.co.in/bangalore","name":"Bangalore"},{"path":"https://www.dineout.co.in/bangalore-restaurants","name":"Bangalore Restaurants"},{"path":"https://www.dineout.co.in/bangalore-restaurants/welcome-back","name":"welcome back","active":true}],"tag_url":"Best Welcome Back Restaurants Near Me in Bangalore","city_name":"bangalore","topTenLink":{"name":"Top 10 Restaurants in Bangalore","url":"/top-10-restaurants-in-bangalore"},"nearMeLink":{"name":"Welcome Back Restaurants Near Me","url":"/welcome-back-restaurants-near-me"},"chain_url":"","meta_data":{"meta_title":"Best Welcome Back Restaurants Near Me in Bangalore You Must Try | Dineout","meta_description":"Check out the list of all best Welcome Back restaurants near you in Bangalore and book through Dineout to get various offers, discounts, cash backs at these restaurants.","meta_keywords":"Welcome Back restaurants in Bangalore, best Welcome Back restaurants in Bangalore","arr_filters":{},"pagination":false,"header":"Best Welcome Back Restaurants Near Me in Bangalore","content":""},"offset":21,"listingGaCategory":"D_Listing","dbsData":{"showDBS":true,"dbsTagName":"Digibank Dining Offers","isDbsPage":false,"dbsBanner":{"src":"/img/dbs_1136x320.png","title":"DBS BANK OFFER"}},"showBanner":"","gstValue":"18.00","isGIRFActive":false,"girfEndDate":"2021-03-31 23:59:59"}}
$["w0-w0"].popularLocations=$["w0-w0-searchLocationList"].popularLocations
$.w0.selectedCity=$["w0-searchResults"].selectedCity
$.w0.searchResults=$["w0-searchResults"].searchResults
$.w0.locData=$["w0-w0"].locData
$["w1-filters-filter[4]"].filterlist=$["w1-filters-0"].filters[0].arr[0]
$["w1-filters-filter[5]"].filterlist=$["w1-filters-0"].filters[0].arr[1]
$["w1-filters-filter[6]"].filterlist=$["w1-filters-0"].filters[0].arr[2]
$["w1-filters-filter[7]"].filterlist=$["w1-filters-0"].filters[0].arr[3]
$["w1-filters-filter[8]"].filterlist=$["w1-filters-0"].filters[1].arr[0]
$["w1-filters-filter[9]"].filterlist=$["w1-filters-0"].filters[1].arr[1]
$["w1-filters-filter[10]"].filterlist=$["w1-filters-0"].filters[1].arr[2]
$["w1-filters-filter[11]"].filterlist=$["w1-filters-0"].filters[1].arr[3]
$["w1-filters-filter[12]"].filterlist=$["w1-filters-0"].filters[2].arr[0]
$["w1-filters-filter[13]"].filterlist=$["w1-filters-0"].filters[2].arr[1]
$["w1-filters-filter[14]"].filterlist=$["w1-filters-0"].filters[2].arr[2]
$["w1-filters-filter[15]"].filterlist=$["w1-filters-0"].filters[2].arr[3]
$["w1-filters"].all_filters[0].arr[0]=$["w1-filters-filter[0]"].filterlist
$["w1-filters"].all_filters[0].arr[1]=$["w1-filters-filter[1]"].filterlist
$["w1-filters"].all_filters[0].arr[2]=$["w1-filters-filter[2]"].filterlist
$["w1-filters"].all_filters[0].arr[3]=$["w1-filters-filter[3]"].filterlist
$["w1-filters"].all_filters[1]=$["w1-filters-0"].filters[0]
$["w1-filters"].all_filters[2]=$["w1-filters-0"].filters[1]
$["w1-filters"].all_filters[3]=$["w1-filters-0"].filters[2]
$["w1-filters"].filters=$["w1-filters"].all_filters
$.w1.listing=$["w1-restarant"].listing
$.w1.filters[0]=$["w1-filters"].all_filters[0]
$.w1.filters[1]=$["w1-filters-0"].filters[0]
$.w1.filters[2]=$["w1-filters-0"].filters[1]
$.w1.filters[3]=$["w1-filters-0"].filters[2]
$.w1.sortFilters=$["w1-sorter"].sortFilters
$.w1.latInfo=$.w0.cityList[2]
$.w1.applyFilter=$["w1-pagination"].applyFilter
$.w1.showing_rest_with_applicable_deals=$["w1-sorter"].showing_rest_with_applicable_deals
t["w0-w0-searchLocationList"]=$["w0-w0-searchLocationList"]
t["w0-w0"]=$["w0-w0"]
t["w0-searchResults"]=$["w0-searchResults"]
t["w0-desktopuser"]=$["w0-desktopuser"]
t.w0=$.w0
t["w1-filters-0"]=$["w1-filters-0"]
t["w1-filters-filter_popup"]=$["w1-filters-filter_popup"]
t["w1-filters-filter[0]"]=$["w1-filters-filter[0]"]
t["w1-filters-filter[1]"]=$["w1-filters-filter[1]"]
t["w1-filters-filter[2]"]=$["w1-filters-filter[2]"]
t["w1-filters-filter[3]"]=$["w1-filters-filter[3]"]
t["w1-filters-filter[4]"]=$["w1-filters-filter[4]"]
t["w1-filters-filter[5]"]=$["w1-filters-filter[5]"]
t["w1-filters-filter[6]"]=$["w1-filters-filter[6]"]
t["w1-filters-filter[7]"]=$["w1-filters-filter[7]"]
t["w1-filters-filter[8]"]=$["w1-filters-filter[8]"]
t["w1-filters-filter[9]"]=$["w1-filters-filter[9]"]
t["w1-filters-filter[10]"]=$["w1-filters-filter[10]"]
t["w1-filters-filter[11]"]=$["w1-filters-filter[11]"]
t["w1-filters-filter[12]"]=$["w1-filters-filter[12]"]
t["w1-filters-filter[13]"]=$["w1-filters-filter[13]"]
t["w1-filters-filter[14]"]=$["w1-filters-filter[14]"]
t["w1-filters-filter[15]"]=$["w1-filters-filter[15]"]
t["w1-filters"]=$["w1-filters"]
t["w1-sorter"]=$["w1-sorter"]
t["w1-restarant"]=$["w1-restarant"]
t["w1-pagination"]=$["w1-pagination"]
t.w1=$.w1
}());
</script><noscript data-ids="w0-w0-searchLocationList,w0-w0,w0-searchResults,w0-desktopuser,w0,w1-filters-0,w1-filters-filter_popup,w1-filters-filter[0],w1-filters-filter[1],w1-filters-filter[2],w1-filters-filter[3],w1-filters-filter[4],w1-filters-filter[5],w1-filters-filter[6],w1-filters-filter[7],w1-filters-filter[8],w1-filters-filter[9],w1-filters-filter[10],w1-filters-filter[11],w1-filters-filter[12],w1-filters-filter[13],w1-filters-filter[14],w1-filters-filter[15],w1-filters,w1-sorter,w1-restarant,w1-pagination,w1" id="markoWidgets"></noscript><div class="footer-new" id="footerId"><div class="container-footer"><h4>Available in</h4><ul class="city_link"><li><a href="/delhi">Delhi</a></li> <li><a href="/mumbai">Mumbai</a></li> <li><a href="/bangalore">Bangalore</a></li> <li><a href="/chennai">Chennai</a></li> <li><a href="/hyderabad">Hyderabad</a></li> <li><a href="/pune">Pune</a></li> <li><a href="/kolkata">Kolkata</a></li> <li><a href="/ahmedabad">Ahmedabad</a></li> <li><a href="/chandigarh">Chandigarh</a></li> <li><a href="/goa">Goa</a></li> <li><a href="/jaipur">Jaipur</a></li> <li><a href="/lucknow">Lucknow</a></li> <li><a href="/indore">Indore</a></li> <li><a href="/udaipur">Udaipur</a></li> <li><a href="/agra">Agra</a></li> <li><a href="/vadodara">Vadodara</a></li> <li><a href="/nagpur">Nagpur</a></li><li><a href="/kochi">Kochi</a></li><li><a href="/surat">Surat</a></li><li><a href="/ludhiana">Ludhiana</a></li></ul></div><hr/><div class="container-footer footer_tabs"><div><h4>Discover</h4><ul><li><a href="/bangalore-restaurants">Trending Restaurants</a></li><li><a href="/bangalore-restaurants/dineout-pay">Dineout Pay</a></li><li><a href="/contactless-dining">Contactless Dining</a></li></ul></div><div><h4>About</h4><ul><li><a href="/aboutus">About Us</a></li><li><a href="https://www.dineout.co.in/blog" rel="noopener" target="_blank">Blog</a></li><li><a href="https://www.dineout.careers" rel="noopener" target="_blank">Careers</a></li><li><a href="https://inresto.com" rel="noopener" target="_blank">Dineout for Business</a></li><li><a href="/add-your-restaurant">Add Restaurant</a></li><li><a href="/termsandconditions">Terms & Conditions</a></li><li><a href="/privacy-policy">Privacy Policy</a></li></ul></div><div><h4>Top Cuisines</h4><ul><li><a href="/bangalore-restaurants/chinese-cuisine">Chinese</a></li><li><a href="/bangalore-restaurants/italian-cuisine">Italian</a></li><li><a href="/bangalore-restaurants/north-indian-cuisine">North Indian</a></li><li><a href="/bangalore-restaurants/kerala-cuisine">Kerala</a></li><li><a href="/bangalore-restaurants/bengali-cuisine">Bengali</a></li><li><a href="/bangalore-restaurants/thai-cuisine">Thai</a></li></ul></div><div><h4>Top Facilities</h4><ul><li><a href="/bangalore-restaurants/fine-dining">Fine Dining</a></li><li><a href="/bangalore-restaurants/5-star">5 Star</a></li><li><a href="/bangalore-restaurants/seafood-cuisine">Sea food</a></li></ul></div><div><h4>Top Locations</h4><ul class="pull-left"><li><a href="/bangalore-restaurants/south-bangalore/koramangala">Koramangala</a></li><li><a href="/bangalore-restaurants/east-bangalore/indiranagar">Indiranagar</a></li><li><a href="/bangalore-restaurants/south-bangalore/jayanagar">Jayanagar</a></li><li><a href="/bangalore-restaurants/east-bangalore/whitefield">Whitefield</a></li><li><a href="/bangalore-restaurants/east-bangalore/marathahalli">Marathahalli</a></li><li><a href="/bangalore-restaurants/south-bangalore/hsr-layout">HSR Layout</a></li></ul></div></div><hr/><div class="socialLinks"><div class="text"><img alt="Dineout" height="30" src="https://im1.dineout.co.in/images/uploads/misc/2020/Jan/8/dineout.png" width="110"/></div><div>Find the best Restaurants, Deals, Discounts & Offers</div><div class="contact_deatils">Contact: <strong> +91-9212340202</strong></div><div><ul><li><a href="https://www.youtube.com/channel/UCj_gwlpeh01QMdzbwGLxWTw" rel="noopener" target="_blank"><svg height="30" viewbox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg"><path d="M14.81 0c8.18 0 14.81 6.63 14.81 14.81s-6.63 14.81-14.81 14.81S0 22.99 0 14.81 6.63 0 14.81 0zm5.504 9.704H9.774a2.247 2.247 0 0 0-2.247 2.248v6.028a2.247 2.247 0 0 0 2.246 2.248h10.54a2.247 2.247 0 0 0 2.248-2.248v-6.028a2.247 2.247 0 0 0-2.247-2.248zm-6.774 2.144l4.293 2.83-4.293 2.831v-5.661z" fill="#D42428" fillrule="nonzero"></path></svg></a></li><li><a href="https://www.facebook.com/dineout.co.in/"><svg height="30" viewbox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg"><path d="M14.81 0c8.18 0 14.81 6.63 14.81 14.81s-6.63 14.81-14.81 14.81S0 22.99 0 14.81 6.63 0 14.81 0zm3.18 8H15.69c-3.09 0-3.184 2.117-3.185 2.64v2H10.99v2.356h1.513V22h3.108v-7.004h2.086s.195-1.13.29-2.366h-2.364v-1.612c0-.24.338-.564.674-.564h1.693V8z" fill="#3A5A98" fillrule="nonzero"></path></svg></a></li><li><a href="https://www.instagram.com/dineout_india" rel="noopener" target="_blank"><svg height="30" viewbox="0 0 30 30" width="30" xmlns="http://www.w3.org/2000/svg"><defs><lineargradient id="a" x1="50%" x2="50%" y1="99.709%" y2=".777%"><stop offset="0%" stop-color="#E09B3D"></stop><stop offset="30%" stop-color="#C74C4D"></stop><stop offset="60%" stop-color="#C21975"></stop><stop offset="100%" stop-color="#7024C4"></stop></lineargradient></defs><path d="M15 0c8.284 0 15 6.716 15 15 0 8.284-6.716 15-15 15-8.284 0-15-6.716-15-15C0 6.716 6.716 0 15 0zm3.234 7h-6.468l-.212.005A4.772 4.772 0 0 0 7 11.766v6.468l.005.212A4.772 4.772 0 0 0 11.766 23h6.468l.212-.005A4.772 4.772 0 0 0 23 18.234v-6.468l-.005-.212A4.772 4.772 0 0 0 18.234 7zm0 1.61a3.157 3.157 0 0 1 3.156 3.156v6.468l-.005.179a3.157 3.157 0 0 1-3.151 2.977h-6.468l-.179-.005a3.157 3.157 0 0 1-2.977-3.151v-6.468l.005-.179a3.157 3.157 0 0 1 3.151-2.977zM15 10.862A4.143 4.143 0 0 0 10.862 15 4.143 4.143 0 0 0 15 19.138 4.143 4.143 0 0 0 19.138 15 4.143 4.143 0 0 0 15 10.862zm0 1.61a2.529 2.529 0 1 1 0 5.057 2.529 2.529 0 0 1 0-5.058zm4.146-2.57a.992.992 0 1 0 0 1.982.992.992 0 0 0 0-1.983z" fill="url(#a)" fill-rule="nonzero"></path></svg></a></li><li><a href="https://twitter.com/dineout_india" rel="noopener" target="_blank"><svg height="30px" version="1.1" viewbox="0 0 30 30" width="30px" xmlns="http://www.w3.org/2000/svg"><g fill="none" fillrule="evenodd" id="Page-1" stroke="none" strokewidth="1"><g fill="#76A9EA" fillrule="nonzero" id="1.Home-Page" transform="translate(-762.000000, -6663.000000)"><g id="Footer" transform="translate(1.000000, 6015.000000)"><g id="Group-61" transform="translate(647.000000, 648.000000)"><g id="ic-twitter" transform="translate(114.000000, 0.000000)"><path d="M15,4.08562073e-14 C23.2842712,4.08562073e-14 30,6.71572875 30,15 C30,23.2842712 23.2842712,30 15,30 C6.71572875,30 2.84217094e-14,23.2842712 2.84217094e-14,15 C2.84217094e-14,6.71572875 6.71572875,4.08562073e-14 15,4.08562073e-14 Z M17.9167988,9 C17.5526436,9 17.1849777,9.05970578 16.8239823,9.17747594 C15.7054976,9.54239931 14.842487,10.5129157 14.571721,11.7103141 C14.4701399,12.1594411 14.4426381,12.6089784 14.4899178,13.0464105 C14.4953401,13.0966782 14.4727535,13.1317631 14.4588271,13.1482181 C14.434368,13.1770656 14.3996884,13.1936027 14.3636825,13.1936027 C14.3596645,13.1936027 14.3555295,13.1933975 14.3514335,13.1929871 C12.0051231,12.9636824 9.87971943,11.8145993 8.33315225,9.94694179 L8.13473814,9.69927573 C8.06652698,9.61123829 7.94466401,9.60791697 7.87129401,9.68083587 L7.83912299,9.72360943 C7.53352137,10.2751185 7.37202141,10.905907 7.37202141,11.5477749 C7.37202141,12.5314635 7.74772337,13.4584829 8.40031586,14.1342867 C8.19449118,14.0829521 7.9936256,14.0094816 7.80196508,13.9151392 L7.61353017,13.8138862 C7.50908182,13.7528468 7.38357741,13.8138638 7.35270957,13.9262874 L7.34561187,13.9774103 C7.32852564,15.4387452 8.14187691,16.7390591 9.36030441,17.3245861 C9.33576734,17.3252016 9.31123027,17.3254888 9.28665419,17.3254888 C9.15789633,17.3254888 9.02806353,17.3167712 8.89878554,17.299494 L8.70548838,17.2671782 C8.58786452,17.2435524 8.48669725,17.3433025 8.49120607,17.4604538 L8.4998685,17.511418 C8.89534836,18.8102136 9.95843942,19.7675578 11.2306222,19.9849197 C10.174787,20.7304828 8.94524171,21.1237613 7.66553004,21.1237613 L7.26657831,21.123515 C7.1436589,21.123515 7.03969817,21.2078007 7.00837342,21.3330392 C6.97751678,21.4563902 7.03435385,21.5865118 7.13917279,21.6506494 C8.58120362,22.5334332 10.2260456,23 11.896595,23 C13.3588719,23 14.7267063,22.6947414 15.9621421,22.0927594 C17.0947093,21.540881 18.095541,20.7519851 18.9368232,19.7479842 C19.7205271,18.8127167 20.3333687,17.7330475 20.7582619,16.5390139 C21.1632991,15.4008289 21.3773841,14.18636 21.3773841,13.0268779 L21.3773841,12.9716449 C21.3773451,12.7854695 21.4573929,12.6102916 21.5970474,12.4910441 C22.0386692,12.113865 22.432748,11.6810038 22.771834,11.2010332 L22.9686268,10.9074663 C23.0689987,10.749523 22.9106975,10.5515706 22.7455306,10.6286342 C22.3900357,10.7944562 22.0210044,10.9252754 21.6423376,11.019984 C22.007429,10.6550401 22.2932539,10.2100134 22.4775729,9.71437337 L22.5502873,9.49894335 C22.5951918,9.35118124 22.4645624,9.22118672 22.3347584,9.25663412 L22.286465,9.27797041 C21.7596787,9.60665996 21.1922443,9.85323868 20.5998827,10.0109358 C20.5655152,10.0200866 20.5300554,10.0247235 20.4944786,10.0247235 C20.3865779,10.0247235 20.2816809,9.98258068 20.1991755,9.90609163 C19.5689356,9.32179569 18.758354,9 17.9167988,9 Z" id="Combined-Shape"></path></g></g></g></g></g></svg></a></li></ul></div><div>© 2017, dineout.co.in. All Rights Reserved.</div></div></div><div class="logo-loader hide"><div class="imgDiv"><img alt="Dineout" class="spinLoader" src="https://im1.dineout.co.in/images/uploads/misc/2019/Sep/16/logo-loader.png" title="Dineout"/></div></div><div class="floating-tooltip"></div><script>
!function(f,b,e,v,n,t,s){if(f.fbq)return;n=f.fbq=function(){n.callMethod?
n.callMethod.apply(n,arguments):n.queue.push(arguments)};if(!f._fbq)f._fbq=n;
n.push=n;n.loaded=!0;n.version='2.0';n.queue=[];t=b.createElement(e);t.async=!0;
t.src=v;s=b.getElementsByTagName(e)[0];s.parentNode.insertBefore(t,s)}(window,
document,'script','https://connect.facebook.net/en_US/fbevents.js');
fbq('init', '596761190430600');
fbq('track', "PageView");
</script><noscript><img height="1" src="https://www.facebook.com/tr?id=596761190430600&ev=PageView&noscript=1" style="display:none" width="1"/></noscript><script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
var productionDomains = ['www.dineout.co.in', 'ola.dineout.co.in', 'cmh.dineout.co.in', 'hdfc.dineout.co.in', 'scb.dineout.co.in', 'event.dineout.co.in'];
if (productionDomains.includes(window.location.host)) {
ga('create', 'UA-32580312-1', {'cookieFlags': 'SameSite=None; Secure'});
ga('require', 'GTM-M8ZLFP3');
} else {
ga('create', 'UA-32580312-3', {'cookieFlags': 'SameSite=None; Secure'});
ga('require', 'GTM-M8ZLFP3');
}
var analyticsPage = 'undefined';
var analyticsPageName = analyticsPage ? analyticsPage : 'noPageName';
var pageName = 'listing';
var isWebview = 'false';
if (pageName != '' && pageName == 'dDetailPage' && analyticsPageName != '') {
ga('send', {
hitType: 'pageview',
page: location.pathname,
title: analyticsPageName,
location: location.href
});
} else if (isWebview !== 'webview'){
ga('send', 'pageview');
}
ga(function(tracker) {
var gaClientId = tracker.get('clientId');
createCookie('gaClientId', gaClientId, 2*365); // 2 Years cookie
});
</script><script>
var _comscore = _comscore || [];
_comscore.push({ c1: "2", c2: "6036484" });
(function() {
var s = document.createElement("script"), el = document.getElementsByTagName("script")[0]; s.async = true;
s.src = (document.location.protocol == "https:" ? "https://sb" : "http://b") + ".scorecardresearch.com/beacon.js";
el.parentNode.insertBefore(s, el);
})();
</script><noscript><img src="http://b.scorecardresearch.com/p?c1=2&c2=6036484&cv=2.0&cj=1"/></noscript><script async="" defer="" src="https://static.clmbtech.com/ase/11637/724/aa.js" type="text/javascript"></script><script type="text/javascript">
var productionDomains = ['www.dineout.co.in', 'ola.dineout.co.in', 'cmh.dineout.co.in', 'hdfc.dineout.co.in', 'scb.dineout.co.in', 'event.dineout.co.in', 'hdfcbank.dineout.co.in'];
var isProduction = productionDomains.includes(window.location.host);
var CLEVERTAP_ACCOUNT_ID = 'TEST-58K-44K-5R5Z';
if (isProduction) {
CLEVERTAP_ACCOUNT_ID = '48K-44K-5R5Z';
}
var clevertap = {event:[], profile:[], account:[], onUserLogin:[], notifications:[], privacy:[]};
// replace with the CLEVERTAP_ACCOUNT_ID with the actual ACCOUNT ID value from your Dashboard -> Settings page
clevertap.account.push({"id": CLEVERTAP_ACCOUNT_ID});
clevertap.privacy.push({optOut: false}); //set the flag to true, if the user of the device opts out of sharing their data
clevertap.privacy.push({useIP: false}); //set the flag to true, if the user agrees to share their IP data
(function () {
var wzrk = document.createElement('script');
wzrk.type = 'text/javascript';
wzrk.async = true;
wzrk.src = ('https:' == document.location.protocol ? 'https://d2r1yp2w7bby2u.cloudfront.net' : 'http://static.clevertap.com') + '/js/a.js';
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(wzrk, s);
})();
</script><script type="text/javascript">
var EventsManager = {
_eventListeners : {},
events : {
SCROLLED_BOTTOM : "SCROLLED_BOTTOM",
PAGE_LOADED : "PAGE_LOADED",
SCROLL_EVENT_BINDED : "SCROLL_EVENT_BINDED",
LOGGED_IN : "LOGGED_IN",
USER_DATA_CAME : "USER_DATA_CAME",
AUTO_SUGGEST_CLICKED: "AUTO_SUGGEST_CLICKED",
UPDATE_FILTER_SHOW_MORE: "UPDATE_FILTER_SHOW_MORE",
FILTER_SHOW_MORE_CHECKED: "FILTER_SHOW_MORE_CHECKED",
LOAD_RESOURCE : "LOAD_RESOURCE",
DOPAY_EARNINGS : "DOPAY_EARNINGS",
DEAL_BACK_CLICKED : "DEAL_BACK_CLICKED"
},
addListener : function(eventName, callackFunction,uniqIdentifier){
try {
if(!this._eventListeners) this._eventListeners = {};
if(!this._eventListeners[eventName]) this._eventListeners[eventName] = [];
for(var i=0; i<this._eventListeners[eventName].length; i++)
if(this._eventListeners[eventName][i][1] === uniqIdentifier) {
this.removeListener(eventName, uniqIdentifier);
}
this._eventListeners[eventName].push([callackFunction, uniqIdentifier]);
}
catch(exception){
console.log("exception in adding listener");
}
},
removeListener : function(eventName, uniqIdentifier){
if(!this._eventListeners[eventName]) return;
for(var i=0; i<this._eventListeners[eventName].length; i++) {
try {
if(this._eventListeners[eventName][i][1]===uniqIdentifier) {
this._eventListeners[eventName].splice(i,1);
return;
}
}
catch(exception){
this._eventListeners[eventName].splice(i,1);
}
}
},
removeAllListenersForEvent : function(eventName) {
if(!this._eventListeners[eventName]) return;
for(var i=0; i<this._eventListeners[eventName].length; i++) {
this._eventListeners[eventName].splice(i,1);
}
},
removeAllListeners : function(){
this._eventListeners = {};
},
dispatchEvent : function(eventName, eventObject){
var listeners = this._eventListeners[eventName];
if(listeners) {
//create a local copy, before the array is modified in any of the listener methods.
listeners = listeners.slice();
for(var i=0; i<listeners.length; i++) {
try {
listeners[i][0].apply(window, [eventObject]);
}catch(e) {
//ignore handler errors for now, to make sure remaining handlers are called properly.
}
}
}
}
};
function createCookie(name, value, days) {
var expires = "";
if (days) {
var date = new Date();
date.setTime(date.getTime() + (days * 24 * 60 * 60 * 1000));
expires = "; expires=" + date.toGMTString();
}
document.cookie = name + "=" + value + expires + "; secure; path=/";
}
function readCookie(name) {
var nameEQ = name + "=";
var ca = document.cookie.split(';');
for(var i=0;i < ca.length;i++) {
var c = ca[i];
while (c.charAt(0)==' ') c = c.substring(1,c.length);
if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);
}
return null;
}
function getParameterByName(name, url) {
if (!url) url = window.location.href;
name = name.replace(/[\[\]]/g, "\\$&");
var regex = new RegExp("[?&]" + name + "(=([^&#]*)|&|#|$)"),
results = regex.exec(url);
if (!results) return null;
if (!results[2]) return '';
return decodeURIComponent(results[2].replace(/\+/g, " "));
}
var TRACK_COUNTLY = true;
var TRACK_GA = true;
var TRACK_QGRAPH = false;
var TRACK_CLEVERTAP = true;
var deviceId = '';
var sessionId = '';
var userId = '';
var isMobile = ("false" === 'true');
var isTWA = ("undefined" === 'true');
var isWebPush = false;
var countlyHitUrl = isMobile ? 'https://wp-staging.dineout.co.in/webmobile' : 'https://wp-staging.dineout.co.in/web';
var serviceWorkerPath = isMobile ? '/service-worker.js' : '/d-sw.js';
var diner_id = false;
var webPushSent = false;
if (isProduction) {
var countlyHitUrl = isMobile ? 'https://wp.dineout.co.in/webmobile' : 'https://wp.dineout.co.in/web';
}
//initializing countly with params
if(typeof Countly != 'undefined') {
Countly.init({
app_key: (isMobile ? "pwa" : "web"),
url: countlyHitUrl, //your server goes here
debug: false,
force_post: true
});
}
if (EventsManager && typeof EventsManager.addListener === 'function') {
EventsManager.addListener(EventsManager.events.USER_DATA_CAME, function(data){
if(data && data.userLoggedIn && data.userDetails){
diner_id = data.userDetails.output_params.data.d_id;
}
}, 'analytics_listener');
}
/*
deviceId;
userId;
sessionId;
area;
city;
latlng;
restaurantName;
appVersion;
lastThreeSearches;
lastThreeRestaurantViewed;
eventId;
dealId;
offerId;
facebookId;
googleId;
scrollLength;
restID;
poc;
cta;
tabName;
typeValue;
slottypeValue;
slotValue;
offerID;
posOfOffer;
posOfDeal;
posOfEvent;
category;
action;
label;
suggestedSearchType;
searchTypedValue;
eventID;
locality;
dealID;
dealDetailURL;
tagsList;
eventDetailsURL;
cuisinesList;
locationName;
restaurantImageURL;
DeepLinkURL;
avatarURL;
isDOPlusMember;
mobile;
email;
name;
medium;
signedIn;
DateValue;
labelValue;
data={
category:'',
action:''.
label:'',
countlyObj:{
sessionid:sdfsfd,
area:'south-delhi',
city:'Delhi',
userid:''
...........
}
}
agents={
ga:true/false,
countly:true/false,
qgraph:true/false,
}
*/
function isMob() {
if (navigator.userAgent.match(/Android/i) ||
navigator.userAgent.match(/webOS/i) ||
navigator.userAgent.match(/iPhone/i) ||
navigator.userAgent.match(/iPad/i) ||
navigator.userAgent.match(/iPod/i) ||
navigator.userAgent.match(/BlackBerry/i) ||
navigator.userAgent.match(/Windows Phone/i)) {
return true;
} else {
return false;
}
}
function parseCookies () {
var list = {},
rc = document.cookie;
rc && rc.split(';').forEach(function( cookie ) {
var parts = cookie.split('=');
list[parts.shift().trim()] = decodeURI(parts.join('='));
}); //jshint ignore:line
return list;
}
var clientCookies = parseCookies();
deviceId = clientCookies.countly_webapp_uid;
function sendAnalyticEvent(data, agents){
if (diner_id) {
data.diner_id = diner_id;
}
data.timestamp = Math.ceil(new Date().getTime()/1000);
if (typeof Countly != 'undefined' && typeof Countly.url == 'undefined') {
Countly.init({
app_key: (isMobile ? 'pwa' : 'web'),
url: countlyHitUrl, //your server goes here
debug: false,
force_post: true
});
}
if (TRACK_GA && agents && agents.ga && agents.ga===true) {
sendUniversalGAEvent(data);
}
if (TRACK_COUNTLY && agents && agents.countly && agents.countly===true) {
if(data.countlyObj){
data.countlyObj.category=data.category;
data.countlyObj.action=data.action;
data.countlyObj.label=data.label;
}
sendCountlyEvent(data);
}
if (TRACK_QGRAPH && agents && agents.qgraph && agents.qgraph==true) {
if (data && data.qgObject && data.qgObject.restID) {
data.qgObject.restID = "" + data.qgObject.restID;
}
sendQGraphEvent(data);
console.log('******* QGRAPH *************\n",JSON.stringify(data.qgObject),"\n*************************')
}
if (TRACK_CLEVERTAP && agents && agents.clevertap && agents.clevertap==true) {
if (data.cleverTapObj) {
sendCleverTapEvent(data.cleverTapObj, data.action);
} else {
sendCleverTapEvent(data);
}
}
}
function sendCountlyEvent(data) {
if (typeof Countly != 'undefined') {
if (deviceId && data.countlyObj && typeof data.countlyObj == 'object'){
Countly.change_id(deviceId, false);
}
try {
if (!data.action) {
throw new TypeError("**************** Empty_Action ****************", window.location.href, JSON.stringify(console.trace(data)));
} else {
Countly.add_event({
key: data.action,
"segmentation": data.countlyObj
});
}
} catch (ex) {
console.trace(data);
}
}
}
function sendCleverTapEvent(data, customEventName) {
if (data.cleverTapObj) {
clevertap.event.push(customEventName, data.cleverTapObj);
console.log("******* CLEVERTAP *************\n",customEventName, JSON.stringify(data.cleverTapObj),"\n*************************")
} else if ( customEventName && Object.keys(data).length >= 1) {
clevertap.event.push(customEventName, data);
console.log("******* CLEVERTAP *************\n",customEventName, JSON.stringify(data),"\n*************************")
} else {
clevertap.event.push(customEventName);
console.log("******* CLEVERTAP *************\n",customEventName,"\n*************************")
}
}
function sendQGraphEvent(data){
if(qg && typeof qg ==="function"){
qg('event', data.action, data.qgObject)
}
}
function sendUniversalGAEvent(data){
if(typeof ga !== 'undefined') {
var do_category = typeof data.category !== "undefined" ? data.category : '';
var do_action = typeof data.action !== "undefined" ? data.action : '';
var do_label = typeof data.label !== "undefined" ? data.label : '';
var eventValue = typeof data.eventValue !== "undefined" ? data.eventValue : '';
console.log("Category: "+ do_category + " ------Action: " + do_action + " ---Label: "+ do_label + " ---EventValue: "+ eventValue);
var gaEventObject = {
hitType: 'event',
eventCategory: do_category,
eventAction: do_action,
eventLabel: do_label
};
if (eventValue) {
gaEventObject.eventValue = eventValue;
}
ga('send', gaEventObject);
isWebPush = getParameterByName('utm_source');
var pushCampaign = getParameterByName('utm_medium');
if(isWebPush && isWebPush === 'webpush' && pushCampaign && !webPushSent){
ga( 'send', 'event', 'PushNotification', 'PushClick', pushCampaign + '_' + window.location.href);
webPushSent = true;
}
}
}
function analyticsSendGlobal(analyticsPageCategory, analyticsPageAction, analyticsPageLabel, countlyObj, typeEventObj, qgObject, cleverTapObj) {
var analyticsObj = {
'category': analyticsPageCategory || "",
'action': analyticsPageAction || "",
'label': analyticsPageLabel || "",
'countlyObj': countlyObj || {},
'qgObject': qgObject || false,
'cleverTapObj': cleverTapObj || false
};
var defaultEvents = {
'ga': true,
'countly': true,
'qgraph': false,
'clevertap': false
}
var typeOfEventObj = Object.assign(defaultEvents,typeEventObj);
sendAnalyticEvent(analyticsObj,typeOfEventObj);
}
function ajaxRequest(options){
$.ajax({
url: options.url || '',
dataType: options.dataType || "json",
data:options.data,
success: options.success || '',
complete: options.complete || '',
timeout: options.timeout || 40000,
error: function(xmlhttprequest, textstatus, message) {
console.log('Error in ajaxRequest---XXX---');
if(options.error){
options.error
}
//page('/no-internet');
if(textstatus==="timeout") {
console.log("got timeout");
} else {
console.log(textstatus);
}
}
});
}
function sendCleverTapProfileData(data){
if (data.d_phone){
var phone_number = '+91' + data.d_phone;
} else {
var phone_number = '+911111111111';
}
clevertap.profile.push({
"Site": {
"Name": data.diner_full_name , // String
"Identity": data.d_id, // String or number
"Email": data.d_email, // Email address of the user
"Phone": phone_number, // Phone (with the country code)
"Gender": data.gender || 'M', // Can be either M or F
"Photo": data.profile_image, // URL to the Image
// optional fields. controls whether the user will be sent email, push etc.
"MSG-email": true, // Enable email notifications
"MSG-push": true, // Enable push notifications
"MSG-sms": true, // Enable sms notifications
"Source": isMobile ? (isTWA ? 'TWA' : 'PWA') : 'WEBSITE' // Source
}
})
}
function sendCustomCleverTapProfileData(customData) {
clevertap.profile.push({
"Site": customData
})
}
// First Launch Clevertap Event
if (readCookie('firstUser') == 1 || !readCookie('firstUser')){
sendCleverTapEvent({
URL: window.location.href
}, "FirstLaunch");
createCookie('firstUser', 2, 1000);
} else {
createCookie('firstUser', 2, 1000);
}
sendCleverTapEvent({ URL : window.location.href }, 'PageVisit');
</script><script defer="" src="https://dn1.dineout-cdn.co.in/js/jquery-3-59b8c6ea6d.6.0.min.js" type="text/javascript"></script><script defer="" src="https://dn1.dineout-cdn.co.in/js/bootstrap-fc9c39ae44.min.v3.4.1.js" type="text/javascript"></script><script defer="" src="https://dn1.dineout-cdn.co.in/js/slick-17e331f34d.min.js" type="text/javascript"></script><script defer="" src="https://dn1.dineout-cdn.co.in/js/countly-385be3ca26.min.js" type="text/javascript"></script> <script defer="" src="https://dn1.dineout-cdn.co.in/js/clientlog-c679fe24e6.js" type="text/javascript"></script><script defer="" src="https://dn1.dineout-cdn.co.in/wstatic/restarant_listing-fc839310.js"></script>
<script>(function() { var run = function() { $_mod.ready(); }; if (document.readyState === "loading") { document.addEventListener("DOMContentLoaded", run); } else { run(); } })();</script><div class="hide" data-user="false"></div><script type="text/javascript">
/* window variable for remarketing*/
window.google_tag_params = {
dynx_itemid: [48670,1350,60213,50533],
dynx_pagetype: 'searchresults',
dynx_totalvalue: 8800
};
/*end window variable for remarketing*/
</script><script type="application/ld+json">
{
"@context": "http://schema.org/",
"@type": "ItemList",
"itemListElement": [
{"@type":"ListItem","position":1,"url":"https://www.dineout.co.in/bangalore/the-bier-library-brewery-kitchen-koramangala-south-bangalore-48670"},{"@type":"ListItem","position":2,"url":"https://www.dineout.co.in/bangalore/hard-rock-cafe-st-marks-road-central-bangalore-1350"},{"@type":"ListItem","position":3,"url":"https://www.dineout.co.in/bangalore/uru-brewpark-jp-nagar-south-bangalore-60213"},{"@type":"ListItem","position":4,"url":"https://www.dineout.co.in/bangalore/biergarten-koramangala-south-bangalore-50533"},{"@type":"ListItem","position":5,"url":"https://www.dineout.co.in/bangalore/the-bangalore-cafe-shanti-nagar-central-bangalore-48391"},{"@type":"ListItem","position":6,"url":"https://www.dineout.co.in/bangalore/toscano-vittal-mallya-road-central-bangalore-5068"},{"@type":"ListItem","position":7,"url":"https://www.dineout.co.in/bangalore/daddy-indiranagar-east-bangalore-57949"},{"@type":"ListItem","position":8,"url":"https://www.dineout.co.in/bangalore/cafe-azzure-mg-road-central-bangalore-29533"},{"@type":"ListItem","position":9,"url":"https://www.dineout.co.in/bangalore/sanchez-vittal-mallya-road-central-bangalore-1258"},{"@type":"ListItem","position":10,"url":"https://www.dineout.co.in/bangalore/cafe-noir-vittal-mallya-road-central-bangalore-4471"},{"@type":"ListItem","position":11,"url":"https://www.dineout.co.in/bangalore/21st-amendment-gastrobar-indiranagar-east-bangalore-64100"}
]
}
</script><script type="text/javascript">
function insertAfter(referenceNode, newNode) {
if(!referenceNode) {
referenceNode = document.getElementsByTagName('head')[0].querySelectorAll('link')[1];
}
referenceNode.parentNode.insertBefore(newNode, referenceNode.nextSibling);
}
onPageLoad(function(){
var loginCss = document.createElement("LINK");
loginCss.setAttribute("rel", "stylesheet");
loginCss.setAttribute("href", "https://dn1.dineout-cdn.co.in/css/login-popup-e8a3d78d99.css");
insertAfter(document.getElementsByTagName('title')[0], loginCss);
});
</script><script type="text/javascript">
var no_function =function(){};
var ajaxCall = '/xhrajaxrequest';
var after_login_success_rediect='';
var redirect_login=function(){
if(after_login_success_rediect!=''){
window.location.href=after_login_success_rediect;
}
};
var eventData = {};
var success_login_callback={
succesCallBack:no_function
};
function onSignIn(googleUser) {
var id_token = googleUser.getAuthResponse().id_token;
if (id_token) {
googleUser.disconnect();
$.ajax({
type: 'POST',
dataType: 'json',
url: '/auth/google/callback',
data: {
'id_token': id_token,
'route': window.location.pathname
},
success: function(res) {
if (res.status) {
if (EventsManager && typeof EventsManager != 'undefined' && EventsManager.hasOwnProperty('dispatchEvent') && typeof EventsManager.dispatchEvent === 'function') {
EventsManager.dispatchEvent(EventsManager.events.LOGGED_IN, res);
}
if (sendCleverTapProfileData && typeof sendCleverTapProfileData == 'function') {
sendCleverTapProfileData(res.output_params.data);
}
closeLoginPopUp();
} else {
$("#login_errormsg").html(res.error_msg);
}
},
error: function() {
console.log("Failure in Google SignIn");
},
complete: function() {
googleUser.disconnect();
}
});
} else {
console.log('There was an error, token not received');
}
}
function open_login(success_callback, eData){
$('#login-drawer').show();
$('#login-drawer').addClass('in');
$('body').addClass('overflow-h');
$('.menuBox').removeClass('go-show');
$('.loginBox.current-wrap').removeClass('current-wrap').addClass('next-wrap');
$('#validateBox').addClass('current-wrap').removeClass('next-wrap').removeClass('prev-wrap');
if(success_callback){
success_login_callback.succesCallBack=success_callback;
}
if(eData && typeof eData == 'object'){
eventData = eData;
}
}
function open_login_redirect(success_redirect, eData){
$('#login-drawer').show();
$('#login-drawer').addClass('in');
$('body').addClass('overflow-h');
$('.menuBox').removeClass('go-show');
$('.loginBox.current-wrap').removeClass('current-wrap').addClass('next-wrap');
$('#validateBox').addClass('current-wrap').removeClass('next-wrap').removeClass('prev-wrap');
if(success_redirect){
after_login_success_rediect=success_redirect;
success_login_callback.succesCallBack=redirect_login;
}else{
after_login_success_rediect=window.location.href;
success_login_callback.succesCallBack=redirect_login;
}
if(eData && typeof eData == 'object'){
eventData = eData;
}
}
function login(divid,passId,errorId){
var inputype=document.getElementById("input").value;
var password=document.getElementById(passId).value;
if(password.trim()=='')
{
loader_ajax_hide();
var elemId="#"+errorId;
$(elemId).html("Password can not be blank!!");
} else{
$.ajax({
type: 'POST',
dataType:'json',
url: (ajaxCall + "/new-login"),
data: { "username": inputype,"password":password},
success: (function (res) {
loader_ajax_hide();
if(res.status==false){
var error=res.error_msg;
var elemId="#"+errorId;
$(elemId).html(error);
document.getElementById(passId).className = "invalid form-control";
}else{
var loginRefresh = $("#loginRefresh").val();
if(typeof loginRefresh != 'undefined' && loginRefresh && loginRefresh == 1) {
window.location.reload();
}
if('ontouchstart' in window) {
var restdata=res;
if (EventsManager && typeof EventsManager != 'undefined' && EventsManager.hasOwnProperty('dispatchEvent') && typeof EventsManager.dispatchEvent === 'function'){
if(eventData && !eventData.hasOwnProperty("userDetails")){
eventData.userDetails = res;
EventsManager.dispatchEvent(EventsManager.events.LOGGED_IN, eventData);
}
}
$('#'+divid).find('.clse').click();
success_login_callback.succesCallBack();
} else {
if (EventsManager && typeof EventsManager != 'undefined' && EventsManager.hasOwnProperty('dispatchEvent') && typeof EventsManager.dispatchEvent === 'function'){
if(eventData && !eventData.hasOwnProperty("userDetails")){
eventData.userDetails = res;
EventsManager.dispatchEvent(EventsManager.events.LOGGED_IN, eventData);
}
}
$('#login-drawer').removeClass('in');
$('body').removeClass('overflow-h');
$('.menuBox').addClass('go-show');
success_login_callback.succesCallBack();
}
}
})
});
}
}
function resset_password(){
var password=document.getElementById('resset_password').value;
var confirm_password=document.getElementById('resset_comfirm_password').value;
var otp_id=document.getElementById('resset_otp_id').value;
var otp=document.getElementById('resset_otp').value;
$.ajax({
type: 'POST',
dataType:'json',
url: ajaxCall+'/reset_password',
data: { "new_password": password,"confirm_password":confirm_password,"otp_id": otp_id,"otp":otp},
success: (function (res) {
loader_ajax_hide();
if(res.status==false){
var error=res.error_msg;
$("#resset_error").html(error);
}else{
var msg=res.output_params.data.msg;
showWrap($('#validateBox'));
hideWrap($('#ressetBox'));
$("#resset_Text").html(msg);
}
})
});
}
function signup(){
var name=document.getElementById('sign_name').value;
var email=document.getElementById('sign_email').value;
var phone=document.getElementById('sign_phone').value;
$.ajax({
type: 'POST',
dataType:'json',
url: ajaxCall+'/user_signup',
data: { "name": name,"email":email,"phone": phone},
success: (function (res) {
loader_ajax_hide();
if(res.status==false){
var error=res.error_msg;
$("#sign_errormsg").html(error);
}else{
var msg=res.output_params.data.msg;
var phone=res.output_params.data.phone;
var type=res.output_params.data.type;
var email=res.output_params.data.email;
var sign_otp_id=res.output_params.data.otp_id
var success_msg=res.output_params.success_msg;
if(type=='login' && phone=='' && email!=''){
hideWrap($('#signupBox'));
showWrap($('#validateBox'));
document.getElementById('input').value=email;
$("#resset_Text").html(success_msg);
}else if(type=='login' && phone!='' && email==''){
hideWrap($('#signupBox'));
showWrap($('#validateBox'));
document.getElementById('input').value=phone;
$("#resset_Text").html(success_msg);
}else{
showWrap($('#otp_verify'));
hideWrap($('#signupBox'));
countdown_signup(0,30);
$("#Phone_sign_Text").html(phone);
$("#otp_sign_msg").html(msg);
document.getElementById("sign_otp_id").value = sign_otp_id;
document.getElementById("globalInput").value = phone;
}
}
})
});
}
function validate_login(timerFunction){
var input=document.getElementById("input").value;
document.getElementById("globalInput").value = input;
$("#login_errormsg").html('');
$.ajax({
type: 'POST',
dataType:'json',
url: ajaxCall+'/validate_account',
data: { "input": input },
success: (function (res) {
loader_ajax_hide();
if(res.status==false){
var error=res.error_msg;
$("#login_errormsg").html(error);
}else{
var type=res.output_params.data.type;
var phone=res.output_params.data.phone;
var email=res.output_params.data.email;
var resendOTP_Time = res.output_params.data.resend_otp_time;
if(type=='login' && phone=='' && email!=''){
hideWrap($('#validateBox'));
//showWrap($('#login_email_screen'));
showWrap($('#login_via_otp_screen'));
document.getElementById("otp_id").value = res.output_params.data.otp_id;
document.getElementById("otplabel").innerText = "Enter the OTP sent to your Email Id";
$("#otperrormsg").html(res.output_params.data.msg);
//$("#emailText").html(email);
}
if(type=='login' && email=='' && phone!=''){
hideWrap($('#validateBox'));
showWrap($('#login_via_otp_screen'));
document.getElementById("otp_id").value = res.output_params.data.otp_id;
$("#otperrormsg").html(res.output_params.data.msg);
}
if(type=='create_account'){
hideWrap($('#validateBox'));
showWrap($('#signupBox'));
$('#sign_email').prop("readonly", false);
$('#sign_email').prop("readonly", false);
if(email!=''){
document.getElementById("sign_email").value=email;
$('#sign_email').prop("readonly", true);
}
if(phone!=''){
document.getElementById("sign_phone").value=phone;
$('#sign_phone').prop("readonly", true);
}
}
if (resendOTP_Time ) {
timerFunction(0, resendOTP_Time);
}
}
})
});
}
function hideWrap(obj){
$(obj).removeClass('current-wrap').removeClass('next-wrap').addClass('prev-wrap');
}
function showWrap(obj){
$(obj).removeClass('prev-wrap').removeClass('next-wrap').addClass('current-wrap');
}
function addValueInText(obj, type, showTimer, timerFunction){
var inputData=document.getElementById('globalInput').value;
$(obj).html(inputData);
document.getElementById("otp_l").value='';
$.ajax({
type: 'POST',
dataType:'json',
url: ajaxCall+'/send_otp_to_diner',
data: {'input': inputData,'type':type},
success: (function (res) {
loader_ajax_hide();
if(res.status==true){
if(type=='login'){
document.getElementById("otp_id").value = res.output_params.data.otp_id;
$("#otperrormsg").html(res.output_params.data.msg);
}
if(type=='signup'){
document.getElementById("sign_otp_id").value = res.output_params.data.otp_id;
$("#otp_sign_msg").html(res.output_params.data.msg);
}
if(type=='reset_password'){
hideWrap($('#login_email_screen'));
hideWrap($('#login_phone_screen'));
showWrap($('#ressetBox'));
document.getElementById("resset_otp_id").value =res.output_params.data.otp_id;
$("#otp_sign_msg").html(res.output_params.data.msg);
}
if (showTimer && typeof timerFunction == 'function'){
timerFunction(0, 30);
}
} else {
var error = (res.error_msg === undefined) ? 'Some Error in Sending OTP' : res.error_msg;
if(type=='login'){
$("#otperrormsg").html(error);
}
}
})
});
}
function otp_verify(obj){
$("#otp_sign_msg").removeClass("error_msg");
if(obj=='login_via_otp_screen'){
var otp=document.getElementById("otp_l").value;
var otp_id=document.getElementById("otp_id").value;
}
if(obj=='otp_verify'){
var otp=document.getElementById("verification_code").value;
var otp_id=document.getElementById("sign_otp_id").value;
}
if (otp.trim()==''){
if (obj=='login_via_otp_screen'){
loader_ajax_hide();
$("#otperrormsg").html("OTP can not be blank!!");
}
if (obj=='otp_verify'){
loader_ajax_hide();
$("#otp_sign_msg").html("OTP can not be blank!!");
$("#otp_sign_msg").addClass("error_msg");
}
} else if (!otp_id){
loader_ajax_hide();
} else {
$.ajax({
type: 'POST',
dataType:'json',
url: ajaxCall+'/otp-login',
data: {'otp_id':otp_id,'otp':otp},
headers: {
'csrf-token': window.cPageToken
},
success: (function (res) {
var resdata=res;
loader_ajax_hide();
if(res.status==false){
var error=res.error_msg;
if(obj=='otp_verify'){
$("#otp_sign_msg").html(error);
$("#otp_sign_msg").addClass("error_msg");
}
if(obj=='login_via_otp_screen'){
$("#otperrormsg").html(error);
}
}else{
var loginRefresh = $("#loginRefresh").val();
if (sendCleverTapProfileData && typeof sendCleverTapProfileData === 'function') {
var dinerData = res.output_params.data;
sendCleverTapProfileData(dinerData);
sendCleverTapEvent && sendCleverTapEvent({
'phone_number': dinerData.d_phone,
'email': dinerData.d_email,
'Identity': dinerData.d_id
}, 'SignUp');
}
if(typeof loginRefresh != 'undefined' && loginRefresh && loginRefresh == 1) {
window.location.reload();
}
if(EventsManager && typeof EventsManager != 'undefined' && EventsManager.hasOwnProperty('dispatchEvent') && typeof EventsManager.dispatchEvent === 'function'){
if (eventData && !eventData.hasOwnProperty("userDetails")){
eventData.userDetails = resdata;
EventsManager.dispatchEvent(EventsManager.events.LOGGED_IN, eventData);
}
}
$('#login_via_otp_screen').find('.clse').click();
success_login_callback.succesCallBack();
}
})
});
}
}
function countdown(minutes, seconds) {
var time = minutes*60 + seconds;
var interval = setInterval(function() {
var el = $('span.js-countdown-span');
if($('#countdown_data').hasClass('hide')){
$('#countdown_data').removeClass('hide');
$('#resend-otp').addClass('hide');
}
if(time == 0) {
clearInterval(interval);
$('#countdown_data').addClass('hide');
$('#resend-otp').removeClass('hide');
return;
}
var minutes = Math.floor( time / 60 );
if (minutes < 10) minutes = "0" + minutes;
var seconds = time % 60;
if (seconds < 10) seconds = "0" + seconds;
var text = minutes + ':' + seconds;
el.html(text);
time--;
}, 1000);
}
function loader_ajax(id){
$('#login-drawer .loading').removeClass('hide');
}
function loader_ajax_hide(){
$('#login-drawer .loading').addClass('hide');
}
function countdown_signup(minutes, seconds) {
var time = minutes*60 + seconds;
var interval = setInterval(function() {
var el = $('span.js-countdownsignup-span');
if($('#countdown_signupdata').hasClass('hide')){
$('#countdown_signupdata').removeClass('hide');
$('#verify-otp').addClass('hide');
}
if(time == 0) {
clearInterval(interval);
$('#countdown_signupdata').addClass('hide');
$('#verify-otp').removeClass('hide');
return;
}
var minutes = Math.floor( time / 60 );
if (minutes < 10) minutes = "0" + minutes;
var seconds = time % 60;
if (seconds < 10) seconds = "0" + seconds;
var text = minutes + ':' + seconds;
el.html(text);
time--;
}, 1000);
}
document.addEventListener('keyup', function(event) {
var targetElem = event.target;
var code = (event.keyCode ? event.keyCode : event.which);
if (code == 13) {
if (document.contains(targetElem.closest('#input'))) {
$('#userNameBtn').click();
return true;
}
if (document.contains(targetElem.closest('#phonepassword'))) {
$('#loginBtn').click();
return true;
}
if (document.contains(targetElem.closest('#emailpassword'))) {
$('#emailPasswordBtn').click();
return true;
}
}
});
function closeLoginPopUp() {
var errorElemLists = document.querySelectorAll('.error-msg');
$('#login-drawer').removeClass('in');
$('body').removeClass('overflow-h');
errorElemLists.forEach(function(elem, index) {
elem.innerHTML = '';
});
}
</script><input id="globalInput" name="input" type="hidden" value=""/><div class="login-wrapper form-elements-wrap" id="login-drawer" style="display:none;"><div class=""><div class="loginBox current-wrap" id="validateBox"><div class="close-sign clse" onclick="closeLoginPopUp()"></div><h3 class="head-title marginB0">Log In / Sign Up</h3><div class="input-field input-wrapper label-wrapper marginB10 marginT20"><input autocomplete="off" class="form-field validate" data-error="wrong" id="input" name="username" required="" type="text" value=""/><label class="" for="username">Enter your Mobile no / Email id</label><span class="bar"></span><span class="highlight"></span><div class="error-msg" id="login_errormsg"></div></div><div class="fs12 txt-green" id="resset_Text"></div><button class="btn btn-default btn-block btn-small waves-effect waves-light marginB0" id="userNameBtn" onclick="loader_ajax('validateBox');validate_login(countdown); sendGAEvent('New_Login_Flow', 'Continue','Login_Screen1');">Continue</button><div class="or"><span>Or login via</span><div class="clear"></div><a class="pull-left fb btn btn-default btn-block waves-effect waves-light" href="/auth/facebook" onclick="sendGAEvent('New_Login_Flow', 'FacebookLogin','Login_Screen1');"><i class="do do-facebook"></i> Facebook</a><script async="" defer="" src="https://apis.google.com/js/platform.js"></script><meta content="953585151264-gum99n1btc31gl72h68ijup5hfjonjl1.apps.googleusercontent.com" name="google-signin-client_id"/><div class="g-signin2 gp-btn pull-right" data-onsuccess="onSignIn"></div></div></div><div class="loginBox next-wrap" id="login_phone_screen"><div class="close-sign clse" onclick="closeLoginPopUp()"></div><h3 class="head-title marginB0"><strong><span>Log In</span></strong></h3><div class="input-field input-wrapper label-wrapper marginB5 marginT20"><input autocomplete="off" class="validate form-control" data-error="wrong" id="phonepassword" name="password" required="" type="password"/><label class="" for="password">Enter your Password</label><span class="bar"></span><span class="highlight"></span></div><div class="error-msg" id="errorphonemsg"></div><div class="text-right marginB10"><a class="txt-grey fs12 cursor" onclick="loader_ajax('login_email_screen'); addValueInText('blank','reset_password', false, null ); sendGAEvent('New_Login_Flow', 'Reset_Password','Enter_Password_Mobile');">Reset Password</a></div><button class="btn btn-default btn-block all waves-effect waves-light marginB0" id="loginBtn" onclick="loader_ajax('login_phone_screen');login('login_phone_screen','phonepassword','errorphonemsg');sendGAEvent('New_Login_Flow', 'Log_In','Enter_Password_Mobile');">Login</button><div class="or"><h3 class="head-title marginB0">Or</h3></div><button class="btn btn-default btn-block all btn-o waves-effect waves-light marginB0 marginT10" onclick="loader_ajax('login_phone_screen'); addValueInText('#PhoneText','login', true, countdown); showWrap($('#login_via_otp_screen')); hideWrap($('#login_phone_screen'));">Login via OTP</button></div><div class="loginBox next-wrap" id="login_via_otp_screen"><input id="otp_id" name="otp_id" type="hidden" value=""/><div class="close-sign clse" onclick="closeLoginPopUp()"></div><h3 class="head-title"><strong><span>Log In </span></strong></h3><p class="marginT20"><strong><span id="PhoneText"></span></strong></p><div class="input-field input-wrapper label-wrapper marginB5"><input autocomplete="off" class="validate form-control" data-error="wrong" id="otp_l" name="otp" required="" type="text"/><label class="" for="otp" id="otplabel">Enter the OTP sent to your mobile no</label><span class="bar"></span><span class="highlight"></span></div><div class="fs12 txt-green" id="otperrormsg"></div><div class="text-right marginB10"><span class="txt-link js-countdown-span" id="countdown_data"></span><a class="txt-grey fs12 hide cursor" id="resend-otp" onclick="loader_ajax('login_via_otp_screen'); addValueInText('#PhoneText','login', true, countdown); sendGAEvent('New_Login_Flow', 'Resend_OTP','Login_via_OTP');">Resend OTP</a></div><button class="btn btn-default marginB10 btn-n-o btn-small waves-effect waves-light" onclick="loader_ajax('login_via_otp_screen');otp_verify('login_via_otp_screen')">Login</button></div><div class="loginBox next-wrap" id="login_email_screen"><div class="close-sign clse" onclick="closeLoginPopUp()"></div><h3 class="head-title"><strong><span>Log In</span></strong></h3><p class="marginT20"><strong><span id="emailText"></span></strong></p><div class="input-field input-wrapper label-wrapper marginB5"><input autocomplete="off" class="validate form-control" data-error="wrong" id="emailpassword" name="email-password" required="" type="password"/><label class="" for="email-password">Enter the password</label><span class="bar"></span><span class="highlight"></span></div><div class="error-msg" id="errormsg"></div><div class="text-right marginB10"><a class="txt-grey cursor fs12" onclick="loader_ajax('login_email_screen');addValueInText('blank','reset_password', false, null);">Reset Password</a></div><button class="btn btn-default btn-block btn-small waves-effect waves-light" id="emailPasswordBtn" onclick="loader_ajax('login_email_screen');login('login_email_screen','emailpassword','errormsg');">Login</button></div><div class="loginBox next-wrap" id="signupBox"><div class="close-sign clse" onclick="closeLoginPopUp()"></div><h3 class="head-title"><strong><span>Sign Up</span></strong></h3><div class="input-field input-wrapper label-wrapper marginB20 marginT20"><input autocomplete="off" class="validate form-control" data-error="wrong" id="sign_name" name="name" required="" type="text" value=""/><label class="" for="name">Enter your full name</label><span class="bar"></span><span class="highlight"></span></div><div class="input-field input-wrapper label-wrapper marginB5"><input autocomplete="off" class="validate form-control" data-error="wrong" id="sign_phone" maxlength="10" name="phone" required="" type="text" value=""/><label class="" for="phone">Enter your phone number</label></div><p class="fs12 txt-grey marginB20">Your mobile number will be verified in next step</p><div class="input-field input-wrapper label-wrapper marginB20"><input autocomplete="off" class="validate form-control" data-error="wrong" id="sign_email" name="email" required="" type="text" value=""/><label class="" for="email">Enter your email ID (Optional)</label><span class="bar"></span><span class="highlight"></span></div><div class="error-msg" id="sign_errormsg"></div><button class="btn btn-default btn-block btn-small waves-effect waves-light marginT0" onclick="loader_ajax('signupBox');signup();sendGAEvent('New_Login_Flow', 'Sign_Up','Create_Account');">Sign Up</button></div><div class="loginBox next-wrap" id="ressetBox"><div class="close-sign clse" onclick="closeLoginPopUp()"></div><input id="resset_otp_id" name="resset_otp_id" type="hidden" value=""/><div class="error-msg" id="resset_errormsg"></div><div class="input-field input-wrapper label-wrapper marginB5"><input autocomplete="off" class="validate form-control" data-error="wrong" id="resset_otp" name="otp" required="" type="text"/><label class="" for="otp">Enter your OTP</label><span class="bar"></span><span class="highlight"></span></div><span class="fs12 txt-green" id="resset_error"> </span><button class="btn btn-default btn-block btn-small waves-effect waves-light marginT0" onclick="loader_ajax('ressetBox');resset_password();sendGAEvent('New_Login_Flow', 'Reset_Password','Reset_Password');">Continue</button></div><div class="loginBox next-wrap" id="otp_verify"><input id="sign_otp_id" name="sign_otp_id" type="hidden" value=""/><div class="close-sign clse" onclick="closeLoginPopUp()"></div><h3 class="head-title"><strong><span>Verify mobile number</span></strong></h3><p class="marginT20"><strong><span id="Phone_sign_Text"></span></strong></p><div class="input-field input-wrapper label-wrapper marginB5"><input autocomplete="off" class="validate form-control" data-error="wrong" id="verification_code" maxlength="7" name="verification-code" onkeypress="return event.charCode >= 48 && event.charCode <= 57" required="" type="text"/><label class="" for="verification_code">Enter the OTP sent to your mobile no</label><span class="bar"></span><span class="highlight"></span></div><div class="fs12 txt-green" id="otp_sign_msg"></div><div class="text-right marginB10"><span class="txt-link js-countdownsignup-span" id="countdown_signupdata"></span><a class="txt-grey cursor fs12 hide" id="verify-otp" onclick="loader_ajax('otp_verify'); addValueInText('#Phone_sign_Text','signup', true, countdown_signup); sendGAEvent('New_Login_Flow', 'Resend','Create_Account');">Resend OTP</a></div><button class="btn btn-default btn-block btn-small waves-effect waves-light" onclick="loader_ajax('otp_verify');otp_verify('otp_verify');sendGAEvent('New_Login_Flow', 'Verify','Create_Account');">Continue</button></div><div class="loginBox next-wrap"><div class="close-sign clse"></div><h3 class="head-title"><strong><span>Verify email address</span></strong></h3><p class="marginT20">Email <strong>abc.xyz@dineout.co.in</strong></p><div class="input-field input-wrapper label-wrapper marginB5"><input autocomplete="off" class="validate form-control" data-error="wrong" maxlength="7" name="email-password" onkeypress="return event.charCode >= 48 && event.charCode <= 57" required="" type="text"/><label class="" for="email-password">Enter the verification code sent to your email ID</label><span class="bar"></span><span class="highlight"></span></div><div class="text-right marginB10"><a class="txt-grey fs12" href="javascript:void(0)">Resend code in <span class="txt-link">10(s)</span></a></div><button class="btn btn-default btn-block btn-small waves-effect waves-light">Continue</button><p class="text-center fs12 txt-grey">One Time Verification code has been sent to your email, Please enter it here to verify your email.</p></div></div><div class="loading hide"><img src="https://im1.dineout.co.in/images/uploads/misc/2020/Feb/14/preloader.gif"/></div><input id="loginRefresh" name="loginRefresh" type="hidden"/></div><img class="hide" src="https://sp.analytics.yahoo.com/spp.pl?a=10000&.yp=10033486"/><script type="text/javascript">
/* <![CDATA[ */
var google_conversion_id = 964022250;
var google_custom_params = window.google_tag_params;
var google_remarketing_only = true;
/* ]]> */
</script><script src="//www.googleadservices.com/pagead/conversion.js" type="text/javascript"></script><noscript><div style="display:inline;"><img alt="" height="0" src="//googleads.g.doubleclick.net/pagead/viewthroughconversion/964022250/?guid=ON&amp;script=0" style="border-style:none;" width="0"/></div></noscript><style>
iframe[name='google_conversion_frame'] {
height: 0 !important;
width: 0 !important;
line-height: 0 !important;
font-size: 0 !important;
margin-top: -13px;
float: left;
display:none;
}
</style> </body></html>
Restaurant_Name=[]
for i in soup.find_all('a',class_="restnt-name ellipsis"):
Restaurant_Name.append(i.text)
Restaurant_Name
['The Bier Library Brewery & Kitchen', 'Hard Rock Cafe', 'Uru Brewpark', 'Biergarten', 'The Bangalore Cafe', 'Toscano', 'Daddy', 'Cafe Azzure', 'Sanchez', 'Cafe Noir', '21st Amendment Gastrobar', 'The Biere Club', 'Raahi', 'Spice Terrace', 'Stories Brewery and Kitchen', 'Farzi Cafe', 'SodaBottleOpenerWala', 'Shiro', 'Sriracha', 'Hammered', 'Coastal Machali Co']
Cuisine=[]
for i in soup.find_all('span',class_="double-line-ellipsis"):
Cuisine.append(i.text.split("|")[1])
Cuisine
[' Continental, Finger Food, North Indian', ' Continental, American, Finger Food', ' North Indian, Italian, Continental, Asian', ' Continental, European', ' Continental, North Indian, Fast Food', ' Italian', ' Asian, North Indian, European, Italian', ' Continental, Italian, Desserts, Bengali', ' Mexican', ' Continental, French, European, Health Food, Beverages', ' North Indian, Continental, Chinese, Fast Food', ' Finger Food', ' Fusion', ' North Indian, Mughlai', ' Continental, Italian, Chinese, North Indian', ' Modern Indian', ' Parsi, Iranian', ' Japanese, Asian', ' Asian', ' Finger Food, Italian, North Indian', ' Chinese, North Indian, South Indian, Mangalorean, Asian, Seafood']
Location=[]
for i in soup.find_all('div',class_="restnt-loc ellipsis"):
Location.append(i.text)
Location
['Koramangala, South Bangalore', 'St. Marks Road, Central Bangalore', 'JP Nagar, South Bangalore', 'Koramangala, South Bangalore', 'Shanti Nagar, Central Bangalore', 'UB City,Vittal Mallya Road, Central Bangalore', 'Indiranagar, East Bangalore', 'MG Road, Central Bangalore', 'UB City,Vittal Mallya Road, Central Bangalore', 'UB City,Vittal Mallya Road, Central Bangalore', 'Indiranagar, East Bangalore', 'Vittal Mallya Road, Central Bangalore', 'St. Marks Road, Central Bangalore', 'JW Marriott Hotel,Vittal Mallya Road, Central Bangalore', 'BTM Layout, South Bangalore', 'UB City,Vittal Mallya Road, Central Bangalore', 'Lavelle Road, Central Bangalore', 'UB City,Vittal Mallya Road, Central Bangalore', 'UB City,Vittal Mallya Road, Central Bangalore', 'Cunningham Road, Central Bangalore', 'Cears Plaza,Residency Road, Central Bangalore']
Ratings=[]
for i in soup.find_all('div',class_="restnt-rating rating-4"):
Ratings.append(i.text)
Ratings
['4.4', '4.4', '4.3', '4.4', '4.3', '4.2', '4.3', '4.3', '4.4', '4.1', '4.3', '4', '4.2', '4.3', '4.3', '4.3', '4.3', '4.4', '4.3', '4.4']
img_url=[]
for i in soup.find_all('img',class_="no-img"):
img_url.append(i.get("data-src"))
img_url
['https://im1.dineout.co.in/images/uploads/restaurant/sharpen/4/r/y/p48670-15414807385be1212212d20.jpg?tr=tr:n-medium', 'https://im1.dineout.co.in/images/uploads/restaurant/sharpen/3/h/z/p3728-15819343935e4a6739ada8d.jpg?tr=tr:n-medium', 'https://im1.dineout.co.in/images/uploads/restaurant/sharpen/6/k/n/p60213-162643925660f17e58443c5.jpg?tr=tr:n-medium', 'https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/k/q/p50533-15783109835e131d4774e89.jpg?tr=tr:n-medium', 'https://im1.dineout.co.in/images/uploads/restaurant/sharpen/4/u/u/p48391-15501219495c64fbdd483e4.jpg?tr=tr:n-medium', 'https://im1.dineout.co.in/images/uploads/restaurant/sharpen/8/g/h/p860-16107933836002c1a7713ed.jpg?tr=tr:n-medium', 'https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/u/f/p57949-15604908195d033343f04f5.jpg?tr=tr:n-medium', 'https://im1.dineout.co.in/images/uploads/restaurant/sharpen/2/g/h/p29533-14807615365842a0c04da29.jpg?tr=tr:n-medium', 'https://im1.dineout.co.in/images/uploads/restaurant/sharpen/1/y/t/p1258-15517088875c7d32d7331ff.jpg?tr=tr:n-medium', 'https://im1.dineout.co.in/images/uploads/restaurant/sharpen/4/b/e/p4471-16353141816178ea05c332c.jpg?tr=tr:n-medium', 'https://im1.dineout.co.in/images/uploads/restaurant/sharpen/6/s/t/p64100-15789184475e1c622faf327.jpg?tr=tr:n-medium', 'https://im1.dineout.co.in/images/uploads/restaurant/sharpen/1/i/k/p1168-15992017925f51e2003d1f0.jpg?tr=tr:n-medium', 'https://im1.dineout.co.in/images/uploads/restaurant/sharpen/7/q/k/p71751-15743140755dd6205b7b8fa.jpg?tr=tr:n-medium', 'https://im1.dineout.co.in/images/uploads/restaurant/sharpen/1/m/n/p13467-15646445765d4294e08b5cc.jpg?tr=tr:n-medium', 'https://im1.dineout.co.in/images/uploads/restaurant/sharpen/5/m/v/p50979-15681917225d78b4eade641.jpg?tr=tr:n-medium', 'https://im1.dineout.co.in/images/uploads/restaurant/sharpen/2/b/h/p24670-164386528961fb64c942ac7.jpg?tr=tr:n-medium', 'https://im1.dineout.co.in/images/uploads/restaurant/sharpen/3/q/j/p3737-1481539616584e80200c0e1.jpg?tr=tr:n-medium', 'https://im1.dineout.co.in/images/uploads/restaurant/sharpen/1/z/p/p1352-162632608060efc440c2303.jpg?tr=tr:n-medium', 'https://im1.dineout.co.in/images/uploads/restaurant/sharpen/3/h/g/p35741-15517711065c7e25e2634b0.jpg?tr=tr:n-medium', 'https://im1.dineout.co.in/images/uploads/restaurant/sharpen/2/i/a/p23017-16019826555f7c50bfe3d65.jpg?tr=tr:n-medium', 'https://im1.dineout.co.in/images/uploads/restaurant/sharpen/8/d/x/p89066-1615294946604771e25bf3d.jpg?tr=tr:n-medium']
10) Write a python program to scrape the details of top publications from Google Scholar from https://scholar.google.com/citations?view_op=top_venues&hl=en i) Rank ii) Publication iii) h5-index iv) h5-median
url=requests.get("https://scholar.google.com/citations?view_op=top_venues&hl=en")
url
<Response [200]>
soup=BeautifulSoup(url.text,'html.parser')
soup
<!DOCTYPE html>
<html><head><title>English - Google Scholar Metrics</title><meta content="text/html;charset=utf-8" http-equiv="Content-Type"/><meta content="IE=Edge" http-equiv="X-UA-Compatible"/><meta content="always" name="referrer"/><meta content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=2" name="viewport"/><meta content="telephone=no" name="format-detection"/><link href="/favicon.ico" rel="shortcut icon"/><style>html,body,form,table,div,h1,h2,h3,h4,h5,h6,img,ol,ul,li,button{margin:0;padding:0;border:0;}table{border-collapse:collapse;border-width:0;empty-cells:show;}html,body{height:100%}#gs_top{position:relative;box-sizing:border-box;min-height:100%;min-width:964px;-webkit-tap-highlight-color:rgba(0,0,0,0);}#gs_top>*:not(#x){-webkit-tap-highlight-color:rgba(204,204,204,.5);}.gs_el_ph #gs_top,.gs_el_ta #gs_top{min-width:320px;}#gs_top.gs_nscl{position:fixed;width:100%;}body,td,input,button{font-size:13px;font-family:Arial,sans-serif;line-height:1.24;}body{background:#fff;color:#222;-webkit-text-size-adjust:100%;-moz-text-size-adjust:none;}body{background-color:#f9f9f9;}.gs_gray{color:#777777}.gs_red{color:#dd4b39}.gs_grn{color:#006621}.gs_lil{font-size:11px}.gs_med{font-size:16px}.gs_hlt{font-weight:bold;}a:link{color:#1a0dab;text-decoration:none}a:visited{color:#660099;text-decoration:none}a:hover,a:hover .gs_lbl{text-decoration:underline}a:active,a:active .gs_lbl,a .gs_lbl:active{color:#d14836}.gs_el_tc a:hover,.gs_el_tc a:hover .gs_lbl{text-decoration:none}.gs_pfcs a:focus,.gs_pfcs button:focus,.gs_pfcs input:focus,.gs_pfcs label:focus{outline:none}.gs_a,.gs_a a:link,.gs_a a:visited{color:#006621}.gs_a a:active{color:#d14836}a.gs_fl:link,.gs_fl a:link{color:#1a0dab}a.gs_fl:visited,.gs_fl a:visited{color:#660099}a.gs_fl:active,.gs_fl a:active{color:#d14836}.gs_fl{color:#777777}.gs_ctc,.gs_ctu{vertical-align:middle;font-size:11px;font-weight:bold}.gs_ctc{color:#1a0dab}.gs_ctg,.gs_ctg2{font-size:13px;font-weight:bold}.gs_ctg{color:#1a0dab}a.gs_pda,.gs_pda a{padding:7px 0 5px 0}.gs_alrt{background:#f9edbe;border:1px solid #f0c36d;padding:0 16px;text-align:center;box-shadow:0 2px 4px rgba(0,0,0,.2);border-radius:2px;}.gs_alrt:empty{display:none;}.gs_spc{display:inline-block;width:12px}.gs_br{width:0;font-size:0}.gs_ibl{display:inline-block;}.gs_scl:after{content:"";display:table;clear:both;}.gs_ind{padding-left:8px;text-indent:-8px}.gs_ico,.gs_icm{display:inline-block;background:no-repeat url(/intl/en/scholar/images/1x/sprite_20161020.png);background-position:-23px -161px;background-size:169px;width:21px;height:21px;}@media(-webkit-min-device-pixel-ratio:1.5),(min-resolution:144dpi){.gs_ico,.gs_icm{background-image:url(/intl/en/scholar/images/2x/sprite_20161020.png);}}.gs_el_ta .gs_nta,.gs_ota,.gs_el_ph .gs_nph,.gs_oph{display:none}.gs_el_ta .gs_ota,.gs_el_ph .gs_oph{display:inline}.gs_el_ta div.gs_ota,.gs_el_ph div.gs_oph{display:block}.gs_sth_g{visibility:hidden;max-height:0;}.gs_sth_vis .gs_sth_g{max-height:1000px;}.gs_sth_vis .gs_sth_b{position:fixed;top:0;}.gs_sth_trk .gs_sth_b{position:absolute;top:auto;}@keyframes gs_anm_spin{0%{transform:rotate(0deg);}100%{transform:rotate(360deg);}}.gs_rimg{display:block;background-color:#e5e5e5;border-radius:50%;overflow:hidden;position:relative;z-index:1;}.gs_rimg>img{position:absolute;margin:auto;left:0;top:0;bottom:0;right:0;}.gs_in_txtw{display:inline-block;vertical-align:middle;}.gs_in_txtb{display:block;}.gs_in_txt{color:#000;background-color:#fff;font-size:16px;box-sizing:border-box;height:29px;line-height:23px;border:1px solid #d9d9d9;border-top-color:#c0c0c0;padding:3px 6px 1px 8px;border-radius:1px;outline:none;-webkit-appearance:none;-moz-appearance:none;}.gs_el_tc .gs_in_txt{font-size:18px;}.gs_in_txtb .gs_in_txt{width:100%;}.gs_in_rnd .gs_in_txt{border-radius:14.5px;padding:3px 12px 1px 12px;}.gs_in_txt:hover{border-color:#b9b9b9;border-top-color:#a0a0a0;box-shadow:inset 0 1px 2px rgba(0,0,0,.1);}.gs_in_txte .gs_in_txt{border-color:#dd4b39;}.gs_in_txt:focus{border-color:#4d90fe;box-shadow:inset 0 1px 2px rgba(0,0,0,.3);}.gs_in_txt:disabled{color:#b8b8b8;border-color:#f1f1f1;box-shadow:none;}.gs_in_txtm .gs_in_txt{font-size:13px;height:24px;line-height:16px;padding:3px 6px;}.gs_in_txtm.gs_in_rnd .gs_in_txt{border-radius:12px;}.gs_el_tc .gs_in_txtm .gs_in_txt{height:29px;line-height:21px;}.gs_el_tc .gs_in_txtm.gs_in_rnd .gs_in_txt{border-radius:14.5px;}.gs_in_txtl .gs_in_txt{height:41px;padding:9px 43px;}.gs_in_txtl.gs_in_rnd .gs_in_txt{border-radius:20.5px;}.gs_in_txts{font-size:13px;line-height:18px;color:#666;}.gs_in_txts:not(:empty){margin-top:2px;}.gs_in_txte .gs_in_txts{color:#dd4b39;}button{position:relative;z-index:1;box-sizing:border-box;font-size:13px;cursor:pointer;height:29px;line-height:normal;min-width:72px;padding:0 8px;color:#444;border:1px solid rgba(0,0,0,.1);border-radius:3px;text-align:center;background-color:#f5f5f5;user-select:none;}button.gs_btn_rnd{border-radius:14px;padding:0 12px;}button.gs_btn_rnd.gs_btn_rndci{padding-left:4px;}button.gs_btn_lrge{height:41px;min-width:82px;padding:0 9px;}button.gs_btn_lrge.gs_btn_lrge_asym{padding-left:5px;padding-right:8px;}button.gs_btn_lrge.gs_btn_rnd{border-radius:20px;padding:0 16px;}button.gs_btn_lrge.gs_btn_rnd.gs_btn_rndci{padding-left:10px;}button.gs_btn_cir{border-radius:14.5px;min-width:29px;}button.gs_btn_lrge.gs_btn_cir{border-radius:20.5px;min-width:41px;}button.gs_btn_mini{padding:0;border:0;}.gs_el_ph button.gs_btn_mph,.gs_el_ta button.gs_btn_mta{height:41px;}button .gs_wr{position:relative;display:inline-block;width:100%;height:100%;}button .gs_wr:before{content:"";width:0;height:100%;}button .gs_wr:before,button .gs_ico,button .gs_rdt,button .gs_lbl,button .gs_icm{display:inline-block;vertical-align:middle;}button .gs_wr{font-size:13px;text-transform:none;}.gs_btn_lrge .gs_wr{font-size:15px;}.gs_btn_lsb .gs_wr{font-size:11px;font-weight:bold;}.gs_btn_lsu .gs_wr{font-size:11px;text-transform:uppercase;}.gs_btn_lrge.gs_btn_lsb .gs_wr,.gs_btn_lrge.gs_btn_lsu .gs_wr,.gs_btn_lrge.gs_btn_lrge_asym .gs_wr{font-size:13px;}.gs_btn_half,.gs_el_ta .gs_btn_hta,.gs_el_ph .gs_btn_hph{min-width:36px;}.gs_btn_lrge.gs_btn_half,.gs_el_ta .gs_btn_lrge.gs_btn_hta,.gs_el_ph .gs_btn_lrge.gs_btn_hph,.gs_el_ta .gs_btn_mta,.gs_el_ph .gs_btn_mph{min-width:41px;}.gs_btn_slt{border-radius:3px 0 0 3px;}.gs_btn_srt{margin-left:-1px;border-radius:0 3px 3px 0;}.gs_btn_smd{margin-left:-1px;border-radius:0;}button:hover{z-index:2;color:#222;border-color:rgba(0,0,0,.2);background-color:#f8f8f8;}button.gs_sel{background-color:#dcdcdc;}button:active{z-index:2;background-color:#f1f1f1;}button:focus{z-index:2;}button::-moz-focus-inner{padding:0;border:0}button:-moz-focusring{outline:1px dotted ButtonText}.gs_pfcs button:-moz-focusring{outline:none}a.gs_in_ib{position:relative;display:inline-block;line-height:16px;padding:6px 0 7px 0;user-select:none;}a.gs_btn_lrge{height:40px;padding:0;}a.gs_in_bgcw{min-width:41px;}a.gs_btn_lrge.gs_in_bgcw:before{position:absolute;content:"";height:29px;width:29px;top:6px;left:6px;background-color:#fff;box-shadow:0 1px 3px rgb(0,0,0,.4);border-radius:50%;}a.gs_in_bgcw:hover:before{background-color:#f5f5f5;}a.gs_in_bgcw:active:before{background-color:#e5e5e5;}a.gs_in_bgcw.gs_dis:before{background-color:#fff;}a.gs_in_ib .gs_lbl{display:inline-block;padding-left:21px;color:#222;}a.gs_in_ib.gs_in_gray .gs_lbl{color:#444;}a.gs_in_ib .gs_lbl:not(:empty){padding-left:29px;}button.gs_in_ib .gs_lbl:not(:empty){padding-left:4px;}a.gs_in_ib:active .gs_lbl,a.gs_in_ib .gs_lbl:active,a.gs_in_ib :active~.gs_lbl{color:#d14836;}.gs_el_ta .gs_btn_hta .gs_lbl,.gs_el_ph .gs_btn_hph .gs_lbl,.gs_el_ta .gs_btn_mta .gs_lbl,.gs_el_ph .gs_btn_mph .gs_lbl,.gs_el_ta .gs_btn_cta .gs_lbl,.gs_el_ph .gs_btn_cph .gs_lbl{display:none;}a.gs_in_ib .gs_ico{position:absolute;top:3px;left:0;}.gs_in_ib.gs_md_li .gs_ico{left:14px;}.gs_el_tc .gs_in_ib.gs_md_li .gs_ico{top:11px;}.gs_in_ib.gs_md_li.gs_md_lix .gs_ico{top:10px;left:16px;}a.gs_btn_lrge .gs_ico{top:50%;left:50%;margin:-10.5px 0 0 -10.5px;}.gs_in_ib .gs_ico{opacity:.55;}.gs_in_ib:hover .gs_ico{opacity:.72;}.gs_in_ib:active .gs_ico,.gs_in_ib .gs_ico:active,.gs_in_ib :active~.gs_ico{opacity:1;}.gs_in_ib:disabled .gs_ico,.gs_in_ib.gs_dis .gs_ico{opacity:.28;}.gs_in_ib.gs_btn_act .gs_ico,.gs_in_ib.gs_btn_cre .gs_ico{opacity:1;}.gs_btn_act:disabled .gs_ico,.gs_btn_cre:disabled .gs_ico{opacity:.72;}.gs_rdt{position:relative;width:0;height:21px;}a.gs_in_ib .gs_rdt{left:21px;}.gs_rdt:before{content:"";position:absolute;top:1px;right:0;width:5px;height:5px;border:1px solid #fff;border-radius:50%;background-color:#dd4b39;}.gs_notf{display:inline-block;vertical-align:top;margin-left:8px;width:16px;line-height:16px;background-color:#d14836;border-radius:50%;color:#fff;text-align:center;font-size:9px;font-weight:bold;}.gs_notf:empty{display:none;}.gs_ind .gs_notf{text-indent:0;}button.gs_btn_flat{border-color:transparent;background-color:transparent;}button.gs_btn_olact{color:#4d90fe;background-color:transparent;}button.gs_btn_flat:hover,button.gs_btn_olact:hover{background-color:rgba(0,0,0,.05);}button.gs_btn_flat:active,button.gs_btn_olact:active{background-color:rgba(0,0,0,.1);}button.gs_btn_flat.gs_btn_flact{color:#1a0dab;}button.gs_btn_act{color:#fff;background-color:#4d90fe;}button.gs_btn_act:hover{color:#fff;background-color:#3983fe;}button.gs_btn_act.gs_sel{background-color:#2f6bcc;}button.gs_btn_act:active{background-color:#357ae8;}button.gs_btn_cre{color:#fff;background-color:#d14836;}button.gs_btn_cre:hover{color:#fff;background-color:#c53727;}button.gs_btn_cre.gs_sel{background-color:#992b1e;}button.gs_btn_cre:active{background-color:#b0281a;}button.gs_btn_hov_nobg:hover,button.gs_btn_hov_nobg:active{border:none;background:transparent;}button:disabled,button:disabled:hover,button:disabled:active{cursor:default;color:#b8b8b8;border-color:rgba(0,0,0,.05);background-color:transparent;z-index:0;}button.gs_btn_flat:disabled{color:#b8b8b8;border-color:transparent;}button.gs_btn_act:disabled{color:#fff;background-color:#a6c8ff;}button.gs_btn_cre:disabled{color:#fff;background-color:#e8a49b;}a.gs_in_ib.gs_dis{cursor:default;pointer-events:none}a.gs_in_ib.gs_dis .gs_lbl{color:#b8b8b8;text-decoration:none}.gs_ttp{position:absolute;top:100%;right:50%;z-index:10;pointer-events:none;visibility:hidden;opacity:0;transition:visibility 0s .13s,opacity .13s ease-out;}button:hover .gs_ttp,button:focus .gs_ttp,a:hover .gs_ttp,a:focus .gs_ttp{transition:visibility 0s .3s,opacity .13s ease-in .3s;visibility:visible;opacity:1;}.gs_md_tb.gs_sel .gs_ttp{transition:none;visibility:hidden;}button.gs_btn_lrge.gs_btn_cir .gs_ttp{top:75%;}.gs_ttp .gs_aro,.gs_ttp .gs_aru{position:absolute;top:-2px;right:-5px;width:0;height:0;line-height:0;font-size:0;border:5px solid transparent;border-top:none;border-bottom-color:#595959;z-index:1;}.gs_ttp .gs_aro{top:-3px;right:-6px;border-width:6px;border-top:none;border-bottom-color:white;}.gs_ttp .gs_txt{display:block;position:relative;top:2px;right:-50%;padding:4px 6px;background:#595959;color:white;font-size:11px;font-weight:bold;line-height:normal;white-space:nowrap;border:1px solid white;border-radius:3px;box-shadow:inset 0 1px 4px rgba(0,0,0,.2);}.gs_press,.gs_in_se,.gs_tan{touch-action:none;}.gs_in_se .gs_lbl:not(:empty){padding-right:14px;}.gs_in_se .gs_icm{position:absolute;top:50%;margin-top:-5.5px;right:0;width:7px;height:11px;background-position:-21px -88px;opacity:.55;}.gs_in_se:hover .gs_icm{opacity:.72;}.gs_in_se:active .gs_icm{opacity:1;}.gs_in_se:disabled .gs_icm{opacity:.28;}.gs_el_ta .gs_btn_hta .gs_icm,.gs_el_ph .gs_btn_hph .gs_icm,.gs_el_ta .gs_btn_mta .gs_icm,.gs_el_ph .gs_btn_mph .gs_icm,.gs_el_ta .gs_btn_cta .gs_icm,.gs_el_ph .gs_btn_cph .gs_icm{display:none;}.gs_btn_mnu .gs_icm{margin-top:-3.5px;height:7px;background-position:0 -110px;}.gs_in_se.gs_btn_act .gs_icm,.gs_in_se.gs_btn_cre .gs_icm{margin-top:-3.5px;height:7px;background-position:-42px -44px;opacity:1;}.gs_btn_act:disabled .gs_icm,.gs_btn_cre:disabled .gs_icm{opacity:.72;}button.gs_btnG .gs_ico{width:21px;height:21px;background-position:-92px -253px;}.gs_md_d{text-transform:none;white-space:nowrap;position:absolute;top:0;left:0;border:1px solid #ccc;border-color:rgba(0,0,0,.2);background:#fff;box-shadow:0 2px 4px rgba(0,0,0,.2);z-index:1100;text-align:left;visibility:hidden;max-height:0;margin-top:-1000px;opacity:0;transition:opacity .13s,visibility 0s .13s,max-height 0s .13s,margin-top 0s .13s;}.gs_md_d.gs_vis{visibility:visible;max-height:10000px;margin-top:0;opacity:1;transition:all 0s;}.gs_el_tc .gs_md_d{transform-origin:100% 0;transform:scale(1,0);transition:opacity .218s ease-out,transform 0s .218s,visibility 0s .218s,max-height 0s .218s,margin-top 0s .218s;}.gs_el_tc .gs_md_d.gs_ttzi{transform-origin:50% 50%;transform:scale(0,0);}.gs_el_tc .gs_md_d.gs_ttzr{transform:scale(0,0);}.gs_el_tc .gs_md_d.gs_vis{transform:scale(1,1);transition:transform .218s ease-out;}.gs_md_r{position:relative;display:inline-block;}.gs_md_rmb>.gs_md_d{top:29px}.gs_md_rmbl>.gs_md_d{top:41px}.gs_md_ul{list-style-type:none;word-wrap:break-word;display:inline-block;vertical-align:top;}.gs_md_ul.gs_md_ul_tb{display:block;}.gs_md_li,.gs_in_cb.gs_md_li,.gs_md_li:link,.gs_md_li:visited{display:block;padding:6px 44px 6px 16px;font-size:13px;line-height:16px;color:#222;cursor:pointer;text-decoration:none;position:relative;z-index:0;}a.gs_md_li:hover .gs_lbl,a.gs_md_li:active .gs_lbl{text-decoration:none}.gs_el_tc .gs_md_li{padding-top:14px;padding-bottom:10px;}.gs_md_li.gs_md_lix{font-size:16px;line-height:20px;padding:12px 16px 8px 16px;}.gs_md_li:before{content:"";background-color:#f1f1f1;position:absolute;left:0;right:0;top:0;bottom:0;opacity:0;transition:opacity .13s;z-index:-1;}.gs_md_li:hover:before,.gs_md_li:focus:before{opacity:1;transition:all 0s;}a.gs_in_ib.gs_md_li .gs_lbl{color:#222}a.gs_in_ib.gs_md_li.gs_in_gray .gs_lbl{color:#444}.gs_md_li:active:before{background-color:#ddd}.gs_md_li.gs_sel,a.gs_in_ib.gs_md_li.gs_sel .gs_lbl{color:#d14836}.gs_md_d:focus,.gs_md_li:focus{outline:none}a.gs_md_lix .gs_lbl,a.gs_md_lix .gs_lbl:not(:empty){padding:0 0 0 40px;}a.gs_in_cb:link,a.gs_in_cb:visited,a.gs_in_cb:active,a.gs_in_cb:hover{cursor:pointer;color:#222;text-decoration:none;}.gs_in_cb,.gs_in_ra{position:relative;line-height:16px;display:inline-block;user-select:none;}.gs_in_cb.gs_md_li{padding:6px 44px 6px 16px;}.gs_in_cb input,.gs_in_ra input{position:absolute;top:1px;left:1px;width:15px;height:15px;margin:0;padding:0;opacity:0;z-index:2;}.gs_in_ra input{top:0;left:0}.gs_el_tc .gs_in_cb input{top:9px}.gs_el_tc .gs_in_ra input{top:8px}.gs_in_cb.gs_in_cbj input{top:15px;left:15px}.gs_in_cb label,.gs_in_cb .gs_lbl,.gs_in_ra label{display:inline-block;padding-left:21px;min-height:16px;}.gs_in_ra_lrge{font-size:15px;}.gs_in_cb label:empty:before,.gs_in_cb .gs_lbl:empty:before,.gs_in_ra label:empty:before{content:"\200b";}.gs_el_tc .gs_in_cb label,.gs_el_tc .gs_in_cb .gs_lbl,.gs_el_tc .gs_in_ra label{padding-top:8px;padding-bottom:5px;}.gs_in_cb.gs_in_cbj label,.gs_in_cb.gs_in_cbj .gs_lbl{padding:13px 0 12px 41px;}.gs_in_cbb,.gs_in_cbb label,.gs_in_cbb .gs_lbl{display:block;}.gs_in_cb .gs_cbx,.gs_in_ra .gs_cbx{position:absolute}.gs_in_cb .gs_cbx{top:2px;left:2px;width:11px;height:11px;border:1px solid #c6c6c6;border-radius:1px;}.gs_md_li .gs_cbx{top:8px;left:18px}.gs_el_tc .gs_in_cb .gs_cbx{top:10px}.gs_el_tc .gs_md_li .gs_cbx{top:16px}.gs_in_cb.gs_in_cbj .gs_cbx{top:15px;left:15px}.gs_el_tc .gs_in_ra .gs_cbx{top:8px}.gs_in_ra .gs_cbx{top:0;left:0;border:1px solid #c6c6c6;width:13px;height:13px;border-radius:7px;}.gs_in_cb:hover .gs_cbx,.gs_in_ra:hover .gs_cbx{border-color:#666;box-shadow:inset 0 1px 1px rgba(0,0,0,.1);}button.gs_in_cb:hover .gs_cbx{border-color:#c6c6c6;}.gs_in_cb :focus~label,.gs_in_ra :focus~label{outline:1px dotted #222;}.gs_pfcs .gs_in_cb :focus~label,.gs_pfcs .gs_in_ra :focus~label{outline:none;}.gs_in_cb:active .gs_cbx,.gs_in_ra:active .gs_cbx,.gs_in_cb .gs_cbx:active,.gs_in_ra .gs_cbx:active,.gs_in_cb :active~.gs_cbx,.gs_in_ra :active~.gs_cbx{border-color:#666;background-color:#ebebeb;}button.gs_in_cb:active .gs_cbx{border-color:#a6a6a6;}.gs_in_cb :disabled~.gs_cbx,.gs_in_ra :disabled~.gs_cbx,button.gs_in_cb:disabled .gs_cbx{border-color:#f1f1f1;box-shadow:none;}.gs_in_cb :disabled~label,.gs_in_ra :disabled~label{color:#b8b8b8;}.gs_in_cb.gs_err .gs_cbx{border-color:#eda29b;}.gs_in_cb .gs_chk,.gs_in_ra .gs_chk{position:absolute;z-index:1;top:-3px;left:-2px;width:21px;height:21px;}.gs_md_li .gs_chk{top:3px;left:14px}.gs_el_tc .gs_in_cb .gs_chk{top:5px}.gs_el_tc .gs_md_li .gs_chk{top:11px}.gs_in_cb.gs_in_cbj .gs_chk{top:10px;left:11px}.gs_in_ra .gs_chk{top:4px;left:4px;width:7px;height:7px;border-radius:4px;}.gs_el_tc .gs_in_ra .gs_chk{top:12px}.gs_in_cb input:checked~.gs_chk,.gs_in_cb.gs_sel .gs_chk{background:no-repeat url(/intl/en/scholar/images/1x/sprite_20161020.png) -69px -67px;opacity:.62;}.gs_in_ra input:checked~.gs_chk{background-color:#666}.gs_in_cb.gs_par .gs_chk{background:no-repeat url(/intl/en/scholar/images/1x/sprite_20161020.png) -21px -44px;opacity:.55;}@media(-webkit-min-device-pixel-ratio:1.5),(min-resolution:144dpi){.gs_in_cb input:checked~.gs_chk,.gs_in_cb.gs_sel .gs_chk,.gs_in_cb.gs_par .gs_chk{background-image:url(/intl/en/scholar/images/2x/sprite_20161020.png);background-size:169px;}}.gs_in_cb input:checked:disabled~.gs_chk{opacity:.22}.gs_in_ra input:checked:disabled~.gs_chk{background-color:#f1f1f1}.gs_ico_x{background-position:-113px -22px;opacity:.55;}.gs_ico_x:hover{opacity:.72;}.gs_ico_x:active{opacity:1;}.gs_ico_X{background-position:-71px 0;opacity:.55;}.gs_ico_X:hover{opacity:.72;}.gs_ico_X:active{opacity:1;}.gs_btnX .gs_ico{background-position:-71px 0;}.gs_el_tc .gs_ico_Xt{background-origin:content-box;background-clip:content-box;padding:10px 6px 10px 14px;}.gs_ico_P{background-position:0 0;opacity:.55;}.gs_ico_P:hover{opacity:.72;}.gs_ico_P:active{opacity:1;}.gs_btnP .gs_ico{background-position:-21px 0;}.gs_btnC .gs_ico{background-position:0 -66px;}.gs_btnL .gs_ico{background-position:-92px -44px;}.gs_ico_LB{background-position:-50px -44px;height:16px;}.gs_btnJ .gs_ico{background-position:-92px -22px;}.gs_btnM .gs_ico{background-position:-92px 0;}.gs_btnMW .gs_ico{background-position:-21px -22px;}.gs_btnSB .gs_ico{background-position:0 -44px;}.gs_btnTSB .gs_ico{background-position:-115px -253px;}.gs_btnPL .gs_ico{background-position:-148px -66px;}.gs_btnPR .gs_ico{background-position:-21px -66px;}.gs_btnPLW .gs_ico{background-position:-0 -230px;}.gs_btnPRW .gs_ico{background-position:-23px -230px;}.gs_btnZI .gs_ico{background-position:-148px -22px;}.gs_btnZO .gs_ico{background-position:-127px -44px;}.gs_btnDE .gs_ico{background-position:-134px 0;}.gs_btnFI .gs_ico{background-position:-50px -66px;}.gs_btnAD .gs_ico{background-position:-141px -88px;opacity:.55;}.gs_btnAD:hover .gs_ico{opacity:.72;}.gs_btnAD:active .gs_ico,.gs_btnAD .gs_ico:active,.gs_btnAD :active~.gs_ico{opacity:1;}.gs_btnBA .gs_ico{background-position:-50px -22px;}.gs_btnADD .gs_ico{background-position:-92px -66px;}.gs_btnMRG .gs_ico{background-position:-113px 0;}.gs_btnLBL .gs_ico{background-position:0 -161px;}.gs_btnCNCL .gs_ico{background-position:-71px 0;}.gs_btnDWL .gs_ico{background-position:-28px -88px;}.gs_btnMNU .gs_ico{background-position:0 -88px;}.gs_btnMNT .gs_ico{background-position:-46px -161px;}.gs_btnALT .gs_ico{background-position:-92px -161px;}.gs_btnART .gs_ico{background-position:-115px -161px;}.gs_btnGSL .gs_ico{background-position:-69px -161px;}.gs_btnCLS .gs_ico{background-position:-138px -161px;}.gs_btnXBLU .gs_ico{background-position:-138px -253px;}.gs_btnSSB .gs_ico{background-position:0 -276px;}.gs_btnSSW .gs_ico{background-position:-23px -276px;}.gs_btnFLT .gs_ico{background-position:0 -184px;}.gs_btnXT .gs_ico{background-position:-46px -184px;}.gs_btnPD .gs_ico{background-position:-69px -184px;}.gs_btnPU .gs_ico {background-position:-92px -276px;}.gs_btnCP .gs_ico{background-position:-92px -184px;}.gs_btnTP .gs_ico{background-position:-138px -184px;}.gs_btnML .gs_ico{background-position:-115px -276px;}.gs_btnCHK .gs_ico{background-position:-71px -66px;}.gs_btnDNB .gs_ico{background-position:-115px -230px;}.gs_btnDNW .gs_ico{background-position:0 -207px;}.gs_btnACA .gs_ico{background-position:-23px -207px;}.gs_btnAPT .gs_ico{background-position:-46px -207px;}.gs_btnAPTW .gs_ico{background-position:-92px -230px;}.gs_btnAFL .gs_ico{background-position:-69px -207px;}.gs_btnAN .gs_ico{background-position:-46px -276px;}.gs_btnAI .gs_ico{background-position:-69px -276px;}.gs_btnPBL .gs_ico{background-position:-92px -207px;}.gs_btnUCT .gs_ico{background-position:-115px -207px;}.gs_btnVRF .gs_ico{background-position:-138px -207px;}.gs_btnLSI .gs_ico{background-position:-46px -230px;}.gs_btnLSG .gs_ico{background-position:-69px -230px;}.gs_btnMOR .gs_ico{background-position:-23px -253px;}.gs_btnADV .gs_ico{background-position:-46px -253px;}.gs_btnPRO .gs_ico{background-position:-69px -253px;}.gs_ico_star{background-position:-71px -44px;width:13px;height:13px;}.gs_btnPLSW .gs_ico{background-position:-138px -230px;}.gs_btnPDF .gs_ico{background-position:0 -253px;}.gs_btnS .gs_ico{background-position:-138px -276px;}.gs_btnUNS .gs_ico{background-position:0 -299px;}.gs_btnMORR .gs_ico{background-position:-23px -299px;}.gs_btnTW .gs_ico{background-position:-46px -299px;}.gs_btnIN .gs_ico{background-position:-69px -299px;}.gs_btnFB .gs_ico{background-position:-92px -299px;}.gs_btnET .gs_ico{background-position:-115px -299px;}.gs_btnARC .gs_ico{background-position:-138px -299px;}.gs_btnOL .gs_ico{background-position:0px -322px;}.gs_btnFA .gs_ico{background-position:-23px -322px;}.gs_btnFAD .gs_ico{background-position:-46px -322px;}.gs_btnHP .gs_ico{background-position:-69px -322px;}.gs_btnPLM .gs_ico{background-position:-92px -322px;}.gs_btnPRM .gs_ico{background-position:-115px -322px;}.gs_btnSRT .gs_ico{background-position:0 -345px;}#gs_md_s.gs_hdr_drs{transition:opacity .15s,visibility 0s .15s;}#gs_md_s.gs_hdr_drs.gs_vis{transition:opacity .15s,visibility 0s;}.gs_el_tc #gs_md_s.gs_hdr_drs{transition:opacity .218s,visibility 0s .218s;}.gs_el_tc #gs_md_s.gs_hdr_drs.gs_vis{transition:opacity .218s,visibility 0s;}#gs_hdr_drw{position:fixed;top:0;left:0;height:100%;z-index:1200;visibility:hidden;overflow:auto;width:228px;background-color:#fff;box-shadow:2px 2px 4px rgba(0,0,0,.15);outline:none;transform:translate(-100%,0);transition:transform .15s ease-in-out,visibility 0s .15s;}#gs_hdr_drw.gs_vis{visibility:visible;transform:translate(0,0);transition:transform .15s ease-in-out,visibility 0s;}.gs_el_tc #gs_hdr_drw{transition:transform .3s cubic-bezier(.4,0,.6,1),visibility 0s .3s;}.gs_el_tc #gs_hdr_drw.gs_vis{transition:transform .225s cubic-bezier(0,0,.2,1),visibility 0s;}#gs_top #gs_hdr_drw.gs_abt,#gs_top #gs_md_s.gs_abt{transition:none;}#gs_hdr_drw_in{position:relative;box-sizing:border-box;min-height:100%;padding:0 0 8px 0;}.gs_el_ta #gs_hdr_drw_in,.gs_el_ph #gs_hdr_drw_in{padding:0 0 65px 0;}#gs_hdr_drw_top{position:relative;height:63px;border-bottom:1px solid #e5e5e5;margin-bottom:8px;}.gs_el_ta #gs_hdr_drw_top,.gs_el_ph #gs_hdr_drw_top{height:57px;}#gs_hdr_drw_mnu,#gs_hdr_drw_lgo{position:absolute;top:0;height:100%;}#gs_hdr_drw_mnu{left:0;width:55px;}#gs_hdr_drw_lgo{left:56px;}.gs_hdr_drw_sec:before{display:block;content:" ";height:0;border-bottom:1px solid #e5e5e5;margin:8px 0;}.gs_hdr_drw_sec:first-child:before{display:none;}#gs_hdr_drw_bot{display:none;}.gs_el_ta #gs_hdr_drw_bot,.gs_el_ph #gs_hdr_drw_bot{display:block;position:absolute;left:0;bottom:0;width:100%;height:65px;}#gs_hdr_drw_bot .gs_md_li:before{opacity:0;}#gs_hdr_drw_bot .gs_hdr_pp{display:block;position:absolute;bottom:14px;left:15px;pointer-events:none;}#gs_hdr_drw_bot .gs_lbl{display:block;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}#gs_hdr{position:relative;height:63px;background-color:#f5f5f5;border-bottom:1px solid #e5e5e5;display:flex;}.gs_el_ta #gs_hdr,.gs_el_ph #gs_hdr{height:57px;}#gs_hdr_mnu,#gs_hdr_bck,#gs_hdr_lgo,#gs_hdr_lgt,#gs_hdr_md,#gs_hdr_sre,#gs_hdr_act{display:inline-block;vertical-align:top;position:relative;height:100%;flex:0 0 auto;}#gs_hdr_md{flex:1 1 auto;}#gs_hdr .gs_hdr_mbo,#gs_hdr .gs_hdr_mbo,.gs_el_ta #gs_hdr .gs_hdr_dso,.gs_el_ph #gs_hdr .gs_hdr_dso{display:none;}.gs_el_ta #gs_hdr .gs_hdr_mbo,.gs_el_ph #gs_hdr .gs_hdr_mbo{display:inline-block;}#gs_hdr_mnu,#gs_hdr_bck,#gs_hdr_sre{width:55px;margin-right:1px;}#gs_hdr_lgo,#gs_hdr_drw_lgo{width:149px;background:no-repeat url('/intl/en/scholar/images/1x/scholar_logo_24dp.png') 0% 50%;background-size:149px;}@media(-webkit-min-device-pixel-ratio:1.5),(min-resolution:144dpi){#gs_hdr_lgo,#gs_hdr_drw_lgo{background-image:url('/intl/en/scholar/images/2x/scholar_logo_24dp.png');}}#gs_hdr_lgo{margin-right:31px;}.gs_el_ph #gs_hdr_lgo{margin-right:0;}#gs_hdr_lgt{min-width:164px;margin-right:16px;}.gs_el_sm #gs_hdr_lgt:empty{display:none;}#gs_hdr_md{margin-right:16px;min-width:1px;}#gs_hdr_lgt,#gs_hdr_md h1{padding:19px 0 0 0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;font-size:20px;line-height:25px;font-weight:normal;color:#666;max-width:100%;text-align:left;}.gs_el_ta #gs_hdr_md h1,.gs_el_ph #gs_hdr_md h1{padding:16px 0 0 0;}#gs_hdr_srch{padding:14px 0 0 0;max-width:600px;}.gs_el_ta #gs_hdr_srch,.gs_el_ph #gs_hdr_srch{padding:10px 0 0 0;max-width:none;}#gs_hdr_frm{position:relative;padding-right:39px;}#gs_hdr_tsi{height:38px;border-radius:2px 0 0 2px;}#gs_hdr_tsi::-ms-clear{display:none;}#gs_hdr_tsc{display:none;position:absolute;top:3px;right:41px;width:21px;height:21px;padding:6px 10px 7px 10px;}.gs_in_acw[dir="rtl"]~#gs_hdr_tsc{right:auto;left:1px;}#gs_hdr_tsb{position:absolute;top:0;right:0;width:40px;height:38px;border-radius:0 2px 2px 0;}#gs_hdr_frm_ac{top:37px;right:40px;}.gs_el_ph #gs_hdr_frm_ac{right:0;}.gs_el_ph .gs_hdr_ifc #gs_hdr_mnu,.gs_el_ph .gs_hdr_ifc #gs_hdr_bck,.gs_hdr_src #gs_hdr_srch,.gs_hdr_src #gs_hdr_lgt,.gs_hdr_srx #gs_hdr_sre,.gs_hdr_srx #gs_hdr_md h1,.gs_hdr_srx #gs_hdr_md h1.gs_hdr_mbo,.gs_hdr_srx #gs_hdr_md h1.gs_hdr_dso,.gs_el_ta .gs_hdr_srx #gs_hdr_lgo,.gs_el_ph .gs_hdr_srx #gs_hdr_lgo,.gs_el_ph .gs_hdr_srx #gs_hdr_mnu,.gs_el_ph .gs_hdr_srx #gs_hdr_bck{display:none;}.gs_el_ph .gs_hdr_ifc #gs_hdr_md,.gs_el_ph .gs_hdr_srx #gs_hdr_md{margin-left:16px;}.gs_el_tc .gs_hdr_tsc #gs_hdr_tsi[dir="ltr"]{padding-right:41px;}.gs_el_tc .gs_hdr_tsc #gs_hdr_tsi[dir="rtl"]{padding-left:41px;}.gs_el_tc .gs_hdr_tsc .gs_in_acw~#gs_hdr_tsc{display:block;}#gs_hdr_act{min-width:64px;max-width:200px;text-align:right;float:right;}.gs_el_ta #gs_hdr_act,.gs_el_ph #gs_hdr_act{display:none;}#gs_hdr_act_i,#gs_hdr_act_s{display:inline-block;padding:23px 24px 23px 16px;max-width:100%;box-sizing:border-box;font-size:13px;line-height:17px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;color:#444;}#gs_hdr_act_s{text-transform:uppercase;}.gs_el_sm #gs_hdr_act_i,.gs_el_sm #gs_hdr_act_s{padding:23px 16px;}.gs_el_ta #gs_hdr_act_i,.gs_el_ta #gs_hdr_act_s,.gs_el_ph #gs_hdr_act_i,.gs_el_ph #gs_hdr_act_s{padding:20px 16px;}#gs_hdr_act_i:active,#gs_hdr_act_s:active{color:#d14836;}#gs_hdr_act_i,.gs_el_sm #gs_hdr_act_i{padding-top:15px;padding-bottom:16px;}.gs_el_ta #gs_hdr_act_i,.gs_el_ph #gs_hdr_act_i{padding-top:12px;padding-bottom:13px;}#gs_hdr_act_i .gs_hdr_pp{vertical-align:top;}#gs_hdr_act_d{top:63px;left:auto;right:24px;min-width:288px;max-width:400px;}.gs_el_sm #gs_hdr_act_d{right:16px;}.gs_el_ta #gs_hdr_act_d{top:57px;}.gs_el_ph #gs_hdr_act_d{top:57px;min-width:280px;max-width:280px;max-width:90vw;}/* Account dialog body. */#gs_hdr_act_aw,#gs_hdr_act_ap,.gs_hdr_act_am,#gs_hdr_act_ab{display:block;padding:10px 20px;word-wrap:break-word;white-space:normal;}#gs_hdr_act_aw{background-color:#fef9db;font-size:11px;}#gs_hdr_act_ap,.gs_hdr_act_am{border-bottom:1px solid #ccc;}#gs_hdr_act_ap{padding:20px;}.gs_el_ph #gs_hdr_act_ap{padding:10px;}#gs_hdr_act_apb{margin-top:12px;}#gs_hdr_act_aa:link,#gs_hdr_act_aa:visited{float:right;margin-left:8px;color:#1a0dab;}#gs_hdr_act_aa:active{color:#d14836}.gs_hdr_act_am:link,.gs_hdr_act_am:visited{color:#222;text-decoration:none;background:#fbfbfb;}.gs_hdr_act_am:hover,.gs_hdr_act_am:focus{background:#f1f1f1;}.gs_hdr_act_am:active{background:#eee;}#gs_hdr_act_ab{background:#fbfbfb;padding:10px 0;display:table;width:100%;white-space:nowrap;}#gs_hdr_act_aba,#gs_hdr_act_abs{display:table-cell;padding:0 20px;}#gs_hdr_act_abs{text-align:right;}.gs_el_ph #gs_hdr_act_aba,.gs_el_ph #gs_hdr_act_abs{display:block;padding:10px;text-align:center;}.gs_el_ph #gs_hdr_act_aba button,.gs_el_ph #gs_hdr_act_abs button{width:100%;}#gs_hdr_act_a1,#gs_hdr_act_a2{position:absolute;top:-9px;right:7.5px;width:0;height:0;z-index:1;border:8.5px solid transparent;border-top:none;border-bottom-color:#333;border-bottom-color:rgba(0,0,0,.2);}#gs_hdr_act_a2{top:-8px;border-bottom-color:#fff;}.gs_hdr_act_mw #gs_hdr_act_a2{border-bottom-color:#fef9db;}.gs_hdr_pp{border-radius:50%;overflow:hidden;}#gs_hdr_act_ap .gs_hdr_pp,.gs_hdr_act_am .gs_hdr_pp{float:left;}#gs_hdr_act_ap .gs_hdr_pm{margin-left:116px;}.gs_hdr_act_am .gs_hdr_pm{margin:6px 0 0 58px;}#gs_ab{position:relative;height:41px;border-bottom:1px solid #e5e5e5;display:flex;white-space:nowrap;background-color:#fff;z-index:1000;}.gs_el_ta #gs_ab.gs_nta,.gs_el_ph #gs_ab.gs_nph{display:none;}.gs_sth_vis #gs_ab{position:fixed;}#gs_ab_ico,#gs_ab_ttl,#gs_ab_md,#gs_ab_btns{display:inline-block;vertical-align:top;position:relative;height:100%;flex:0 0 auto;}.gs_el_ph #gs_ab_md{display:block;}#gs_ab_ico{width:55px;margin-right:1px;}#gs_ab_ico .gs_ico{position:absolute;top:50%;left:50%;margin:-10.5px 0 0 -10.5px;}#gs_ab_ttl{min-width:172px;padding-right:8px;}.gs_el_sm #gs_ab_ttl{min-width:68px;}.gs_el_ta #gs_ab_ttl,.gs_el_ph #gs_ab_ttl{min-width:0;}#gs_ab_ttl,#gs_ab_ttll{font-size:18px;color:#666;text-transform:none;}.gs_el_sm #gs_ab_ttl,.gs_el_sm #gs_ab_ttll{font-size:16px;}#gs_ab_ttll{overflow:hidden;text-overflow:ellipsis;max-width:200px;}#gs_ab_md{flex:1 0 auto;}.gs_ab_st #gs_ab_md{flex:1 1 auto;font-size:13px;line-height:17px;padding:0 8px;color:#999;overflow:hidden;text-overflow:ellipsis;}.gs_el_ph .gs_ab_st #gs_ab_md{visibility:hidden;padding:0;}#gs_ab_btns{margin-right:8px;}.gs_el_sm #gs_ab_btns{margin-right:0;}.gs_el_ta #gs_ab_btns,.gs_el_ph #gs_ab_btns{margin-right:4px;}#gs_ab_ttl:before,#gs_ab_md:before,#gs_ab_btns:before{content:"";display:inline-block;width:0;height:100%;vertical-align:middle;}#gs_ab_md>button,#gs_ab_btns>button,#gs_ab_md>.gs_in_ib,#gs_ab_btns>.gs_in_ib,#gs_ab_md>.gs_md_r,#gs_ab_btns>.gs_md_r,#gs_ab .gs_ab_mdw,#gs_ab .gs_ab_btw{margin:0 8px;vertical-align:middle;}#gs_ab .gs_ab_mdw,.gs_ab_btw{display:inline-block;margin:0;}#gs_ab_btns>.gs_in_ib{margin:0 16px 0 8px;}#gs_ab .gs_ab_btw{margin:0 12px 0 16px;}.gs_el_ta .gs_ab_sel #gs_ab_ico,.gs_el_ph .gs_ab_sel #gs_ab_ico,.gs_el_ta .gs_ab_sel #gs_ab_ttl,.gs_el_ph .gs_ab_sel #gs_ab_ttl,.gs_el_ta .gs_ab_sel #gs_ab_btns,.gs_el_ph .gs_ab_sel #gs_ab_btns{display:none;}#gs_bdy{display:table;table-layout:fixed;width:100%;}#gs_bdy_sb{vertical-align:top;width:228px;word-wrap:break-word;display:table-cell;}.gs_el_sm #gs_bdy_sb{display:none;}.gs_el_ta #gs_bdy_sb,.gs_el_ph #gs_bdy_sb{display:none;}.gs_bdy_sb_sec{margin:0 40px 0 56px;}.gs_bdy_sb_sec:before{display:block;content:" ";height:0;margin:13px 0;border-top:1px solid #eee;}.gs_bdy_sb_sec:first-child:before{margin:21px 0 0 0;border:none;}#gs_bdy_sb ul{list-style-type:none;}.gs_bdy_sb_sec a:link,.gs_bdy_sb_sec a:visited{color:#222;}.gs_bdy_sb_sec a:active{color:#d14836;}.gs_bdy_sb_sel a:link,.gs_bdy_sb_sel a:visited{color:#d14836;text-decoration:none;}.gs_el_tc .gs_bdy_sb_sec li.gs_ind,.gs_el_tc .gs_bdy_sb_sec li.gs_ind a{padding-top:8px;padding-bottom:5px;}.gs_el_tc .gs_bdy_sb_sec:first-child li.gs_ind:first-child{margin-top:-8px;}#gs_bdy_sb .gs_ind,#gs_bdy_sb .gs_inw{margin-bottom:4px;}.gs_el_tc #gs_bdy_sb .gs_ind,.gs_el_tc #gs_bdy_sb .gs_inw{margin-bottom:0;}#gs_bdy_ccl{display:table-cell;vertical-align:top;padding:0 24px 0 16px;}.gs_el_sm #gs_bdy_ccl{padding:0 16px 0 56px;}.gs_el_ta #gs_bdy_ccl,.gs_el_ph #gs_bdy_ccl{padding:0 16px 0 56px;}.gs_el_ph #gs_bdy_ccl{padding:0 16px;}#gs_ftr_sp{height:62px;}.gs_el_sm #gs_ftr_sp{height:57px;}#gs_ftr{position:absolute;bottom:0;left:0;width:100%;white-space:nowrap;border-top:1px solid #e4e4e4;background-color:#f2f2f2;display:flex;}#gs_ftr_rt{box-sizing:border-box;max-width:100%;overflow-x:auto;margin-left:auto;padding:0 12px;}.gs_el_sm #gs_ftr_rt{padding:0 8px;}.gs_el_ph #gs_ftr_rt:after{content:" ";position:absolute;top:0;right:0;width:16px;height:100%;background-image:linear-gradient(to right,rgba(242,242,242,0),rgba(242,242,242,1) 80%);}#gs_ftr_rt a{display:inline-block;line-height:16px;padding:12px;white-space:nowrap;}.gs_el_sm #gs_ftr_rt a{padding:12px 8px;}#gs_ftr_rt a:link,#gs_ftr_rt a:visited{color:#666}#gs_ftr_rt a:active{color:#d14836}#gsc_mp_ccl{max-width:862px;padding:21px 0;margin-left:-8px;}.gs_el_sm #gsc_mp_ccl{padding:16px 0;margin-left:0;}#gsc_mp_nav{position:relative;height:41px;margin:-5px 0 8px 0;}.gs_el_ph #gsc_mp_nav{margin:-16px 0 0 0;}#gsc_mp_nav_left{margin-left:7px;}.gs_el_sm #gsc_mp_nav_left{margin-left:-10px;}#gsc_mp_nav_right{position:absolute;top:0;right:0;}#gsc_mp_nav_right .gs_md_d{left:auto;right:0;}#gsc_mp_desc{word-wrap:break-word;}#gsc_mp_desc:empty{display:none;}.gsc_mp_desc_inner{padding:0 8px 8px 8px;}.gs_el_sm .gsc_mp_desc_inner{padding:0 0 8px 0;}#gsc_mp_disclaimer{margin:21px 0 -21px 0;font-style:italic;text-align:center;}.gs_el_sm #gsc_mp_disclaimer{margin:16px 0 -16px 0;}#gsc_mp_disclaimer:empty{display:none;}.gsc_mp_anchor:link,.gsc_mp_anchor:visited{color:#222;text-decoration:underline;}.gsc_mp_anchor:active{color:#d14836;}.gs_el_tc .gsc_mp_anchor,.gs_el_tc .gsc_mp_anchor_lrge{padding:8px 0 5px 0;}.gsc_mp_table_wrapper{border-right:1px solid #ebebeb;border-left:1px solid #ebebeb;}.gsc_mp_table{width:100%;background-color:#fff;}.gsc_mp_row_highlight{background-color:#ffc;}.gsc_pgn{text-align:right;font-weight:bold;line-height:29px;}.gsc_pgn_ppn{margin:0 8px;}.gsc_mvt_table_wrapper{border-right:1px solid #ebebeb;border-left:1px solid #ebebeb;}.gsc_mvt_table_wrapper.gsc_mvt_lmi{border:none;margin:0;}#gsc_mvt_table{table-layout:fixed;}.gsc_mvt_p,.gsc_mvt_t,.gsc_mvt_n{font-weight:normal;padding:8px;border-bottom:1px solid #ebebeb;text-align:center;vertical-align:middle;}th.gsc_mvt_p,th.gsc_mvt_t,th.gsc_mvt_n{height:48px;box-sizing:border-box;padding:0 8px;}th.gsc_mvt_n{width:82px;word-wrap:break-word;}.gs_el_ph th.gsc_mvt_n{width:56px;padding:0 4px;}.gsc_mvt_t{text-align:left;word-wrap:break-word;}.gs_el_ph .gsc_mvt_p{padding:0;text-align:right;}th.gsc_mvt_p{width:60px;}.gs_el_ph th.gsc_mvt_p{width:32px;}.gsc_mvt_t,th.gsc_mvt_t{padding-left:12px;}.gsc_mvt_lmi .gsc_mvt_p,.gs_el_ta .gsc_mvt_lmi .gsc_mvt_p{text-align:right;padding:0;}.gsc_mvt_lmi th.gsc_mvt_p{width:21px;}.gsc_mphm{display:none;padding:8px 0;}.gsc_mphm_show{display:block;}.gsc_mphm_ha{margin-left:8px;}#gsc_mcn{height:41px;position:relative;}.gsc_mcn_ar{pointer-events:none;vertical-align:-1px;}#gsc_mcn_sb-r{position:static;}#gsc_mcn_sb .gs_md_ul{width:270px;}.gs_el_ta #gsc_mcn_sb .gs_md_ul,.gs_el_ph #gsc_mcn_sb .gs_md_ul{display:block;}#gsc_mcn_sb .gs_md_li{white-space:normal;}.gsc_mcn_lc #gsc_mcn_acb_lbl{max-width:90px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}</style><script>!function(GSP){/*
Copyright The Closure Library Authors.
SPDX-License-Identifier: Apache-2.0
*/
var aa="function"==typeof Object.create?Object.create:function(a){var b=function(){};b.prototype=a;return new b},ba="function"==typeof Object.defineProperties?Object.defineProperty:function(a,b,c){if(a==Array.prototype||a==Object.prototype)return a;a[b]=c.value;return a},ca=function(a){a=["object"==typeof globalThis&&globalThis,a,"object"==typeof window&&window,"object"==typeof self&&self,"object"==typeof global&&global];for(var b=0;b<a.length;++b){var c=a[b];if(c&&c.Math==Math)return c}throw Error("Cannot find global object");
},da=ca(this),l=function(a,b){if(b)a:{var c=da;a=a.split(".");for(var d=0;d<a.length-1;d++){var e=a[d];if(!(e in c))break a;c=c[e]}a=a[a.length-1];d=c[a];b=b(d);b!=d&&null!=b&&ba(c,a,{configurable:!0,writable:!0,value:b})}},ea;if("function"==typeof Object.setPrototypeOf)ea=Object.setPrototypeOf;else{var fa;a:{var ia={a:!0},ja={};try{ja.__proto__=ia;fa=ja.a;break a}catch(a){}fa=!1}ea=fa?function(a,b){a.__proto__=b;if(a.__proto__!==b)throw new TypeError(a+" is not extensible");return a}:null}
var ka=ea,la=function(a,b){a.prototype=aa(b.prototype);a.prototype.constructor=a;if(ka)ka(a,b);else for(var c in b)if("prototype"!=c)if(Object.defineProperties){var d=Object.getOwnPropertyDescriptor(b,c);d&&Object.defineProperty(a,c,d)}else a[c]=b[c];a.pa=b.prototype},ma=function(a){a=Math.trunc(a)||0;0>a&&(a+=this.length);if(!(0>a||a>=this.length))return this[a]};l("Array.prototype.at",function(a){return a?a:ma});var n=function(a){return a?a:ma};l("Int8Array.prototype.at",n);
l("Uint8Array.prototype.at",n);l("Uint8ClampedArray.prototype.at",n);l("Int16Array.prototype.at",n);l("Uint16Array.prototype.at",n);l("Int32Array.prototype.at",n);l("Uint32Array.prototype.at",n);l("Float32Array.prototype.at",n);l("Float64Array.prototype.at",n);l("String.prototype.at",function(a){return a?a:ma});var na=function(a,b){var c=Array.prototype.slice.call(arguments,1);return function(){var d=c.slice();d.push.apply(d,arguments);return a.apply(this,d)}};var t=function(){this.C=this.C;this.I=this.I};t.prototype.C=!1;t.prototype.isDisposed=function(){return this.C};t.prototype.X=function(){this.C||(this.C=!0,this.K())};t.prototype.K=function(){if(this.I)for(;this.I.length;)this.I.shift()()};var oa=function(){};function u(a,b){a.classList.add(b)}function w(a,b){a.classList.remove(b)}function x(a,b){return a.classList?a.classList.contains(b):!1}function y(a,b,c){c=void 0!==c?c:!x(a,b);(c?u:w)(a,b)};function C(a){return 0<=(navigator.userAgent||"").indexOf(a)}var pa=C("iPhone")||C("iPad")||C("iPod"),qa=C("iPhone")||C("Android")&&C("Mobile");function ra(){if(void 0===b){var a=window.screen;a={width:window.innerWidth,height:window.innerHeight,oa:a.width,na:a.height}}else a=b;var b=a;a=b.width;var c=b.height,d=b.oa;b=b.na;var e=4;if(600>a||48E4>d*b||qa)e=1;else if(982>a)e=2;else if(1136>a||590>c)e=3;return e}var sa,ta=/[?&]tc=([01])/.exec(location.search||"");
sa=ta?0<+ta[1]:C("Android")?!0:window.matchMedia&&window.matchMedia("(pointer)").matches?window.matchMedia("(pointer:coarse)").matches:!C("Firefox")||C("Mobile")||C("Tablet")?pa||"ontouchstart"in window||0<(navigator.msMaxTouchPoints||0):!1;function ua(){if(void 0==va){va=!1;try{var a=Object.defineProperty({},"passive",{get:function(){va=!0}});window.addEventListener("testPassive",oa,a);window.removeEventListener("testPassive",oa,a)}catch(b){}}return va}var va;function D(a){return document.getElementById(a)}function E(a){return a.id||(a.id="gs_id"+wa++)}function xa(a){a=(void 0===a?null:a)||document.body;return"rtl"==(a?window.getComputedStyle(a,null):null).direction}function ya(a){var b=[];a=a.elements;for(var c=a.length,d=0;d<c;d++){var e=a[d],f=encodeURIComponent(e.name||""),g=e.type;!f||e.disabled||!("checkbox"!=g&&"radio"!=g||e.checked)||b.push(f+"="+encodeURIComponent(e.value||""))}return b.join("&")}
var wa=100,za=/\S+/g,Aa=/^(?:https?:|[^:/?#]*(?:[/?#]|$))/i,Ba=/^(?:#|\/[a-z0-9_-]*(?:[?].*)?$)/i;function F(a){return a.hasOwnProperty("gs_uid")?a.gs_uid:a.gs_uid=++Ca}var Ca=0;var G=function(){this.o=[];this.G={};this.S=this.F=0};G.prototype.add=function(a){var b=F(a);this.G[b]||(this.o.push(a),this.G[b]=this.o.length,++this.F)};G.prototype.remove=function(a){a=F(a);var b=this.G[a];b&&(this.o[b-1]=null,delete this.G[a],2*--this.F<this.o.length&&!this.S&&Da(this))};G.prototype.notify=function(a){var b=this.o;try{++this.S;for(var c=0;c<b.length;c++){var d=b[c];d&&d.apply(null,arguments)}}finally{!--this.S&&2*this.F<b.length&&Da(this)}};
var Da=function(a){var b=a.o,c=b.length;a=a.G;for(var d=0,e=0;e<c;e++){var f=b[e];f&&(b[d]=f,a[F(f)]=++d)}b.length=d};function H(a,b,c,d,e){Ea(a,b,c,void 0===d?!1:d,void 0===e?!1:e,Fa)}function I(a,b,c,d){Ea(a,b,c,void 0===d?!1:d,!1,Ga)}function Ha(a,b,c,d){function e(g){I(f,a,e,c);b(g)}var f=document;c=void 0===c?!1:c;H(f,a,e,c,void 0===d?!1:d)}function Ia(a){Ja?Ja.add(a):a()}var Ka=window.requestAnimationFrame?function(a){window.requestAnimationFrame(a)}:function(a){setTimeout(a,33)};function La(a){a.stopPropagation();a.preventDefault()}
function Ma(a){return(a.ctrlKey?1:0)|(a.altKey?2:0)|(a.metaKey?4:0)|(a.shiftKey?8:0)}function Fa(a,b,c,d,e){var f=a.addEventListener;e=e&&ua();f.call(a,b,c,e?{passive:e,capture:d}:d)}function Ga(a,b,c,d){a.removeEventListener(b,c,d)}function Ea(a,b,c,d,e,f){if("string"===typeof b)f(a,b,c,d,e);else for(var g=b.length,m=0;m<g;m++)f(a,b[m],c,d,e)}function Na(){Ja.notify();Ja=null}function Oa(){"complete"==document.readyState&&(I(document,"readystatechange",Oa),Na())}
var Ja,Pa=!!document.attachEvent,Qa=document.readyState;if(Pa?"complete"!=Qa:"loading"==Qa)Ja=new G,Pa?H(document,"readystatechange",Oa):Ha("DOMContentLoaded",Na);function Ra(){Ha(["mousedown","touchstart"],function(){y(document.documentElement,"gs_pfcs",!0);H(document,"keydown",Sa,!0)},!0,!0)}function Sa(a){9==a.keyCode&&(y(document.documentElement,"gs_pfcs",!1),I(document,"keydown",Sa,!0),Ra())}Ra();function Ta(a,b,c,d,e){var f=D(a);Ua(f,function(){u(f,"gs_vis");b&&b()},function(){w(f,"gs_vis");c&&c()},d,e)}function Va(a){a=J[a]||[0];return a[a.length-1]}
function Ua(a,b,c,d,e,f){f=void 0===f?"":f;var g=E(a),m=Va(g);if(!m||m<Va(f)){var h=document.activeElement;f=D(f);Wa(Xa(f||a),!0);b&&b();K.push(function(k){J[g].pop();J[g].length||delete J[g];if(!k){(k=e)||h==document.body||(k=h);var p=document.activeElement;if(k)try{k.focus()}catch(z){}else p&&a.contains(p)&&p.blur()}c&&c()});J[g]||(J[g]=[]);J[g].push(K.length);h&&a.contains(h)||setTimeout(function(){var k=d,p=k&&"text"==k.type;if(!k||p&&sa)k=a;try{k.focus(),p&&(k.value=k.value)}catch(z){}},0)}}
function L(a){Wa((Va(a)||1E6)-1,!1)}function Ya(a){a=void 0===a?!1:a;K.pop()(a)}function Wa(a,b){for(b=void 0===b?!1:b;K.length>a;)Ya(b||K.length>a+1)}function Xa(a){for(var b=0;a&&!(b=Va(a.id));)a=a.parentNode;return b}var K=[],J={};H(document,"click",function(a){var b=K.length;b&&!Ma(a)&&b>Xa(a.target)&&Ya(!0)});H(document,"keydown",function(a){27==a.keyCode&&!Ma(a)&&K.length&&Ya()});
H(document,"focus",function(a){var b=K.length;if(b)for(var c=Xa(a.target);c<b;){var d="",e;for(e in J)if(Va(e)==b){d=e;break}a:{d=(D(d).getAttribute("data-wfc")||"").match(za)||[];for(var f=0;f<d.length;f++){var g=D(d[f]);if(g&&g.offsetWidth){d=g;break a}}d=void 0}if(d){La(a);d.focus();break}else Ya(!0),--b}},!0);var Za={},$a={},ab;try{ab=window.sessionStorage}catch(a){};function M(a){return"object"==typeof a?a:null}function bb(){var a=cb(),b=db();b=eb(b);a=fb(a);a=gb(a)||"#";N=M(b);hb?window.history.replaceState(b,"",a):window.location.replace(a)}function gb(a){var b=[],c;for(c in a)b.push(encodeURIComponent(c)+"="+encodeURIComponent(a[c]));return(a=b.sort().join("&"))?"#"+a:""}
function ib(a){var b={};a=a.split("&");for(var c=0;c<a.length;c++){var d=a[c],e=d.indexOf("=");if(e+1){var f=d.substr(0,e);d=d.substr(e+1)}else f=d,d="";f&&(b[decodeURIComponent(f)]=decodeURIComponent(d))}return b}function jb(){var a=window.location.hash,b=a.indexOf("#")+1;return ib(b?a.substr(b):"")}function kb(a,b){for(var c in b){var d=b[c];void 0!==d?a[c]=d:delete a[c]}}function fb(a){var b=jb();kb(b,a);return b}
function eb(a){var b=N||M(window.history.state),c={},d;for(d in b)c[d]=b[d];kb(c,a);return c}function lb(){setTimeout(function(){if(!mb){var a=window.history.state;mb=!0;N=M(a);nb.notify()}ob=!1},0)}var nb=new G,N,mb=!1,ob=!0,hb="pushState"in window.history,pb;
if("undefined"==typeof GSP)pb=!1;else{var qb=.001*Date.now(),rb=GSP.eventId,sb=!1,O,tb=ab;if(!("nh"in Za)){var ub=tb&&tb.getItem("nh"),vb;if(ub)try{vb=JSON.parse(ub)}catch(a){}$a.nh=vb}O=$a.nh;O instanceof Array||(O=[]);for(var wb=O.length,xb=0,yb=0;yb<wb;yb++){var zb=O[yb];if(zb instanceof Array&&2==zb.length){var Ab=zb[1]==rb;sb=sb||Ab;10>=wb-yb&&+zb[0]>qb-86400&&!Ab&&(O[xb++]=zb)}}O.length=xb;O.push([qb,rb]);var Bb=O,Cb=ab;$a.nh=Bb;try{Cb&&Cb.setItem("nh",JSON.stringify(Bb))}catch(a){}pb=sb}
var Db=pb;"onpageshow"in window?H(window,"pageshow",lb):Ia(lb);H(window,hb?"popstate":"hashchange",function(a){"loading"!=document.readyState&&(a=a.state,mb=!0,N=M(a),nb.notify())});function Eb(){Fb&&(I(D("gs_alrt_l"),"click",Fb),Fb=void 0)}function Gb(){var a=Hb();u(a,"gs_anm");u(a,"gs_vis");H(document,"click",Ib);clearTimeout(Jb);Jb=setTimeout(Ib,4E3);++Kb;setTimeout(Lb,0)}function Ib(){Kb||(I(document,"click",Ib),clearTimeout(Jb),Jb=void 0,Eb(),w(Hb(),"gs_vis"))}function Hb(){return D("gs_alrt")}function Lb(){Kb=0}var Jb,Kb=0,Fb;Ia(function(){var a=D("gs_alrt_m");a&&(a.innerHTML&&!Db&&Gb(),H(window,"pagehide",function(){Kb=0;Ib();w(Hb(),"gs_anm")}))});function Mb(a,b,c){var d=new XMLHttpRequest;d.onreadystatechange=function(){if(4==d.readyState){var e=d.status,f=d.responseText,g=d.getResponseHeader("Content-Type"),m=d.responseURL,h=window.location,k=h.protocol;h="//"+h.host+"/";m&&m.indexOf(k+h)&&m.indexOf("https:"+h)&&(e=0,g=f="");c(e,f,g||"")}};d.open(b?"POST":"GET",a,!0);d.setRequestHeader("X-Requested-With","XHR");b&&d.setRequestHeader("Content-Type","application/x-www-form-urlencoded");b?d.send(b):d.send();return d}
function Nb(a){a&&(a.onreadystatechange=function(){},a.abort())};var Ob=function(a,b,c){this.type=a;this.currentTarget=this.target=b;this.j=void 0===c?null:c;this.U=!1};Ob.prototype.stopPropagation=function(){this.j&&this.j.stopPropagation();this.U=!0};var P=function(a){a.j&&La(a.j);a.U=!0};var R=function(a,b){this.V=a;this.ma=b},Pb=function(a,b,c){this.V=a;this.types=b;this.listener=c};function Qb(a,b){var c=b.length;if(c){var d=F(a),e=Rb[d];if(!e){e=Rb[d]=[];d=Sb(b[0].V);for(var f in d){var g=Tb[f];g||(g=Tb[f]=Object.create(null));for(var m in d[f]){var h=g[m];h||(h=g[m]=[]);h.push(a)}}Ub(a,e,b[0],Vb);for(f=1;f<c;f++)Ub(a,e,b[f],Wb)}}}function S(a,b,c){Xb(new Ob(a,b,void 0===c?null:c))}
function T(a,b,c){var d=Yb;"string"===typeof b&&(Zb[0]=b,b=Zb);var e=b.length;a=Sb(a);for(var f in a)for(var g in a[f])for(var m=0;m<e;m++)d(f,g,b[m],c)}function Sb(a){"string"===typeof a&&($b[0]=a,a=$b);for(var b=a.length,c=Object.create(null),d=0;d<b;d++){var e=a[d],f=e.charAt(0),g=e.substr(1);if("#"!=f&&"."!=f||!g)throw Error("bad selector: "+e);(e=c[f])||(e=c[f]=Object.create(null));e[g]=!0}return c}
function Yb(a,b,c,d){var e=ac[c];e||("touchstart"!=c&&"mouseover"!=c&&"mouseout"!=c&&H(document,c,bc,"focus"==c||"blur"==c),e=ac[c]=Object.create(null));(c=e[a])||(c=e[a]=Object.create(null));(a=c[b])||(a=c[b]=new G);a.add(d)}function bc(a){var b=a.target;b&&3==b.nodeType&&(b=b.parentNode);Xb(new Ob(a.type,b,a))}
function Xb(a){for(var b=a.target;b&&b!=document&&!b.disabled&&!x(b,"gs_dis");){a.currentTarget=b;var c=b.id;if(c&&!cc("#",c,a))break;c=b.classList||[];for(var d=c.length,e=0;e<d;e++)if(!cc(".",c[e],a))return;b=b.parentNode}}function cc(a,b,c){var d=ac[c.type];(b=(a=d&&d[a])&&a[b])&&b.notify(c);return!c.U}function Ub(a,b,c,d){var e=c.V;c=c.ma;for(var f in c){var g=na(d,a,c[f]);T(e,f,g);b.push(new Pb(e,f,g))}}function Vb(a,b,c){var d=c.currentTarget;a=dc(a,d)||a;a=ec(a,d);b.call(a,c)}
function Wb(a,b,c){a:{for(var d=c.currentTarget;d&&d!=document;){var e=dc(a,d);if(e){a=ec(e,d);break a}d=d.parentNode}a=void 0}a&&b.call(a,c)}function ec(a,b){var c=fc(b),d=gc[c];d||(d=gc[c]=[]);for(var e=d.length,f=0;f<e;f++){var g=d[f];if(g instanceof a)return g}b=new a(b);d.push(b);a=F(a);(d=hc[a])||(d=hc[a]=[]);d.push(c);return b}function dc(a,b){var c,d=b.id;d&&(c=ic(a,c,"#",d));b=b.classList||[];d=b.length;for(var e=0;e<d;e++)c=ic(a,c,".",b[e]);return c}
function ic(a,b,c,d){c=(d=(c=Tb[c])&&c[d])?d.length:0;for(var e=0;e<c;e++){var f=d[e];!(f===a||f.prototype instanceof a)||b&&!(f===b||f.prototype instanceof b)||(b=f)}return b}function fc(a){var b=a.getAttribute("data-duid");b||a.setAttribute("data-duid",b=""+jc++);return b}var ac=Object.create(null),$b=[""],Zb=[""],Tb=Object.create(null),Rb=Object.create(null),hc=Object.create(null),gc=Object.create(null),jc=100;window.gs_evt_dsp=bc;function kc(){var a=".gs_md_li";if("string"===typeof a){var b=a.charAt(0),c=a.slice(1);if("#"==b)a=function(d){return d.id==c&&0<d.offsetWidth};else if("."==b)a=function(d){return x(d,c)&&0<d.offsetWidth};else throw Error("bad selector: "+a);}return a}function lc(a,b){return a&&((void 0===b?0:b)?a.lastElementChild:a.firstElementChild)}function mc(a,b){return a&&((void 0===b?0:b)?a.previousElementSibling:a.nextElementSibling)}function nc(a,b,c){c=void 0===c?!1:c;return oc(a,b,kc(),c,!1)}
function oc(a,b,c,d,e){for(var f;b&&a;){if(c(b)){if(e)return b}else for(f=lc(b,d);f;f=mc(f,d))if(e=oc(f,f,c,d,!0))return e;for(e=!0;;){if(b==a)return null;f=b.parentNode;if(b=mc(b,d))break;b=f}}return null};var pc=["false","true","mixed"];var U=function(){this.D=Object.create(null)};U.prototype.clear=function(){this.D=Object.create(null)};U.prototype.has=function(a){return a in this.D};U.prototype.get=function(a){return this.D[a]};U.prototype.set=function(a,b){this.has(a);this.D[a]=b};U.prototype.delete=function(a){this.has(a)&&delete this.D[a]};var qc=function(a){var b=window,c=this;this.o=new G;this.Z=0;this.W=[b,a,function(){c.Z++||Ka(d)},!1];var d=function(){c.Z=0;c.o.notify()}};qc.prototype.addListener=function(a){this.o.F||H.apply(null,this.W);this.o.add(a)};qc.prototype.removeListener=function(a){this.o.remove(a);this.o.F||I.apply(null,this.W)};var rc=new qc("scroll"),sc=new qc("resize");var tc=new G;function uc(){var a=document.documentElement,b=ra();b={gs_el_ph:1==b,gs_el_ta:2==b,gs_el_sm:4!=b,gs_el_tc:sa||1==b};var c;for(c in b){var d=b[c];if(x(a,c)!=d){var e=!0;y(a,c,d)}}e&&tc.notify()}y(document.documentElement,"gs_el_ios",pa);uc();sc.addListener(uc);H(window,["pageshow","load"],uc);var vc=function(a,b,c,d,e,f){this.g=a;this.B=b;this.v=c;this.A=d;this.T=e;this.s=f;this.m=null},wc=function(a,b){a.m=b},xc=function(){this.l=[];this.i=-1};xc.prototype.push=function(a){++this.i;this.i==this.l.length?this.l.push(a):(this.l[this.i]=a,this.l.splice(this.i+1,this.l.length-this.i))};xc.prototype.pop=function(){--this.i};var Ac=function(a){for(var b=W;b.i>a;)L(b.top().g)},Bc=function(a,b){for(var c=0;c<a.l.length&&!(a.l[c].s>=b);++c);return c};xc.prototype.top=function(){return this.at(this.i)};
xc.prototype.at=function(a){return this.l[a]||null};function Cc(a,b){var c=a==W.i;W.i=a;b&&!N&&!M(window.history.state)&&bb();c||Dc()}function Ec(a){var b=void 0===b?"":b;var c=void 0===c?"":c;var d=void 0===d?"":d;var e=W.top();e&&a==e.g&&b==e.B&&c==e.v||(W.push(new vc(a,b,c,d,e&&e.g==a?e.T+1:1,Date.now())),b=cb(),a=db(),a=eb(a),b=fb(b),b=gb(b)||"#",N=M(a),hb?window.history.pushState(a,"",b):window.location.assign(b),Dc())}
function Fc(a){a=Gc(D(a));return!!a&&x(a,"gs_md_wmw")&&x(document.documentElement,"gs_el_ph")}function Hc(){var a=D("gs_top"),b=document.documentElement;a=a.scrollHeight>b.clientHeight;for(var c=!1,d=0;d<=W.i&&!c;++d)c=!Fc(W.at(d).g);y(D("gs_md_s"),"gs_vis",c);c=W.i;1<=c&&(c=W.at(c-1).g,d=Fc(c),y(D(c),"gs_md_ins_vis",!d));b.style.overflowY=a&&!Fc(W.top().g)?"scroll":""}
function Dc(){function a(){var v=c.clientHeight,q=+A.getAttribute("data-h");q||(g.style.maxHeight="none",q=f.offsetHeight);var r=f.querySelector(".gs_md_ftr");q=Math.max((v-q)/2,10);v=Math.max(v-48-(r?r.offsetHeight:0)-2*q,10);r=Fc(e);f.style.top=r?"auto":q+"px";g.style.maxHeight=r?"none":v+"px";Ic(g)}var b=W.top(),c=document.documentElement,d=D("gs_top"),e=b.g,f=D(e),g=D(e+"-bdy"),m=1200+W.i,h=D(f.getAttribute("data-cid")||f.id+"-bdy")||f,k=b.A,p=b.v,z=b.B,B=D("gs_md_s"),V=D(e).getAttribute("data-shd")||
"",A=Gc(f),Q=window.pageYOffset,yc=z&&"#"!=z[0]&&!k,zc=0<W.i?W.at(W.i-1).g:"",ha=!!J[e];yc?(ha?y(h,"gs_md_ldg",!0):Jc(f,h,'<div class="gs_md_prg">'+D("gs_md_ldg").innerHTML+"</div>",b),S("gs-md-ldin",h)):(k&&Jc(f,h,k,b),S("gs-md-lded",h));ha&&e==zc||Ua(f,function(){(A||f).style.zIndex=m;Kc(V);if(!ha){A&&u(A,"gs_vis");u(f,"gs_vis");y(f,"gs_abt",ob);y(B,"gs_abt",ob);Lc(e);if(0==W.i){var v=Hc;tc.add(v);v()}else Hc();A&&g&&(a(),sc.addListener(a))}0==W.i&&(u(d,"gs_nscl"),d.style.top=-Q+"px")},function(){ha||
(sc.removeListener(a),A&&w(A,"gs_vis"),w(f,"gs_vis"),w(f,"gs_abt"));for(var v=W.top()?W.top().T:0;W.top()&&W.top().g==e;){var q=W.top();Nb(q.m);q.m=null;W.pop()}if(W.top()){if(q=W.top().g,Kc(D(q).getAttribute("data-shd")||""),w(D(q),"gs_md_ins_vis"),ha){a:{q=W;for(var r=q.i;0<=r;r--)if(q.l[r].g==e){q=r;break a}q=-1}r=W.at(q);(A||f).style.zIndex=1200+q;Jc(f,h,r.A,r)}}else w(B,"gs_vis"),w(B,"gs_abt");-1==W.i?(tc.remove(Hc),c.style.overflowY="",w(d,"gs_nscl"),d.style.top="auto",window.scrollTo(0,Q)):
Hc();Mc||(0<v?window.history.go(-v):bb())},Nc(f),Oc(f),zc);yc&&(Nb(b.m),b.m=null,wc(b,Mb(z,p,function(v,q,r){b.m=null;r=(v=200==v&&r.match(/^text\/html(;.*)?$/i))?q:Pc();Jc(f,h,r,b);if(v)for(v=0;v<W.l.length;++v)r=W.at(v),e==r.g&&z==r.B&&p==r.v&&(r.A=q,v==W.i&&bb());S("gs-md-lded",h)})))}function Gc(a){a=a.parentNode;return x(a,"gs_md_wnw")?a:null}function Nc(a){return(a=a.getAttribute("data-ifc"))?D(a):null}function Oc(a){return(a=a.getAttribute("data-cfc"))?D(a):null}
function Jc(a,b,c,d){y(b,"gs_md_ldg",!1);for(var e=b.querySelectorAll("[data-duid]"),f=e.length,g={},m=0;m<f;m++){for(var h=fc(e[m]),k=gc[h],p=k?k.length:0,z=0;z<p;z++){var B=k[z],V=F(B.constructor),A=g[V];A||(A=g[V]={});A[h]=!0;B&&"function"==typeof B.X&&B.X()}delete gc[h]}for(var Q in g){Q=+Q;e=g[Q];m=(f=hc[Q])?f.length:0;for(k=h=0;k<m;k++)p=f[k],p in e||(f[h++]=p);h?f.length=h:delete hc[Q]}b.innerHTML=c;d.A=c;Lc(a.id);Nb(d.m);d.m=null}
function Lc(a){if(a=document.querySelector("#"+a+">.gs_md_bdy"))a.scrollTop=a.scrollLeft=0,Ic(a)}function Ic(a){var b=a.style,c="padding"+(xa(a)?"Left":"Right");b[c]="";var d=a.offsetWidth-a.clientWidth;2<d&&(a=parseInt(window.getComputedStyle(a,null)[c],10)||0,b[c]=Math.max(a-d,0)+"px")}function Pc(){return'<div class="gs_md_prg"><div class="gs_alrt">'+D("gs_md_err").innerHTML+"</div></div>"}
function cb(){var a=W.top();return{d:a&&a.g||void 0,u:a&&a.B||void 0,p:a&&a.v?"1":void 0,t:a&&a.s||void 0}}function db(){var a=W.top();return{n:a&&a.T||0,p:a&&a.v||"",h:a&&a.A||""}}function Kc(a){if(Qc!=a){var b=D("gs_md_s");Qc&&w(b,Qc);(Qc=a)&&u(b,a)}}var Mc=0,Qc="",W=new xc;
nb.add(function(){var a=jb(),b=a.d||"",c=b?D(b):null;++Mc;if(c){var d=a.u||"";c=0<+a.p;var e=+a.t||0,f=N||M(window.history.state)||{};a=+f.n||0;var g=""+(f.p||"");f=""+(f.h||"");d.match(Ba)||(d="");for(var m=Bc(W,e),h=m;h<W.l.length;++h){var k=W.at(h);if(e<k.s&&k.g!=b)break}for(k=m-1;0<=k;--k){var p=W.at(k);if(e>p.s&&p.g!=b)break}Ac(h-1);for(h=0;h<=k;++h)p=W.at(h).g,J[p]||Cc(k,!1);if(k=m<W.l.length)k=W.at(m),k=b==k.g&&d==k.B&&c==!!k.v&&e==k.s;k?Cc(m,!0):(0==a&&(Ac(-1),W=new xc,e=Date.now()),c!=!!g&&
(d=g="",f=Pc()),b=new vc(b,d,g,f,a,e),c=W,e=b.s,a=Bc(c,e),e=a<c.l.length&&e==c.at(a).s,c.l.splice(a,e?1:0,b),W.i=a,bb(),Dc())}else Ac(-1);--Mc});var Rc=function(a){t.call(this);this.H=a;this.R=Object.create(null);this.m=null;a=a.querySelectorAll(".gs_in_txtw>input[type=text]");for(var b=a.length;b--;){var c=a[b],d=c.parentNode.querySelector(".gs_in_txts");c=c.name;d&&c&&(this.R[c]=d.innerHTML)}};la(Rc,t);Rc.prototype.K=function(){Nb(this.m);this.H=this.m=null;t.prototype.K.call(this)};
Rc.prototype.ia=function(a){var b=this;P(a);if((a=this.H)&&!this.m){var c="json=&"+ya(a);Sc(this,!0);this.m=Mb(a.action,c,function(d,e){b.m=null;Sc(b,!1);var f=b.H,g=f.getAttribute("data-alrt");if(g=g?D(g):null)g.innerHTML="";try{var m=200==d&&JSON.parse(e)}catch(A){}d=!1;m&&"object"==typeof m||(Tc(g,D("gs_md_err").innerHTML),m={},d=!0);f.setAttribute("data-p",""+(m.P||""));S("gs-ajax-form-done",f);if(e=m.L){var h=""+e;h.match(Aa)&&(window.location.href=h)}else{if(e=m.M)Tc(g,e),d=!0;e=1E6;g&&g.innerHTML&&
(h=g,e=g.getBoundingClientRect().top);g=f.elements;m=m.E;"object"==typeof m||(m=Object.create(null));for(var k in b.R){var p=g[k],z=void 0,B=""+(m[k]||""),V=p.parentNode.querySelector(".gs_in_txts");y(p.parentNode,"gs_in_txte",!!B);V&&(V.innerHTML=B||b.R[k]||"");B&&(z=p.getBoundingClientRect().top)<e&&(h=p,e=z);d=d||!!B}(f=f.getAttribute("data-d"))&&!d&&L(f);h&&h.scrollIntoView&&(0>e||e+20>window.innerHeight)&&h.scrollIntoView()}})}};
var Sc=function(a,b){a=a.H;var c=a.getAttribute("data-bsel");a=c?document.querySelectorAll(c):a.querySelectorAll("button");for(c=a.length;c--;){var d=a[c];d.disabled=b;y(d,"gs_bsp",b)}},Tc=function(a,b){if(a)a.innerHTML=b;else{var c=void 0===c?"":c;var d=void 0===d?"":d;var e=void 0===e?[]:e;D("gs_alrt_m").innerHTML=b;Hb().action=d.match(Aa)?d:"";a=D("gs_alrt_l");a.textContent=c;c=D("gs_alrt_h");c.innerHTML="";for(var f in e)b=document.createElement("input"),b.type="hidden",b.name=f,b.value=e[f],
c.appendChild(b);Eb();y(a,"gs_fm_s",!0);Gb()}};Qb(Rc,[new R(".gs_ajax_frm",{submit:Rc.prototype.ia})]);var Uc=[[1,0,1],[2,0,1]];T(".gs_cb_gen","click",function(a){var b=a.currentTarget,c=!!x(b,"gs_sel")+2*!!x(b,"gs_par"),d=2==+b.getAttribute("data-s");c=Uc[+d][c];d=!0;d=void 0===d?!1:d;y(b,"gs_sel",1==c);y(b,"gs_par",2==c);b.setAttribute("aria-checked",pc[c]);d||b.setAttribute("data-s",""+c);S("gs-change",b,a.j)});T(".gs_cb_gen",["keydown","keyup"],function(a){var b=a.currentTarget,c=a.j.keyCode;"BUTTON"!=b.tagName||13!=c&&32!=c||(P(a),"keydown"==a.type&&b.click())});T([".gs_cb_gen",".gs_md_li"],"keydown",function(a){var b=a.currentTarget,c=b.tagName,d=a.j.keyCode;"BUTTON"!=c&&(32==d||13==d&&"A"!=c)&&(P(a),b.click())});var Vc=["click","contextmenu","mouseup"].concat(navigator.sendBeacon?[]:["mousedown","touchstart"]),Wc="",Xc=null;function Yc(){Xc=null}function Zc(a){navigator.sendBeacon?navigator.sendBeacon(a):Xc&&a==Xc.src||((Xc=new Image).src=a,setTimeout(Yc,1E3))}
function $c(){var a=document.location.href,b=a.indexOf("?")+1;a=b?a.substr(b):"";b=a.indexOf("#");a=ib(b+1?a.substr(0,b):a).hl||"";a="/scholar_bfnav?url="+encodeURIComponent(document.location.href)+"&hl="+encodeURIComponent(a)+"&ei="+GSP.eventId;Zc(a)}Ia(function(){Wc=Db?"&bn=1":"";Db&&$c()});H(window,"pageshow",function(a){a.persisted&&(Wc="&bn=1",$c())});
H(document,Vc,function(a){if(!("click"==a.type&&a.button||"mouseup"==a.type&&1!=a.button)){var b,c;a:{for(a=a.target;a;){var d=a.nodeName;if("A"==d)break a;if("SPAN"==d||"B"==d||"I"==d||"EM"==d||"IMG"==d)a=a.parentNode;else break}a=null}a&&(b=a.getAttribute("href"))&&(c=a.getAttribute("data-clk"))&&(b="/scholar_url?url="+encodeURIComponent(b)+"&"+c+"&ws="+window.innerWidth+"x"+window.innerHeight+"&at=",c=encodeURIComponent,a=(a=a.getAttribute("data-clk-atid"))&&D(a),b=b+c(a&&a.innerText||"")+Wc,Zc(b))}},
!1,!0);T(".gs_fm_s","click",function(a){a=a.currentTarget.getAttribute("data-fm")||"";(a=D(a))&&a.submit()});var X=function(a){this.g=E(a.querySelector(".gs_md_d"));this.J=E(a.querySelector(".gs_md_tb"))};X.prototype.N=function(a){var b=D(this.g);return void 0!==a?nc(b,b,a):null};X.prototype.open=function(a){a=this.N(a);if(x(D(this.J),"gs_sel"))try{a&&a.focus()}catch(c){}else{var b=D(this.J);Ta(this.g,function(){u(b,"gs_sel")},function(){w(b,"gs_sel")},a,b)}};X.prototype.close=function(){L(this.g)};X.prototype.ba=function(a){P(a);x(D(this.J),"gs_sel")?this.close():this.open("keydown"==a.j.type?!1:void 0)};
X.prototype.Y=function(a){var b=a.j.keyCode;if(38==b||40==b)P(a),this.open(38==b)};X.prototype.da=function(a){a.target.id==this.g&&this.Y(a)};Qb(X,[new R(".gs_md_rmb",{}),new R(".gs_md_tb",{"gs-press":X.prototype.ba,keydown:X.prototype.Y}),new R(".gs_md_d",{keydown:X.prototype.da})]);var Y=function(a){X.call(this,a);this.ka=E(a.querySelector(".gs_md_in"));this.la=E(a.querySelector(".gs_md_tb .gs_lbl"))};la(Y,X);Y.prototype.N=function(){return D(this.g).querySelector(".gs_md_li[aria-selected]")};Y.prototype.ea=function(a){ad(this,a)};Y.prototype.O=function(a){var b=a.j.keyCode;13!=b&&32!=b||ad(this,a)};
var ad=function(a,b){var c=b.currentTarget,d=D(a.ka),e=a.N();c!=e&&(d.value=c.getAttribute("data-v"),D(a.la).innerHTML=c.innerHTML,e&&bd(e,!1),bd(c,!0));P(b);a.close();S("gs-change",d,b.j)},bd=function(a,b){y(a,"gs_sel",b);b?a.setAttribute("aria-selected","true"):a.removeAttribute("aria-selected")};Qb(Y,[new R(".gs_md_ris",{}),new R(".gs_md_li",{click:Y.prototype.ea,keydown:Y.prototype.O})]);T("#gs_lp","click",function(a){P(a);Ec("gs_lp_d")});T("#gs_lp_cur","click",function(a){P(a);L("gs_lp_d")});var cd=function(a){this.aa=E(a)};cd.prototype.O=function(a){var b=a.currentTarget,c=a.j.keyCode;if(38==c||40==c){var d=D(this.aa);d=nc(d,b,38==c)||nc(d,d,38==c)}else if(37==c||39==c)a:{c=!!(37==c^xa(b.parentNode));d=b.parentNode;var e=d.children,f=e.length;if(d.id!=this.aa){for(;e[--f]!=b;);d=mc(d,c)||lc(d.parentNode,c);e=d.children;if(f=Math.min(f+1,e.length))if(d=e[f-1],x(d,"gs_md_li")&&d.offsetLeft!=b.offsetLeft)break a}d=void 0}d&&(P(a),d.focus())};
Qb(cd,[new R(".gs_md_ulr",{}),new R(".gs_md_li",{keydown:cd.prototype.O})]);T("#gs_hdr_mnu","click",function(a){P(a);Ec("gs_hdr_drw")});T("#gs_hdr_drw_mnu","click",function(a){P(a);L("gs_hdr_drw")});T("#gs_hdr_act_i","click",function(a){P(a);1==ra()?(a=document.querySelector("#gs_hdr_drw_bot>a").href,a.match(Aa)&&(window.location.href=a)):Ta("gs_hdr_act_d")});T("#gs_hdr_drw","keydown",function(a){var b=a.j.keyCode;if(38==b||40==b){var c=a.currentTarget;if(b=nc(c,c,38==b))P(a),b.focus()}});
T("#gs_hdr_tsi",["focus","blur"],function(a){function b(){var g=d.getBoundingClientRect().top-10;10<Math.abs(g)&&window.scrollBy(0,g);clearTimeout(e);c()}function c(){I(window,f,b)}var d=a.target;a="focus"==a.type;y(D("gs_hdr"),"gs_hdr_ifc",a);if(a&&sa&&!(749<window.innerHeight)){var e=setTimeout(c,1E3),f=["scroll","resize"];H(window,f,b)}});T("#gs_hdr_tsi",["input","gs-change"],function(a){y(D("gs_hdr_frm"),"gs_hdr_tsc",!!a.currentTarget.value)});
T("#gs_hdr_tsc","mousedown",function(a){P(a);var b=D("gs_hdr_tsi");b.value="";b.focus();S("input",b,a.j)});T("#gs_hdr_sre","click",function(a){P(a);var b=D("gs_hdr");Ta("gs_hdr_frm",function(){w(b,"gs_hdr_src");u(b,"gs_hdr_srx")},function(){u(b,"gs_hdr_src");w(b,"gs_hdr_srx")},D("gs_hdr_tsi"))});T(".gs_md_x","click",function(a){(a=a.currentTarget.getAttribute("data-mdx"))&&L(a)});var Z=function(){},dd,ed;Z.prototype.ca=function(a){a.j.button||(P(a),fd(a))};Z.prototype.fa=function(a){gd(a)&&(P(a),fd(a))};Z.prototype.ga=function(a){gd(a)&&P(a)};Z.prototype.ha=function(a){if(!a.j.button){P(a);var b=a.j;b&&(hd=b.clientX||0,id=b.clientY||0,H(document,jd,kd,!0),clearTimeout(dd),dd=setTimeout(ld,2E3));fd(a)}};Z.prototype.ja=function(a){P(a);if(md){var b=a.j;if(b=(b=b&&b.touches)&&1==b.length&&b[0])nd=b.clientX,od=b.clientY,H(document,pd,qd,!0),clearTimeout(ed),ed=setTimeout(rd,2E3)}fd(a)};
var gd=function(a){a=a.j.keyCode;return 32==a||13==a},fd=function(a){S("gs-press",a.currentTarget,a.j)},ld=function(){I(document,jd,kd,!0);clearTimeout(dd);dd=void 0},kd=function(a){"mousedown"!=a.type&&10>Math.abs(a.clientX-hd)&&10>Math.abs(a.clientY-id)?(La(a),"click"==a.type&&ld()):ld()},rd=function(){I(document,pd,qd,!0);clearTimeout(ed);ed=void 0},qd=function(a){"touchstart"!=a.type&&10>Math.abs(a.clientX-nd)&&10>Math.abs(a.clientY-od)?(La(a),"click"==a.type&&rd()):rd()},hd=0,id=0,jd=["mousedown",
"mouseup","click"],md=C("Android")&&!C("Chrome"),nd=0,od=0,pd=["touchstart","mousedown","mouseup","click"];Qb(Z,[new R(".gs_press",{click:Z.prototype.ca,keydown:Z.prototype.fa,keyup:Z.prototype.ga,mousedown:Z.prototype.ha,touchstart:Z.prototype.ja})]);function sd(a){td.style.left=ud&&vd===wd?a.left+"px":"auto";td.style.width=ud?a.width+"px":"auto";S("gs-sth-change",D("gs_sth"))}function xd(){var a=yd.getBoundingClientRect(),b=a.top,c=td.offsetHeight,d=0>b,e;if(e=d&&pa)e=document.activeElement,e=!!e&&"INPUT"==e.tagName&&"text"==e.type;b=e?-b-a.height:wd;var f=ud!=d||vd!==wd!=e;b!==vd&&(vd=b,td.style.transform=b===wd?"none":"translate3d(0,"+b+"px,0)");f&&(ud=d,y(zd,"gs_sth_vis",d),y(zd,"gs_sth_trk",e),sd(a),yd.style.height=ud?c+"px":"auto")}
function Ad(){ud&&sd(yd.getBoundingClientRect())}var wd,zd,yd,td,ud=!1,vd;Ia(function(){if(zd=D("gs_sth"))yd=zd.querySelector(".gs_sth_g"),td=zd.querySelector(".gs_sth_b"),rc.addListener(xd),sc.addListener(Ad),xd()});new U;new U;T(".gsc_mp_tgh","click",function(a){a=a.currentTarget.getAttribute("data-tg")||"";for(var b=document.querySelectorAll(".gsc_mphm"),c=b.length;c--;){var d=b[c];y(d,"gsc_mphm_show",d.id==a?void 0:!1)}});
}({"customAC":0,"eventId":"q-4vY--SLfXLsQKw74XQBQ"});</script></head><body><div id="gs_top" onclick=""><style>#gs_md_s,.gs_md_wnw{z-index:1200;position:fixed;top:0;left:0;width:100%;height:100%;visibility:hidden;}.gs_md_ds:before{content:'';position:absolute;background-color:#fff;z-index:100;opacity:0;visibility:hidden;top:0;bottom:0;right:0;left:0;}.gs_md_ds.gs_md_d:not(.gs_el_ph .gs_md_wmw):before{top:-1px;bottom:-1px;right:-1px;left:-1px;}#gs_md_s{background-color:#fff;opacity:0;}.gs_el_ta #gs_md_s,.gs_el_ph #gs_md_s,.gs_el_ta .gs_md_ds:before,.gs_el_ph .gs_md_ds:before{background-color:#666;}#gs_md_s.gs_vis,.gs_md_ds.gs_md_ins_vis:before{opacity:.5;visibility:visible;}.gs_md_wnw{transition:all 0s .218s;}.gs_md_wnw.gs_vis{visibility:visible;transition:all 0s;}.gs_el_tc .gs_md_ds:before{transition:opacity .15s,visibility 0s .15s;}.gs_el_tc .gs_md_ds.gs_md_ins_vis:before{transition:opacity .218s,visibility 0s;}.gs_md_wnw>.gs_md_d{position:relative;margin:0 auto;width:464px;box-shadow:2px 2px 8px rgba(0,0,0,.2);white-space:normal;}.gs_el_ta .gs_md_wnw>.gs_md_d,.gs_el_ph .gs_md_wnw>.gs_md_d{box-shadow:2px 2px 8px rgba(0,0,0,.65);}.gs_el_ph .gs_md_wnw>.gs_md_d{width:80%;max-width:440px;}.gs_el_ph .gs_md_wmw>.gs_md_d{display:flex;flex-direction:column;width:100%;height:100%;max-width:none;border:none;box-shadow:none;transform:translate(0,100%);transform:translate(0,100vh);transition:transform .27s cubic-bezier(.4,0,.6,1),opacity 0s .27s,visibility 0s .27s,max-height 0s .27s;}.gs_el_ph .gs_md_wmw>.gs_md_d.gs_vis{transform:translate(0,0);transition:transform .3s cubic-bezier(0,0,.2,1);}.gs_md_wmw>.gs_md_d.gs_abt,.gs_el_ph .gs_md_wmw>.gs_md_d.gs_abt{transition:none;}.gs_md_hdr{display:flex;align-items:center;height:47px;border-bottom:1px solid #e0e0e0;border-bottom-color:rgba(0,0,0,.12);background-color:#f5f5f5;}.gs_md_hdr>a,.gs_md_hdr>a.gs_btn_lrge{flex:0 0 auto;width:41px;height:47px;}.gs_el_ph .gs_md_hdr>a{margin:0 2px 0 0;}.gs_el_ph a.gs_md_hdr_c{margin:0 0 0 2px;}.gs_md_hdr_b{margin:0 41px 0 16px;}.gs_el_ph .gs_md_hdr_b{margin:0 16px;}.gs_md_hdr_t:empty~.gs_md_hdr_b{margin-left:0;}.gs_md_hdr_b:empty{width:41px;margin:0;}.gs_el_ph .gs_md_hdr_b:empty{margin-right:2px;}.gs_md_hdr_b:empty:not(:last-child){display:none;}.gs_md_hdr_b>button{min-width:51px;height:33px;}.gs_md_hdr_t{flex:1 1 auto;font-size:18px;font-weight:normal;color:#666;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;text-align:center;}.gs_md_bdy{position:relative;overflow-y:auto;box-sizing:border-box;padding:24px 41px 0 41px;}.gs_md_bdy:after{display:block;content:"";clear:both;padding-bottom:24px;}.gs_el_ph .gs_md_bdy{padding:16px 16px 0 16px;}.gs_el_ph .gs_md_bdy:after{padding-bottom:16px;}.gs_el_ph .gs_md_wmw .gs_md_bdy{flex:1;}.gs_md_ftr{border-top:1px solid #e0e0e0;}.gs_md_lbl{display:block;font-size:16px;margin:0 0 16px 0;word-wrap:break-word;}.gs_md_btns{margin:24px 0 0 0;white-space:nowrap;}.gs_el_ph .gs_md_btns{margin:16px 0 0 0;}.gs_md_btns button{margin-right:16px;}.gs_md_btns button:last-child{margin-right:0;}.gs_md_prg{margin:24px 0;text-align:center;}.gs_md_prg .gs_alrt{padding:4px 16px;}.gs_md_ldg:before{content:"";position:absolute;top:0;left:0;bottom:0;right:0;background-color:#fff;opacity:.5;z-index:100;}</style><div id="gs_md_ldg" style="display:none">Loading...</div><div id="gs_md_err" style="display:none">The system can't perform the operation now. Try again later.</div><div id="gs_md_s"></div><!--[if lte IE 9]><div class="gs_alrt" style="padding:16px"><div>Sorry, some features may not work in this version of Internet Explorer.</div><div>Please use <a href="//www.google.com/chrome/">Google Chrome</a> or <a href="//www.mozilla.com/firefox/">Mozilla Firefox</a> for the best experience.</div></div><![endif]--><div class="gs_md_ulr gs_md_ds" data-cfc="gs_hdr_mnu" data-shd="gs_hdr_drs" data-wfc="gs_hdr_drw_mnu" id="gs_hdr_drw" role="dialog" tabindex="-1"><div id="gs_hdr_drw_in"><div id="gs_hdr_drw_top"><a aria-controls="gs_hdr_drw" aria-label="Options" class="gs_btnMNT gs_in_ib gs_btn_lrge" href="javascript:void(0)" id="gs_hdr_drw_mnu" role="button"><span class="gs_ico"></span><span class="gs_ia_notf"></span><span class="gs_lbl"></span></a><a aria-label="Homepage" href="/schhp?hl=en&oe=ASCII" id="gs_hdr_drw_lgo"></a></div><div><div class="gs_hdr_drw_sec"><a class="gs_btnPRO gs_in_ib gs_md_li gs_md_lix gs_in_gray" href="/citations?hl=en&oe=ASCII" role="menuitem"><span class="gs_ico"></span><span class="gs_ia_notf"></span><span class="gs_lbl">My profile</span></a><a class="gs_btnL gs_in_ib gs_md_li gs_md_lix gs_in_gray" href="/scholar?scilib=1&hl=en&oe=ASCII" role="menuitem"><span class="gs_ico"></span><span class="gs_ia_notf"></span><span class="gs_lbl">My library</span></a><a class="gs_btnJ gs_in_ib gs_md_li gs_md_lix gs_in_gray" href="/citations?view_op=metrics_intro&hl=en&oe=ASCII" role="menuitem"><span class="gs_ico"></span><span class="gs_ia_notf"></span><span class="gs_lbl">Metrics</span></a><a class="gs_btnM gs_in_ib gs_md_li gs_md_lix gs_in_gray" href="/scholar_alerts?view_op=list_alerts&hl=en&oe=ASCII" role="menuitem"><span class="gs_ico"></span><span class="gs_ia_notf"></span><span class="gs_lbl">Alerts</span></a></div><div class="gs_hdr_drw_sec"><a class="gs_btnP gs_in_ib gs_md_li gs_md_lix gs_in_gray" href="/scholar_settings?hl=en&oe=ASCII" role="menuitem"><span class="gs_ico"></span><span class="gs_ia_notf"></span><span class="gs_lbl">Settings</span></a></div></div><div class="gs_hdr_drw_sec" id="gs_hdr_drw_bot"><a class="gs_in_ib gs_md_li gs_md_lix gs_in_gray" href="https://accounts.google.com/Login?hl=en&continue=https://scholar.google.com/schhp%3Fhl%3Den%26oe%3DASCII"><span class="gs_ico"></span><span class="gs_ia_notf"></span><span class="gs_lbl">Sign in</span></a></div></div></div><div class="gs_hdr_src" id="gs_hdr" role="banner"><a aria-controls="gs_hdr_drw" class="gs_btnMNT gs_in_ib gs_btn_lrge" href="javascript:void(0)" id="gs_hdr_mnu" role="button"><span class="gs_ico"></span><span class="gs_ia_notf"></span><span class="gs_lbl"></span></a><a aria-label="Homepage" class="gs_hdr_dso" href="/schhp?hl=en&oe=ASCII" id="gs_hdr_lgo"></a><div id="gs_hdr_md"><h1 class="gs_hdr_mbo" dir="ltr">Top publications</h1><div id="gs_hdr_srch"><form action="/citations" id="gs_hdr_frm"><input name="hl" type="hidden" value="en"/><input name="oe" type="hidden" value="ASCII"/><input name="view_op" type="hidden" value="search_venues"/><div class="gs_in_txtw gs_in_txtb"><input aria-label="Search" autocapitalize="off" class="gs_in_txt" id="gs_hdr_tsi" maxlength="2048" name="vq" placeholder="Search publications" size="50" type="text" value=""/><div class="gs_in_txts"></div></div><span id="gs_hdr_tsc"><span class="gs_ico gs_ico_X"></span></span><button aria-label="Search" class="gs_btnG gs_in_ib gs_btn_act gs_btn_half gs_btn_lsb" id="gs_hdr_tsb" name="btnG" type="submit"><span class="gs_wr"><span class="gs_ico"></span><span class="gs_lbl"></span></span></button></form></div></div><a aria-controls="gs_hdr_frm" aria-label="Search" class="gs_btnTSB gs_in_ib gs_btn_lrge" href="javascript:void(0)" id="gs_hdr_sre" role="button"><span class="gs_ico"></span><span class="gs_ia_notf"></span><span class="gs_lbl"></span></a><div id="gs_hdr_act"><a href="https://accounts.google.com/Login?hl=en&continue=https://scholar.google.com/schhp%3Fhl%3Den%26oe%3DASCII" id="gs_hdr_act_s">Sign in</a></div></div><style>#gs_alrt{position:fixed;bottom:48px;left:16px;max-width:384px;z-index:1250;display:flex;justify-content:space-between;align-items:center;font-size:13px;line-height:16px;color:#e2e2e2;background:#333;text-align:left;border-radius:3px;box-shadow:0 3px 5px -1px rgba(0,0,0,.2),0 6px 10px 0 rgba(0,0,0,.14),0 1px 18px 0 rgba(0,0,0,.12);visibility:hidden;transform-origin:center;transform:scale(0.8,0.8) translate(0,100%);}.gs_el_ph #gs_alrt{bottom:0;left:0;width:100%;max-width:none;border-radius:0;box-shadow:none;transform:scale(1,1) translate(0,100%);}#gs_alrt.gs_vis{visibility:visible;transform:scale(1,1) translate(0,0);}#gs_alrt.gs_anm{transition:transform .067s cubic-bezier(.4,0,1,1),visibility 0s .067s;}#gs_alrt.gs_vis.gs_anm{transition:transform .067s cubic-bezier(0,0,.2,1);}.gs_el_ph #gs_alrt.gs_anm{transition:transform .084s cubic-bezier(.4,0,1,1),visibility 0s .084s;}.gs_el_ph #gs_alrt.gs_vis.gs_anm{transition:transform .1s cubic-bezier(0,0,.2,1);}#gs_alrt_m{display:block;padding:16px;}#gs_alrt_l{display:block;padding:8px;margin:0 8px 0 -8px;border-radius:3px;color:#fcc934;text-transform:uppercase;text-decoration:none;}#gs_alrt_l:hover{background-color:rgba(255,255,255,.05)}#gs_alrt_l:active{background-color:rgba(255,255,255,.1)}#gs_alrt_l:empty{display:none}#gs_alrt_m a{padding:8px 0;color:#e2e2e2;text-decoration:underline;}#gs_alrt_m a:active{color:#f6aea9}</style><form action="" id="gs_alrt" method="post"><span id="gs_alrt_m"></span><span id="gs_alrt_h"></span><a class="gs_fm_s" data-fm="gs_alrt" href="javascript:void(0)" id="gs_alrt_l"></a></form><div class="gs_nta gs_nph" id="gs_ab"><div class="gs_btnGSL" id="gs_ab_ico"><span class="gs_ico"></span></div><div id="gs_ab_ttl"><div class="gs_ab_mdw">Top publications</div></div><div id="gs_ab_md"><div class="gs_ab_mdw"></div></div><div id="gs_ab_btns"></div></div><div id="gs_bdy"><div id="gs_bdy_sb" role="navigation"><div id="gs_bdy_sb_in"></div></div><div id="gs_bdy_ccl" role="main"><div id="gsc_mp_ccl"><div class="" id="gsc_mp_nav" role="navigation"><div id="gsc_mp_nav_left"><div class="gs_md_r gs_md_rmb gs_md_rmbl" id="gsc_mtv_ac-r"><button aria-controls="gsc_mtv_ac-d" aria-haspopup="true" class="gs_in_se gs_btn_mnu gs_btn_flat gs_btn_lrge gs_press gs_md_tb" id="gsc_mtv_ac-b" ontouchstart="gs_evt_dsp(event)" type="button"><span class="gs_wr"><span class="gs_lbl">Categories</span><span class="gs_icm"></span></span></button><div class="gs_md_d gs_md_ds gs_md_ulr" id="gsc_mtv_ac-d" role="menu" tabindex="-1"><div class="gs_md_ul"><a class="gs_md_li" href="/citations?view_op=top_venues&hl=en&oe=ASCII&vq=bus" role="menuitem" tabindex="-1">Business, Economics & Management</a><a class="gs_md_li" href="/citations?view_op=top_venues&hl=en&oe=ASCII&vq=chm" role="menuitem" tabindex="-1">Chemical & Material Sciences</a><a class="gs_md_li" href="/citations?view_op=top_venues&hl=en&oe=ASCII&vq=eng" role="menuitem" tabindex="-1">Engineering & Computer Science</a><a class="gs_md_li" href="/citations?view_op=top_venues&hl=en&oe=ASCII&vq=med" role="menuitem" tabindex="-1">Health & Medical Sciences</a><a class="gs_md_li" href="/citations?view_op=top_venues&hl=en&oe=ASCII&vq=hum" role="menuitem" tabindex="-1">Humanities, Literature & Arts</a><a class="gs_md_li" href="/citations?view_op=top_venues&hl=en&oe=ASCII&vq=bio" role="menuitem" tabindex="-1">Life Sciences & Earth Sciences</a><a class="gs_md_li" href="/citations?view_op=top_venues&hl=en&oe=ASCII&vq=phy" role="menuitem" tabindex="-1">Physics & Mathematics</a><a class="gs_md_li" href="/citations?view_op=top_venues&hl=en&oe=ASCII&vq=soc" role="menuitem" tabindex="-1">Social Sciences</a></div></div></div></div><div id="gsc_mp_nav_right"><div class="gs_md_r gs_md_rmb gs_md_rmbl" id="gsc_mp_lang-r"><button aria-controls="gsc_mp_lang-d" aria-haspopup="true" class="gs_in_se gs_btn_mnu gs_btn_flat gs_btn_lrge gs_press gs_md_tb" id="gsc_mp_lang-b" ontouchstart="gs_evt_dsp(event)" type="button"><span class="gs_wr"><span class="gs_lbl">English</span><span class="gs_icm"></span></span></button><div class="gs_md_d gs_md_ds gs_md_ulr" id="gsc_mp_lang-d" role="menu" tabindex="-1"><a aria-checked="true" class="gs_md_li gs_sel" href="/citations?view_op=top_venues&hl=en&oe=ASCII&vq=en" role="menuitem" tabindex="-1">English</a><a class="gs_md_li" href="/citations?view_op=top_venues&hl=en&oe=ASCII&vq=pt" role="menuitem" tabindex="-1">Portuguese</a><a class="gs_md_li" href="/citations?view_op=top_venues&hl=en&oe=ASCII&vq=es" role="menuitem" tabindex="-1">Spanish</a><a class="gs_md_li" href="/citations?view_op=top_venues&hl=en&oe=ASCII&vq=de" role="menuitem" tabindex="-1">German</a><a class="gs_md_li" href="/citations?view_op=top_venues&hl=en&oe=ASCII&vq=ru" role="menuitem" tabindex="-1">Russian</a><a class="gs_md_li" href="/citations?view_op=top_venues&hl=en&oe=ASCII&vq=fr" role="menuitem" tabindex="-1">French</a><a class="gs_md_li" href="/citations?view_op=top_venues&hl=en&oe=ASCII&vq=ja" role="menuitem" tabindex="-1">Japanese</a><a class="gs_md_li" href="/citations?view_op=top_venues&hl=en&oe=ASCII&vq=ko" role="menuitem" tabindex="-1">Korean</a><a class="gs_md_li" href="/citations?view_op=top_venues&hl=en&oe=ASCII&vq=pl" role="menuitem" tabindex="-1">Polish</a><a class="gs_md_li" href="/citations?view_op=top_venues&hl=en&oe=ASCII&vq=uk" role="menuitem" tabindex="-1">Ukrainian</a><a class="gs_md_li" href="/citations?view_op=top_venues&hl=en&oe=ASCII&vq=id" role="menuitem" tabindex="-1">Indonesian</a></div></div></div></div><div id="gsc_mp_desc"><div class="gsc_mphm" id="gsc_mphm_hidx">h5-index is the h-index for articles published in the last 5 complete years. It is the largest number h such that h articles published in 2017-2021 have at least h citations each.<a class="gsc_mp_tgh gsc_mphm_ha gsc_mp_anchor" data-tg="gsc_mphm_hidx" href="javascript:void(0)">hide</a></div><div class="gsc_mphm" id="gsc_mphm_hmed">h5-median for a publication is the median number of citations for the articles that make up its h5-index.<a class="gsc_mp_tgh gsc_mphm_ha gsc_mp_anchor" data-tg="gsc_mphm_hmed" href="javascript:void(0)">hide</a></div></div><div class="gs_scl" id="gsc_mp_content" role="main"><div class="gsc_mvt_table_wrapper"><table class="gsc_mp_table" id="gsc_mvt_table"><tr><th class="gsc_mvt_p"></th><th class="gsc_mvt_t">Publication</th><th class="gsc_mvt_n"><a class="gsc_mp_anchor gsc_mp_tgh" data-tg="gsc_mphm_hidx" href="javascript:void(0)">h5-index</a></th><th class="gsc_mvt_n"><a class="gsc_mp_anchor gsc_mp_tgh" data-tg="gsc_mphm_hmed" href="javascript:void(0)">h5-median</a></th></tr><tr><td class="gsc_mvt_p">1.</td><td class="gsc_mvt_t">Nature</td><td class="gsc_mvt_n"><a class="gs_ibl gsc_mp_anchor" href="/citations?hl=en&oe=ASCII&vq=en&view_op=list_hcore&venue=H--JoiVp8x8J.2022">444</a></td><td class="gsc_mvt_n"><span class="gs_ibl gsc_mp_anchor">667</span></td></tr><tr><td class="gsc_mvt_p">2.</td><td class="gsc_mvt_t">The New England Journal of Medicine</td><td class="gsc_mvt_n"><a class="gs_ibl gsc_mp_anchor" href="/citations?hl=en&oe=ASCII&vq=en&view_op=list_hcore&venue=NR7xTEnpNgsJ.2022">432</a></td><td class="gsc_mvt_n"><span class="gs_ibl gsc_mp_anchor">780</span></td></tr><tr><td class="gsc_mvt_p">3.</td><td class="gsc_mvt_t">Science</td><td class="gsc_mvt_n"><a class="gs_ibl gsc_mp_anchor" href="/citations?hl=en&oe=ASCII&vq=en&view_op=list_hcore&venue=oY2eER5-jTUJ.2022">401</a></td><td class="gsc_mvt_n"><span class="gs_ibl gsc_mp_anchor">614</span></td></tr><tr><td class="gsc_mvt_p">4.</td><td class="gsc_mvt_t">IEEE/CVF Conference on Computer Vision and Pattern Recognition</td><td class="gsc_mvt_n"><a class="gs_ibl gsc_mp_anchor" href="/citations?hl=en&oe=ASCII&vq=en&view_op=list_hcore&venue=FXe-a9w0eycJ.2022">389</a></td><td class="gsc_mvt_n"><span class="gs_ibl gsc_mp_anchor">627</span></td></tr><tr><td class="gsc_mvt_p">5.</td><td class="gsc_mvt_t">The Lancet</td><td class="gsc_mvt_n"><a class="gs_ibl gsc_mp_anchor" href="/citations?hl=en&oe=ASCII&vq=en&view_op=list_hcore&venue=dj7TIF9zE7gJ.2022">354</a></td><td class="gsc_mvt_n"><span class="gs_ibl gsc_mp_anchor">635</span></td></tr><tr><td class="gsc_mvt_p">6.</td><td class="gsc_mvt_t">Advanced Materials</td><td class="gsc_mvt_n"><a class="gs_ibl gsc_mp_anchor" href="/citations?hl=en&oe=ASCII&vq=en&view_op=list_hcore&venue=iGi98NXoUDsJ.2022">312</a></td><td class="gsc_mvt_n"><span class="gs_ibl gsc_mp_anchor">418</span></td></tr><tr><td class="gsc_mvt_p">7.</td><td class="gsc_mvt_t">Nature Communications</td><td class="gsc_mvt_n"><a class="gs_ibl gsc_mp_anchor" href="/citations?hl=en&oe=ASCII&vq=en&view_op=list_hcore&venue=m_DUlvLcyY0J.2022">307</a></td><td class="gsc_mvt_n"><span class="gs_ibl gsc_mp_anchor">428</span></td></tr><tr><td class="gsc_mvt_p">8.</td><td class="gsc_mvt_t">Cell</td><td class="gsc_mvt_n"><a class="gs_ibl gsc_mp_anchor" href="/citations?hl=en&oe=ASCII&vq=en&view_op=list_hcore&venue=VlyKmNJzCgkJ.2022">300</a></td><td class="gsc_mvt_n"><span class="gs_ibl gsc_mp_anchor">505</span></td></tr><tr><td class="gsc_mvt_p">9.</td><td class="gsc_mvt_t">International Conference on Learning Representations</td><td class="gsc_mvt_n"><a class="gs_ibl gsc_mp_anchor" href="/citations?hl=en&oe=ASCII&vq=en&view_op=list_hcore&venue=0032SoU2xY4J.2022">286</a></td><td class="gsc_mvt_n"><span class="gs_ibl gsc_mp_anchor">533</span></td></tr><tr><td class="gsc_mvt_p">10.</td><td class="gsc_mvt_t">Neural Information Processing Systems</td><td class="gsc_mvt_n"><a class="gs_ibl gsc_mp_anchor" href="/citations?hl=en&oe=ASCII&vq=en&view_op=list_hcore&venue=eqYFflc_uhEJ.2022">278</a></td><td class="gsc_mvt_n"><span class="gs_ibl gsc_mp_anchor">436</span></td></tr><tr><td class="gsc_mvt_p">11.</td><td class="gsc_mvt_t">JAMA</td><td class="gsc_mvt_n"><a class="gs_ibl gsc_mp_anchor" href="/citations?hl=en&oe=ASCII&vq=en&view_op=list_hcore&venue=OmPdUD0HxiAJ.2022">267</a></td><td class="gsc_mvt_n"><span class="gs_ibl gsc_mp_anchor">425</span></td></tr><tr><td class="gsc_mvt_p">12.</td><td class="gsc_mvt_t">Chemical Reviews</td><td class="gsc_mvt_n"><a class="gs_ibl gsc_mp_anchor" href="/citations?hl=en&oe=ASCII&vq=en&view_op=list_hcore&venue=MzBRZZcuwa0J.2022">265</a></td><td class="gsc_mvt_n"><span class="gs_ibl gsc_mp_anchor">444</span></td></tr><tr><td class="gsc_mvt_p">13.</td><td class="gsc_mvt_t">Proceedings of the National Academy of Sciences</td><td class="gsc_mvt_n"><a class="gs_ibl gsc_mp_anchor" href="/citations?hl=en&oe=ASCII&vq=en&view_op=list_hcore&venue=5RY_PS94Oc4J.2022">256</a></td><td class="gsc_mvt_n"><span class="gs_ibl gsc_mp_anchor">364</span></td></tr><tr><td class="gsc_mvt_p">14.</td><td class="gsc_mvt_t">Angewandte Chemie</td><td class="gsc_mvt_n"><a class="gs_ibl gsc_mp_anchor" href="/citations?hl=en&oe=ASCII&vq=en&view_op=list_hcore&venue=kGPhuITsJjEJ.2022">245</a></td><td class="gsc_mvt_n"><span class="gs_ibl gsc_mp_anchor">332</span></td></tr><tr><td class="gsc_mvt_p">15.</td><td class="gsc_mvt_t">Chemical Society Reviews</td><td class="gsc_mvt_n"><a class="gs_ibl gsc_mp_anchor" href="/citations?hl=en&oe=ASCII&vq=en&view_op=list_hcore&venue=8J7ybE69eSgJ.2022">244</a></td><td class="gsc_mvt_n"><span class="gs_ibl gsc_mp_anchor">386</span></td></tr><tr><td class="gsc_mvt_p">16.</td><td class="gsc_mvt_t">Journal of the American Chemical Society</td><td class="gsc_mvt_n"><a class="gs_ibl gsc_mp_anchor" href="/citations?hl=en&oe=ASCII&vq=en&view_op=list_hcore&venue=SwzcHesTay8J.2022">242</a></td><td class="gsc_mvt_n"><span class="gs_ibl gsc_mp_anchor">344</span></td></tr><tr><td class="gsc_mvt_p">17.</td><td class="gsc_mvt_t">IEEE/CVF International Conference on Computer Vision</td><td class="gsc_mvt_n"><a class="gs_ibl gsc_mp_anchor" href="/citations?hl=en&oe=ASCII&vq=en&view_op=list_hcore&venue=Umlb1kMURG4J.2022">239</a></td><td class="gsc_mvt_n"><span class="gs_ibl gsc_mp_anchor">415</span></td></tr><tr><td class="gsc_mvt_p">18.</td><td class="gsc_mvt_t">Nucleic Acids Research</td><td class="gsc_mvt_n"><a class="gs_ibl gsc_mp_anchor" href="/citations?hl=en&oe=ASCII&vq=en&view_op=list_hcore&venue=R9lVUK9iDeEJ.2022">238</a></td><td class="gsc_mvt_n"><span class="gs_ibl gsc_mp_anchor">550</span></td></tr><tr><td class="gsc_mvt_p">19.</td><td class="gsc_mvt_t">International Conference on Machine Learning</td><td class="gsc_mvt_n"><a class="gs_ibl gsc_mp_anchor" href="/citations?hl=en&oe=ASCII&vq=en&view_op=list_hcore&venue=wL2oxc9mT4YJ.2022">237</a></td><td class="gsc_mvt_n"><span class="gs_ibl gsc_mp_anchor">421</span></td></tr><tr><td class="gsc_mvt_p">20.</td><td class="gsc_mvt_t">Nature Medicine</td><td class="gsc_mvt_n"><a class="gs_ibl gsc_mp_anchor" href="/citations?hl=en&oe=ASCII&vq=en&view_op=list_hcore&venue=yXgDGIh3w10J.2022">235</a></td><td class="gsc_mvt_n"><span class="gs_ibl gsc_mp_anchor">389</span></td></tr><tr><td class="gsc_mvt_p">21.</td><td class="gsc_mvt_t">Renewable and Sustainable Energy Reviews</td><td class="gsc_mvt_n"><a class="gs_ibl gsc_mp_anchor" href="/citations?hl=en&oe=ASCII&vq=en&view_op=list_hcore&venue=ZSbkjLcARiEJ.2022">227</a></td><td class="gsc_mvt_n"><span class="gs_ibl gsc_mp_anchor">324</span></td></tr><tr><td class="gsc_mvt_p">22.</td><td class="gsc_mvt_t">Science of The Total Environment</td><td class="gsc_mvt_n"><a class="gs_ibl gsc_mp_anchor" href="/citations?hl=en&oe=ASCII&vq=en&view_op=list_hcore&venue=zHYLxfa9svsJ.2022">225</a></td><td class="gsc_mvt_n"><span class="gs_ibl gsc_mp_anchor">311</span></td></tr><tr><td class="gsc_mvt_p">23.</td><td class="gsc_mvt_t">Advanced Energy Materials</td><td class="gsc_mvt_n"><a class="gs_ibl gsc_mp_anchor" href="/citations?hl=en&oe=ASCII&vq=en&view_op=list_hcore&venue=w0MXM7xwO6EJ.2022">220</a></td><td class="gsc_mvt_n"><span class="gs_ibl gsc_mp_anchor">300</span></td></tr><tr><td class="gsc_mvt_p">24.</td><td class="gsc_mvt_t">Journal of Clinical Oncology</td><td class="gsc_mvt_n"><a class="gs_ibl gsc_mp_anchor" href="/citations?hl=en&oe=ASCII&vq=en&view_op=list_hcore&venue=ecHF5oQilegJ.2022">213</a></td><td class="gsc_mvt_n"><span class="gs_ibl gsc_mp_anchor">315</span></td></tr><tr><td class="gsc_mvt_p">25.</td><td class="gsc_mvt_t">ACS Nano</td><td class="gsc_mvt_n"><a class="gs_ibl gsc_mp_anchor" href="/citations?hl=en&oe=ASCII&vq=en&view_op=list_hcore&venue=a9bp_yfgXwYJ.2022">211</a></td><td class="gsc_mvt_n"><span class="gs_ibl gsc_mp_anchor">277</span></td></tr><tr><td class="gsc_mvt_p">26.</td><td class="gsc_mvt_t">Journal of Cleaner Production</td><td class="gsc_mvt_n"><a class="gs_ibl gsc_mp_anchor" href="/citations?hl=en&oe=ASCII&vq=en&view_op=list_hcore&venue=tYeMgWz27P4J.2022">211</a></td><td class="gsc_mvt_n"><span class="gs_ibl gsc_mp_anchor">273</span></td></tr><tr><td class="gsc_mvt_p">27.</td><td class="gsc_mvt_t">Advanced Functional Materials</td><td class="gsc_mvt_n"><a class="gs_ibl gsc_mp_anchor" href="/citations?hl=en&oe=ASCII&vq=en&view_op=list_hcore&venue=49-WwfyYHmkJ.2022">210</a></td><td class="gsc_mvt_n"><span class="gs_ibl gsc_mp_anchor">280</span></td></tr><tr><td class="gsc_mvt_p">28.</td><td class="gsc_mvt_t">Physical Review Letters</td><td class="gsc_mvt_n"><a class="gs_ibl gsc_mp_anchor" href="/citations?hl=en&oe=ASCII&vq=en&view_op=list_hcore&venue=k6hd2dUel5kJ.2022">207</a></td><td class="gsc_mvt_n"><span class="gs_ibl gsc_mp_anchor">294</span></td></tr><tr><td class="gsc_mvt_p">29.</td><td class="gsc_mvt_t">Scientific Reports</td><td class="gsc_mvt_n"><a class="gs_ibl gsc_mp_anchor" href="/citations?hl=en&oe=ASCII&vq=en&view_op=list_hcore&venue=tEL7frEn2VoJ.2022">206</a></td><td class="gsc_mvt_n"><span class="gs_ibl gsc_mp_anchor">274</span></td></tr><tr><td class="gsc_mvt_p">30.</td><td class="gsc_mvt_t">The Lancet Oncology</td><td class="gsc_mvt_n"><a class="gs_ibl gsc_mp_anchor" href="/citations?hl=en&oe=ASCII&vq=en&view_op=list_hcore&venue=xO04yUCWFMsJ.2022">202</a></td><td class="gsc_mvt_n"><span class="gs_ibl gsc_mp_anchor">329</span></td></tr><tr><td class="gsc_mvt_p">31.</td><td class="gsc_mvt_t">Energy & Environmental Science</td><td class="gsc_mvt_n"><a class="gs_ibl gsc_mp_anchor" href="/citations?hl=en&oe=ASCII&vq=en&view_op=list_hcore&venue=SBb1EorUeGIJ.2022">202</a></td><td class="gsc_mvt_n"><span class="gs_ibl gsc_mp_anchor">290</span></td></tr><tr><td class="gsc_mvt_p">32.</td><td class="gsc_mvt_t">IEEE Access</td><td class="gsc_mvt_n"><a class="gs_ibl gsc_mp_anchor" href="/citations?hl=en&oe=ASCII&vq=en&view_op=list_hcore&venue=ccvNpBuUinsJ.2022">200</a></td><td class="gsc_mvt_n"><span class="gs_ibl gsc_mp_anchor">303</span></td></tr><tr><td class="gsc_mvt_p">33.</td><td class="gsc_mvt_t">PLoS ONE</td><td class="gsc_mvt_n"><a class="gs_ibl gsc_mp_anchor" href="/citations?hl=en&oe=ASCII&vq=en&view_op=list_hcore&venue=F3lYEBtxq6EJ.2022">198</a></td><td class="gsc_mvt_n"><span class="gs_ibl gsc_mp_anchor">278</span></td></tr><tr><td class="gsc_mvt_p">34.</td><td class="gsc_mvt_t">Science Advances</td><td class="gsc_mvt_n"><a class="gs_ibl gsc_mp_anchor" href="/citations?hl=en&oe=ASCII&vq=en&view_op=list_hcore&venue=4Y_HB2IUpckJ.2022">197</a></td><td class="gsc_mvt_n"><span class="gs_ibl gsc_mp_anchor">294</span></td></tr><tr><td class="gsc_mvt_p">35.</td><td class="gsc_mvt_t">Journal of the American College of Cardiology</td><td class="gsc_mvt_n"><a class="gs_ibl gsc_mp_anchor" href="/citations?hl=en&oe=ASCII&vq=en&view_op=list_hcore&venue=xYLghxaa8FcJ.2022">195</a></td><td class="gsc_mvt_n"><span class="gs_ibl gsc_mp_anchor">276</span></td></tr><tr><td class="gsc_mvt_p">36.</td><td class="gsc_mvt_t">Applied Catalysis B: Environmental</td><td class="gsc_mvt_n"><a class="gs_ibl gsc_mp_anchor" href="/citations?hl=en&oe=ASCII&vq=en&view_op=list_hcore&venue=c9uks1oR5n4J.2022">192</a></td><td class="gsc_mvt_n"><span class="gs_ibl gsc_mp_anchor">246</span></td></tr><tr><td class="gsc_mvt_p">37.</td><td class="gsc_mvt_t">Nature Genetics</td><td class="gsc_mvt_n"><a class="gs_ibl gsc_mp_anchor" href="/citations?hl=en&oe=ASCII&vq=en&view_op=list_hcore&venue=3p71nYTXsNMJ.2022">191</a></td><td class="gsc_mvt_n"><span class="gs_ibl gsc_mp_anchor">297</span></td></tr><tr><td class="gsc_mvt_p">38.</td><td class="gsc_mvt_t">BMJ</td><td class="gsc_mvt_n"><a class="gs_ibl gsc_mp_anchor" href="/citations?hl=en&oe=ASCII&vq=en&view_op=list_hcore&venue=aUkdNLROwn8J.2022">190</a></td><td class="gsc_mvt_n"><span class="gs_ibl gsc_mp_anchor">307</span></td></tr><tr><td class="gsc_mvt_p">39.</td><td class="gsc_mvt_t">Circulation</td><td class="gsc_mvt_n"><a class="gs_ibl gsc_mp_anchor" href="/citations?hl=en&oe=ASCII&vq=en&view_op=list_hcore&venue=wTjLJ-HBjrYJ.2022">189</a></td><td class="gsc_mvt_n"><span class="gs_ibl gsc_mp_anchor">301</span></td></tr><tr><td class="gsc_mvt_p">40.</td><td class="gsc_mvt_t">European Conference on Computer Vision</td><td class="gsc_mvt_n"><a class="gs_ibl gsc_mp_anchor" href="/citations?hl=en&oe=ASCII&vq=en&view_op=list_hcore&venue=cwIh2C-xo8kJ.2022">186</a></td><td class="gsc_mvt_n"><span class="gs_ibl gsc_mp_anchor">321</span></td></tr><tr><td class="gsc_mvt_p">41.</td><td class="gsc_mvt_t">International Journal of Molecular Sciences</td><td class="gsc_mvt_n"><a class="gs_ibl gsc_mp_anchor" href="/citations?hl=en&oe=ASCII&vq=en&view_op=list_hcore&venue=YlxNGrUs9ywJ.2022">183</a></td><td class="gsc_mvt_n"><span class="gs_ibl gsc_mp_anchor">253</span></td></tr><tr><td class="gsc_mvt_p">42.</td><td class="gsc_mvt_t">Nature Materials</td><td class="gsc_mvt_n"><a class="gs_ibl gsc_mp_anchor" href="/citations?hl=en&oe=ASCII&vq=en&view_op=list_hcore&venue=NueHEC17BmwJ.2022">181</a></td><td class="gsc_mvt_n"><span class="gs_ibl gsc_mp_anchor">265</span></td></tr><tr><td class="gsc_mvt_p">43.</td><td class="gsc_mvt_t">Chemical engineering journal</td><td class="gsc_mvt_n"><a class="gs_ibl gsc_mp_anchor" href="/citations?hl=en&oe=ASCII&vq=en&view_op=list_hcore&venue=NDSEyFw9R_kJ.2022">181</a></td><td class="gsc_mvt_n"><span class="gs_ibl gsc_mp_anchor">224</span></td></tr><tr><td class="gsc_mvt_p">44.</td><td class="gsc_mvt_t">AAAI Conference on Artificial Intelligence</td><td class="gsc_mvt_n"><a class="gs_ibl gsc_mp_anchor" href="/citations?hl=en&oe=ASCII&vq=en&view_op=list_hcore&venue=PV9sQN5dnPsJ.2022">180</a></td><td class="gsc_mvt_n"><span class="gs_ibl gsc_mp_anchor">296</span></td></tr><tr><td class="gsc_mvt_p">45.</td><td class="gsc_mvt_t">Journal of Materials Chemistry A</td><td class="gsc_mvt_n"><a class="gs_ibl gsc_mp_anchor" href="/citations?hl=en&oe=ASCII&vq=en&view_op=list_hcore&venue=BteXzRNhMa4J.2022">178</a></td><td class="gsc_mvt_n"><span class="gs_ibl gsc_mp_anchor">220</span></td></tr><tr><td class="gsc_mvt_p">46.</td><td class="gsc_mvt_t">ACS Applied Materials & Interfaces</td><td class="gsc_mvt_n"><a class="gs_ibl gsc_mp_anchor" href="/citations?hl=en&oe=ASCII&vq=en&view_op=list_hcore&venue=AWVyEJdRWZAJ.2022">177</a></td><td class="gsc_mvt_n"><span class="gs_ibl gsc_mp_anchor">223</span></td></tr><tr><td class="gsc_mvt_p">47.</td><td class="gsc_mvt_t">Nature Biotechnology</td><td class="gsc_mvt_n"><a class="gs_ibl gsc_mp_anchor" href="/citations?hl=en&oe=ASCII&vq=en&view_op=list_hcore&venue=d4fTNLVMoAsJ.2022">175</a></td><td class="gsc_mvt_n"><span class="gs_ibl gsc_mp_anchor">315</span></td></tr><tr><td class="gsc_mvt_p">48.</td><td class="gsc_mvt_t">The Lancet Infectious Diseases</td><td class="gsc_mvt_n"><a class="gs_ibl gsc_mp_anchor" href="/citations?hl=en&oe=ASCII&vq=en&view_op=list_hcore&venue=Cw6YFRBewwIJ.2022">173</a></td><td class="gsc_mvt_n"><span class="gs_ibl gsc_mp_anchor">296</span></td></tr><tr><td class="gsc_mvt_p">49.</td><td class="gsc_mvt_t">Frontiers in Immunology</td><td class="gsc_mvt_n"><a class="gs_ibl gsc_mp_anchor" href="/citations?hl=en&oe=ASCII&vq=en&view_op=list_hcore&venue=7vpXVsi1JBIJ.2022">173</a></td><td class="gsc_mvt_n"><span class="gs_ibl gsc_mp_anchor">228</span></td></tr><tr><td class="gsc_mvt_p">50.</td><td class="gsc_mvt_t">Applied Energy</td><td class="gsc_mvt_n"><a class="gs_ibl gsc_mp_anchor" href="/citations?hl=en&oe=ASCII&vq=en&view_op=list_hcore&venue=YEgmRIvqc-sJ.2022">173</a></td><td class="gsc_mvt_n"><span class="gs_ibl gsc_mp_anchor">217</span></td></tr><tr><td class="gsc_mvt_p">51.</td><td class="gsc_mvt_t">Nano Energy</td><td class="gsc_mvt_n"><a class="gs_ibl gsc_mp_anchor" href="/citations?hl=en&oe=ASCII&vq=en&view_op=list_hcore&venue=VnRGJcx2SzEJ.2022">172</a></td><td class="gsc_mvt_n"><span class="gs_ibl gsc_mp_anchor">232</span></td></tr><tr><td class="gsc_mvt_p">52.</td><td class="gsc_mvt_t">Nature Energy</td><td class="gsc_mvt_n"><a class="gs_ibl gsc_mp_anchor" href="/citations?hl=en&oe=ASCII&vq=en&view_op=list_hcore&venue=cfU9-VnFg7MJ.2022">170</a></td><td class="gsc_mvt_n"><span class="gs_ibl gsc_mp_anchor">314</span></td></tr><tr><td class="gsc_mvt_p">53.</td><td class="gsc_mvt_t">Meeting of the Association for Computational Linguistics (ACL)</td><td class="gsc_mvt_n"><a class="gs_ibl gsc_mp_anchor" href="/citations?hl=en&oe=ASCII&vq=en&view_op=list_hcore&venue=Y3UjV9bSCxMJ.2022">169</a></td><td class="gsc_mvt_n"><span class="gs_ibl gsc_mp_anchor">304</span></td></tr><tr><td class="gsc_mvt_p">54.</td><td class="gsc_mvt_t">The Astrophysical Journal</td><td class="gsc_mvt_n"><a class="gs_ibl gsc_mp_anchor" href="/citations?hl=en&oe=ASCII&vq=en&view_op=list_hcore&venue=kLu-gHHm-yoJ.2022">167</a></td><td class="gsc_mvt_n"><span class="gs_ibl gsc_mp_anchor">234</span></td></tr><tr><td class="gsc_mvt_p">55.</td><td class="gsc_mvt_t">Gastroenterology</td><td class="gsc_mvt_n"><a class="gs_ibl gsc_mp_anchor" href="/citations?hl=en&oe=ASCII&vq=en&view_op=list_hcore&venue=coh_9l_eLP4J.2022">166</a></td><td class="gsc_mvt_n"><span class="gs_ibl gsc_mp_anchor">254</span></td></tr><tr><td class="gsc_mvt_p">56.</td><td class="gsc_mvt_t">Nature Methods</td><td class="gsc_mvt_n"><a class="gs_ibl gsc_mp_anchor" href="/citations?hl=en&oe=ASCII&vq=en&view_op=list_hcore&venue=Qq1AZ4GL_n8J.2022">165</a></td><td class="gsc_mvt_n"><span class="gs_ibl gsc_mp_anchor">296</span></td></tr><tr><td class="gsc_mvt_p">57.</td><td class="gsc_mvt_t">IEEE Transactions on Pattern Analysis and Machine Intelligence</td><td class="gsc_mvt_n"><a class="gs_ibl gsc_mp_anchor" href="/citations?hl=en&oe=ASCII&vq=en&view_op=list_hcore&venue=FMIcylNwodUJ.2022">165</a></td><td class="gsc_mvt_n"><span class="gs_ibl gsc_mp_anchor">293</span></td></tr><tr><td class="gsc_mvt_p">58.</td><td class="gsc_mvt_t">Cochrane Database of Systematic Reviews</td><td class="gsc_mvt_n"><a class="gs_ibl gsc_mp_anchor" href="/citations?hl=en&oe=ASCII&vq=en&view_op=list_hcore&venue=wkjEIQda6iQJ.2022">165</a></td><td class="gsc_mvt_n"><span class="gs_ibl gsc_mp_anchor">243</span></td></tr><tr><td class="gsc_mvt_p">59.</td><td class="gsc_mvt_t">Blood</td><td class="gsc_mvt_n"><a class="gs_ibl gsc_mp_anchor" href="/citations?hl=en&oe=ASCII&vq=en&view_op=list_hcore&venue=MQG5QwakzOcJ.2022">165</a></td><td class="gsc_mvt_n"><span class="gs_ibl gsc_mp_anchor">229</span></td></tr><tr><td class="gsc_mvt_p">60.</td><td class="gsc_mvt_t">Neuron</td><td class="gsc_mvt_n"><a class="gs_ibl gsc_mp_anchor" href="/citations?hl=en&oe=ASCII&vq=en&view_op=list_hcore&venue=pbEUc7Yi4KkJ.2022">164</a></td><td class="gsc_mvt_n"><span class="gs_ibl gsc_mp_anchor">231</span></td></tr><tr><td class="gsc_mvt_p">61.</td><td class="gsc_mvt_t">Nano Letters</td><td class="gsc_mvt_n"><a class="gs_ibl gsc_mp_anchor" href="/citations?hl=en&oe=ASCII&vq=en&view_op=list_hcore&venue=N-tBBiwlGDsJ.2022">164</a></td><td class="gsc_mvt_n"><span class="gs_ibl gsc_mp_anchor">207</span></td></tr><tr><td class="gsc_mvt_p">62.</td><td class="gsc_mvt_t">Morbidity and Mortality Weekly Report</td><td class="gsc_mvt_n"><a class="gs_ibl gsc_mp_anchor" href="/citations?hl=en&oe=ASCII&vq=en&view_op=list_hcore&venue=pMbx1O4DEmYJ.2022">163</a></td><td class="gsc_mvt_n"><span class="gs_ibl gsc_mp_anchor">302</span></td></tr><tr><td class="gsc_mvt_p">63.</td><td class="gsc_mvt_t">European Heart Journal</td><td class="gsc_mvt_n"><a class="gs_ibl gsc_mp_anchor" href="/citations?hl=en&oe=ASCII&vq=en&view_op=list_hcore&venue=nzv6ligyWB4J.2022">163</a></td><td class="gsc_mvt_n"><span class="gs_ibl gsc_mp_anchor">265</span></td></tr><tr><td class="gsc_mvt_p">64.</td><td class="gsc_mvt_t">Nature Nanotechnology</td><td class="gsc_mvt_n"><a class="gs_ibl gsc_mp_anchor" href="/citations?hl=en&oe=ASCII&vq=en&view_op=list_hcore&venue=nGsYFxF7AIcJ.2022">163</a></td><td class="gsc_mvt_n"><span class="gs_ibl gsc_mp_anchor">264</span></td></tr><tr><td class="gsc_mvt_p">65.</td><td class="gsc_mvt_t">ACS Catalysis</td><td class="gsc_mvt_n"><a class="gs_ibl gsc_mp_anchor" href="/citations?hl=en&oe=ASCII&vq=en&view_op=list_hcore&venue=HY38J6diLbEJ.2022">163</a></td><td class="gsc_mvt_n"><span class="gs_ibl gsc_mp_anchor">220</span></td></tr><tr><td class="gsc_mvt_p">66.</td><td class="gsc_mvt_t">Nature Neuroscience</td><td class="gsc_mvt_n"><a class="gs_ibl gsc_mp_anchor" href="/citations?hl=en&oe=ASCII&vq=en&view_op=list_hcore&venue=XZq8YKj5AB8J.2022">162</a></td><td class="gsc_mvt_n"><span class="gs_ibl gsc_mp_anchor">248</span></td></tr><tr><td class="gsc_mvt_p">67.</td><td class="gsc_mvt_t">American Economic Review</td><td class="gsc_mvt_n"><a class="gs_ibl gsc_mp_anchor" href="/citations?hl=en&oe=ASCII&vq=en&view_op=list_hcore&venue=JdmuJJQqBKkJ.2022">160</a></td><td class="gsc_mvt_n"><span class="gs_ibl gsc_mp_anchor">263</span></td></tr><tr><td class="gsc_mvt_p">68.</td><td class="gsc_mvt_t">Journal of High Energy Physics</td><td class="gsc_mvt_n"><a class="gs_ibl gsc_mp_anchor" href="/citations?hl=en&oe=ASCII&vq=en&view_op=list_hcore&venue=YsyE7AUs20UJ.2022">160</a></td><td class="gsc_mvt_n"><span class="gs_ibl gsc_mp_anchor">220</span></td></tr><tr><td class="gsc_mvt_p">69.</td><td class="gsc_mvt_t">IEEE Communications Surveys & Tutorials</td><td class="gsc_mvt_n"><a class="gs_ibl gsc_mp_anchor" href="/citations?hl=en&oe=ASCII&vq=en&view_op=list_hcore&venue=rH0u9gfK8u8J.2022">159</a></td><td class="gsc_mvt_n"><span class="gs_ibl gsc_mp_anchor">304</span></td></tr><tr><td class="gsc_mvt_p">70.</td><td class="gsc_mvt_t">Annals of Oncology</td><td class="gsc_mvt_n"><a class="gs_ibl gsc_mp_anchor" href="/citations?hl=en&oe=ASCII&vq=en&view_op=list_hcore&venue=YKYgGM0Tw8gJ.2022">159</a></td><td class="gsc_mvt_n"><span class="gs_ibl gsc_mp_anchor">243</span></td></tr><tr><td class="gsc_mvt_p">71.</td><td class="gsc_mvt_t">Nutrients</td><td class="gsc_mvt_n"><a class="gs_ibl gsc_mp_anchor" href="/citations?hl=en&oe=ASCII&vq=en&view_op=list_hcore&venue=yfc83oKvDvIJ.2022">159</a></td><td class="gsc_mvt_n"><span class="gs_ibl gsc_mp_anchor">214</span></td></tr><tr><td class="gsc_mvt_p">72.</td><td class="gsc_mvt_t">Accounts of Chemical Research</td><td class="gsc_mvt_n"><a class="gs_ibl gsc_mp_anchor" href="/citations?hl=en&oe=ASCII&vq=en&view_op=list_hcore&venue=5u1VVK3q13gJ.2022">159</a></td><td class="gsc_mvt_n"><span class="gs_ibl gsc_mp_anchor">211</span></td></tr><tr><td class="gsc_mvt_p">73.</td><td class="gsc_mvt_t">Immunity</td><td class="gsc_mvt_n"><a class="gs_ibl gsc_mp_anchor" href="/citations?hl=en&oe=ASCII&vq=en&view_op=list_hcore&venue=Psc9Ho3-rx8J.2022">158</a></td><td class="gsc_mvt_n"><span class="gs_ibl gsc_mp_anchor">242</span></td></tr><tr><td class="gsc_mvt_p">74.</td><td class="gsc_mvt_t">Environmental Science & Technology</td><td class="gsc_mvt_n"><a class="gs_ibl gsc_mp_anchor" href="/citations?hl=en&oe=ASCII&vq=en&view_op=list_hcore&venue=-AYGASySECUJ.2022">158</a></td><td class="gsc_mvt_n"><span class="gs_ibl gsc_mp_anchor">214</span></td></tr><tr><td class="gsc_mvt_p">75.</td><td class="gsc_mvt_t">Nature Reviews. Molecular Cell Biology</td><td class="gsc_mvt_n"><a class="gs_ibl gsc_mp_anchor" href="/citations?hl=en&oe=ASCII&vq=en&view_op=list_hcore&venue=BW5-ciPRQT8J.2022">155</a></td><td class="gsc_mvt_n"><span class="gs_ibl gsc_mp_anchor">340</span></td></tr><tr><td class="gsc_mvt_p">76.</td><td class="gsc_mvt_t">Gut</td><td class="gsc_mvt_n"><a class="gs_ibl gsc_mp_anchor" href="/citations?hl=en&oe=ASCII&vq=en&view_op=list_hcore&venue=8boGrBcAQRIJ.2022">155</a></td><td class="gsc_mvt_n"><span class="gs_ibl gsc_mp_anchor">235</span></td></tr><tr><td class="gsc_mvt_p">77.</td><td class="gsc_mvt_t">Physical Review D</td><td class="gsc_mvt_n"><a class="gs_ibl gsc_mp_anchor" href="/citations?hl=en&oe=ASCII&vq=en&view_op=list_hcore&venue=BDbZY07nj-oJ.2022">155</a></td><td class="gsc_mvt_n"><span class="gs_ibl gsc_mp_anchor">217</span></td></tr><tr><td class="gsc_mvt_p">78.</td><td class="gsc_mvt_t">ACS Energy Letters</td><td class="gsc_mvt_n"><a class="gs_ibl gsc_mp_anchor" href="/citations?hl=en&oe=ASCII&vq=en&view_op=list_hcore&venue=ov9mJjzpAbkJ.2022">155</a></td><td class="gsc_mvt_n"><span class="gs_ibl gsc_mp_anchor">212</span></td></tr><tr><td class="gsc_mvt_p">79.</td><td class="gsc_mvt_t">Monthly Notices of the Royal Astronomical Society</td><td class="gsc_mvt_n"><a class="gs_ibl gsc_mp_anchor" href="/citations?hl=en&oe=ASCII&vq=en&view_op=list_hcore&venue=1psIsUvUvtgJ.2022">155</a></td><td class="gsc_mvt_n"><span class="gs_ibl gsc_mp_anchor">194</span></td></tr><tr><td class="gsc_mvt_p">80.</td><td class="gsc_mvt_t">Conference on Empirical Methods in Natural Language Processing (EMNLP)</td><td class="gsc_mvt_n"><a class="gs_ibl gsc_mp_anchor" href="/citations?hl=en&oe=ASCII&vq=en&view_op=list_hcore&venue=LqrQjvOguiMJ.2022">154</a></td><td class="gsc_mvt_n"><span class="gs_ibl gsc_mp_anchor">249</span></td></tr><tr><td class="gsc_mvt_p">81.</td><td class="gsc_mvt_t">Clinical Infectious Diseases</td><td class="gsc_mvt_n"><a class="gs_ibl gsc_mp_anchor" href="/citations?hl=en&oe=ASCII&vq=en&view_op=list_hcore&venue=fBR8hym4NqEJ.2022">153</a></td><td class="gsc_mvt_n"><span class="gs_ibl gsc_mp_anchor">278</span></td></tr><tr><td class="gsc_mvt_p">82.</td><td class="gsc_mvt_t">Cell Metabolism</td><td class="gsc_mvt_n"><a class="gs_ibl gsc_mp_anchor" href="/citations?hl=en&oe=ASCII&vq=en&view_op=list_hcore&venue=zMrP9W20roUJ.2022">153</a></td><td class="gsc_mvt_n"><span class="gs_ibl gsc_mp_anchor">211</span></td></tr><tr><td class="gsc_mvt_p">83.</td><td class="gsc_mvt_t">Nature Reviews Immunology</td><td class="gsc_mvt_n"><a class="gs_ibl gsc_mp_anchor" href="/citations?hl=en&oe=ASCII&vq=en&view_op=list_hcore&venue=JAoASYWHSYEJ.2022">152</a></td><td class="gsc_mvt_n"><span class="gs_ibl gsc_mp_anchor">292</span></td></tr><tr><td class="gsc_mvt_p">84.</td><td class="gsc_mvt_t">Joule</td><td class="gsc_mvt_n"><a class="gs_ibl gsc_mp_anchor" href="/citations?hl=en&oe=ASCII&vq=en&view_op=list_hcore&venue=jCO4Z2fB5dsJ.2022">152</a></td><td class="gsc_mvt_n"><span class="gs_ibl gsc_mp_anchor">233</span></td></tr><tr><td class="gsc_mvt_p">85.</td><td class="gsc_mvt_t">Nature Photonics</td><td class="gsc_mvt_n"><a class="gs_ibl gsc_mp_anchor" href="/citations?hl=en&oe=ASCII&vq=en&view_op=list_hcore&venue=iSeY9RQKcc8J.2022">152</a></td><td class="gsc_mvt_n"><span class="gs_ibl gsc_mp_anchor">228</span></td></tr><tr><td class="gsc_mvt_p">86.</td><td class="gsc_mvt_t">International Journal of Environmental Research and Public Health</td><td class="gsc_mvt_n"><a class="gs_ibl gsc_mp_anchor" href="/citations?hl=en&oe=ASCII&vq=en&view_op=list_hcore&venue=kEa56xlDDN8J.2022">152</a></td><td class="gsc_mvt_n"><span class="gs_ibl gsc_mp_anchor">225</span></td></tr><tr><td class="gsc_mvt_p">87.</td><td class="gsc_mvt_t">Environmental Pollution</td><td class="gsc_mvt_n"><a class="gs_ibl gsc_mp_anchor" href="/citations?hl=en&oe=ASCII&vq=en&view_op=list_hcore&venue=Hfdvd0qCGFkJ.2022">152</a></td><td class="gsc_mvt_n"><span class="gs_ibl gsc_mp_anchor">222</span></td></tr><tr><td class="gsc_mvt_p">88.</td><td class="gsc_mvt_t">Computers in Human Behavior</td><td class="gsc_mvt_n"><a class="gs_ibl gsc_mp_anchor" href="/citations?hl=en&oe=ASCII&vq=en&view_op=list_hcore&venue=N8OFJny_66QJ.2022">152</a></td><td class="gsc_mvt_n"><span class="gs_ibl gsc_mp_anchor">214</span></td></tr><tr><td class="gsc_mvt_p">89.</td><td class="gsc_mvt_t">Frontiers in Microbiology</td><td class="gsc_mvt_n"><a class="gs_ibl gsc_mp_anchor" href="/citations?hl=en&oe=ASCII&vq=en&view_op=list_hcore&venue=Ok3gP5VjmVIJ.2022">151</a></td><td class="gsc_mvt_n"><span class="gs_ibl gsc_mp_anchor">225</span></td></tr><tr><td class="gsc_mvt_p">90.</td><td class="gsc_mvt_t">Nature Physics</td><td class="gsc_mvt_n"><a class="gs_ibl gsc_mp_anchor" href="/citations?hl=en&oe=ASCII&vq=en&view_op=list_hcore&venue=ouAzwbN82bMJ.2022">151</a></td><td class="gsc_mvt_n"><span class="gs_ibl gsc_mp_anchor">222</span></td></tr><tr><td class="gsc_mvt_p">91.</td><td class="gsc_mvt_t">Small</td><td class="gsc_mvt_n"><a class="gs_ibl gsc_mp_anchor" href="/citations?hl=en&oe=ASCII&vq=en&view_op=list_hcore&venue=TdhLrHqKTh8J.2022">150</a></td><td class="gsc_mvt_n"><span class="gs_ibl gsc_mp_anchor">196</span></td></tr><tr><td class="gsc_mvt_p">92.</td><td class="gsc_mvt_t">Cell Reports</td><td class="gsc_mvt_n"><a class="gs_ibl gsc_mp_anchor" href="/citations?hl=en&oe=ASCII&vq=en&view_op=list_hcore&venue=u0OhSowAd3cJ.2022">149</a></td><td class="gsc_mvt_n"><span class="gs_ibl gsc_mp_anchor">205</span></td></tr><tr><td class="gsc_mvt_p">93.</td><td class="gsc_mvt_t">Molecular Cell</td><td class="gsc_mvt_n"><a class="gs_ibl gsc_mp_anchor" href="/citations?hl=en&oe=ASCII&vq=en&view_op=list_hcore&venue=mP0ixsjOxMUJ.2022">149</a></td><td class="gsc_mvt_n"><span class="gs_ibl gsc_mp_anchor">202</span></td></tr><tr><td class="gsc_mvt_p">94.</td><td class="gsc_mvt_t">Clinical Cancer Research</td><td class="gsc_mvt_n"><a class="gs_ibl gsc_mp_anchor" href="/citations?hl=en&oe=ASCII&vq=en&view_op=list_hcore&venue=zh7nnyKb8kcJ.2022">146</a></td><td class="gsc_mvt_n"><span class="gs_ibl gsc_mp_anchor">201</span></td></tr><tr><td class="gsc_mvt_p">95.</td><td class="gsc_mvt_t">Bioresource Technology</td><td class="gsc_mvt_n"><a class="gs_ibl gsc_mp_anchor" href="/citations?hl=en&oe=ASCII&vq=en&view_op=list_hcore&venue=JeYzXj7cKAQJ.2022">146</a></td><td class="gsc_mvt_n"><span class="gs_ibl gsc_mp_anchor">190</span></td></tr><tr><td class="gsc_mvt_p">96.</td><td class="gsc_mvt_t">Journal of Business Research</td><td class="gsc_mvt_n"><a class="gs_ibl gsc_mp_anchor" href="/citations?hl=en&oe=ASCII&vq=en&view_op=list_hcore&venue=r_ClXCa7Zg8J.2022">145</a></td><td class="gsc_mvt_n"><span class="gs_ibl gsc_mp_anchor">233</span></td></tr><tr><td class="gsc_mvt_p">97.</td><td class="gsc_mvt_t">Molecular Cancer</td><td class="gsc_mvt_n"><a class="gs_ibl gsc_mp_anchor" href="/citations?hl=en&oe=ASCII&vq=en&view_op=list_hcore&venue=u98KWqnAzy8J.2022">145</a></td><td class="gsc_mvt_n"><span class="gs_ibl gsc_mp_anchor">209</span></td></tr><tr><td class="gsc_mvt_p">98.</td><td class="gsc_mvt_t">Sensors</td><td class="gsc_mvt_n"><a class="gs_ibl gsc_mp_anchor" href="/citations?hl=en&oe=ASCII&vq=en&view_op=list_hcore&venue=KJTg4Mmu7pUJ.2022">145</a></td><td class="gsc_mvt_n"><span class="gs_ibl gsc_mp_anchor">201</span></td></tr><tr><td class="gsc_mvt_p">99.</td><td class="gsc_mvt_t">Nature Climate Change</td><td class="gsc_mvt_n"><a class="gs_ibl gsc_mp_anchor" href="/citations?hl=en&oe=ASCII&vq=en&view_op=list_hcore&venue=IFUPWd7_UnUJ.2022">144</a></td><td class="gsc_mvt_n"><span class="gs_ibl gsc_mp_anchor">228</span></td></tr><tr><td class="gsc_mvt_p">100.</td><td class="gsc_mvt_t">IEEE Internet of Things Journal</td><td class="gsc_mvt_n"><a class="gs_ibl gsc_mp_anchor" href="/citations?hl=en&oe=ASCII&vq=en&view_op=list_hcore&venue=9oNLl9DgMnQJ.2022">144</a></td><td class="gsc_mvt_n"><span class="gs_ibl gsc_mp_anchor">212</span></td></tr></table></div></div><div class="gs_gray" id="gsc_mp_disclaimer">Dates and citation counts are estimated and are determined automatically by a computer program.</div></div></div></div><div id="gs_ftr_sp" role="presentation"></div><div id="gs_ftr" role="contentinfo"><div id="gs_ftr_rt"><a href="/intl/en/scholar/about.html">Help</a><a href="//www.google.com/intl/en/policies/privacy/">Privacy</a><a href="//www.google.com/intl/en/policies/terms/">Terms</a></div></div></div></body></html>
rank=[]
for i in soup.find_all('td',class_="gsc_mvt_p"):
rank.append(i.text)
rank
['1.', '2.', '3.', '4.', '5.', '6.', '7.', '8.', '9.', '10.', '11.', '12.', '13.', '14.', '15.', '16.', '17.', '18.', '19.', '20.', '21.', '22.', '23.', '24.', '25.', '26.', '27.', '28.', '29.', '30.', '31.', '32.', '33.', '34.', '35.', '36.', '37.', '38.', '39.', '40.', '41.', '42.', '43.', '44.', '45.', '46.', '47.', '48.', '49.', '50.', '51.', '52.', '53.', '54.', '55.', '56.', '57.', '58.', '59.', '60.', '61.', '62.', '63.', '64.', '65.', '66.', '67.', '68.', '69.', '70.', '71.', '72.', '73.', '74.', '75.', '76.', '77.', '78.', '79.', '80.', '81.', '82.', '83.', '84.', '85.', '86.', '87.', '88.', '89.', '90.', '91.', '92.', '93.', '94.', '95.', '96.', '97.', '98.', '99.', '100.']
publication=[]
for i in soup.find_all('td',class_="gsc_mvt_t"):
publication.append(i.text)
publication
['Nature', 'The New England Journal of Medicine', 'Science', 'IEEE/CVF Conference on Computer Vision and Pattern Recognition', 'The Lancet', 'Advanced Materials', 'Nature Communications', 'Cell', 'International Conference on Learning Representations', 'Neural Information Processing Systems', 'JAMA', 'Chemical Reviews', 'Proceedings of the National Academy of Sciences', 'Angewandte Chemie', 'Chemical Society Reviews', 'Journal of the American Chemical Society', 'IEEE/CVF International Conference on Computer Vision', 'Nucleic Acids Research', 'International Conference on Machine Learning', 'Nature Medicine', 'Renewable and Sustainable Energy Reviews', 'Science of The Total Environment', 'Advanced Energy Materials', 'Journal of Clinical Oncology', 'ACS Nano', 'Journal of Cleaner Production', 'Advanced Functional Materials', 'Physical Review Letters', 'Scientific Reports', 'The Lancet Oncology', 'Energy & Environmental Science', 'IEEE Access', 'PLoS ONE', 'Science Advances', 'Journal of the American College of Cardiology', 'Applied Catalysis B: Environmental', 'Nature Genetics', 'BMJ', 'Circulation', 'European Conference on Computer Vision', 'International Journal of Molecular Sciences', 'Nature Materials', 'Chemical engineering journal', 'AAAI Conference on Artificial Intelligence', 'Journal of Materials Chemistry A', 'ACS Applied Materials & Interfaces', 'Nature Biotechnology', 'The Lancet Infectious Diseases', 'Frontiers in Immunology', 'Applied Energy', 'Nano Energy', 'Nature Energy', 'Meeting of the Association for Computational Linguistics (ACL)', 'The Astrophysical Journal', 'Gastroenterology', 'Nature Methods', 'IEEE Transactions on Pattern Analysis and Machine Intelligence', 'Cochrane Database of Systematic Reviews', 'Blood', 'Neuron', 'Nano Letters', 'Morbidity and Mortality Weekly Report', 'European Heart Journal', 'Nature Nanotechnology', 'ACS Catalysis', 'Nature Neuroscience', 'American Economic Review', 'Journal of High Energy Physics', 'IEEE Communications Surveys & Tutorials', 'Annals of Oncology', 'Nutrients', 'Accounts of Chemical Research', 'Immunity', 'Environmental Science & Technology', 'Nature Reviews. Molecular Cell Biology', 'Gut', 'Physical Review D', 'ACS Energy Letters', 'Monthly Notices of the Royal Astronomical Society', 'Conference on Empirical Methods in Natural Language Processing (EMNLP)', 'Clinical Infectious Diseases', 'Cell Metabolism', 'Nature Reviews Immunology', 'Joule', 'Nature Photonics', 'International Journal of Environmental Research and Public Health', 'Environmental Pollution', 'Computers in Human Behavior', 'Frontiers in Microbiology', 'Nature Physics', 'Small', 'Cell Reports', 'Molecular Cell', 'Clinical Cancer Research', 'Bioresource Technology', 'Journal of Business Research', 'Molecular Cancer', 'Sensors', 'Nature Climate Change', 'IEEE Internet of Things Journal']
index=[]
for i in soup.find_all('td',class_="gsc_mvt_n"):
index.append(i.text)
index
['444', '667', '432', '780', '401', '614', '389', '627', '354', '635', '312', '418', '307', '428', '300', '505', '286', '533', '278', '436', '267', '425', '265', '444', '256', '364', '245', '332', '244', '386', '242', '344', '239', '415', '238', '550', '237', '421', '235', '389', '227', '324', '225', '311', '220', '300', '213', '315', '211', '277', '211', '273', '210', '280', '207', '294', '206', '274', '202', '329', '202', '290', '200', '303', '198', '278', '197', '294', '195', '276', '192', '246', '191', '297', '190', '307', '189', '301', '186', '321', '183', '253', '181', '265', '181', '224', '180', '296', '178', '220', '177', '223', '175', '315', '173', '296', '173', '228', '173', '217', '172', '232', '170', '314', '169', '304', '167', '234', '166', '254', '165', '296', '165', '293', '165', '243', '165', '229', '164', '231', '164', '207', '163', '302', '163', '265', '163', '264', '163', '220', '162', '248', '160', '263', '160', '220', '159', '304', '159', '243', '159', '214', '159', '211', '158', '242', '158', '214', '155', '340', '155', '235', '155', '217', '155', '212', '155', '194', '154', '249', '153', '278', '153', '211', '152', '292', '152', '233', '152', '228', '152', '225', '152', '222', '152', '214', '151', '225', '151', '222', '150', '196', '149', '205', '149', '202', '146', '201', '146', '190', '145', '233', '145', '209', '145', '201', '144', '228', '144', '212']
median=[]
for i in soup.find_all('span',class_="gs_ibl gsc_mp_anchor"):
median.append(i.text)
median
['667', '780', '614', '627', '635', '418', '428', '505', '533', '436', '425', '444', '364', '332', '386', '344', '415', '550', '421', '389', '324', '311', '300', '315', '277', '273', '280', '294', '274', '329', '290', '303', '278', '294', '276', '246', '297', '307', '301', '321', '253', '265', '224', '296', '220', '223', '315', '296', '228', '217', '232', '314', '304', '234', '254', '296', '293', '243', '229', '231', '207', '302', '265', '264', '220', '248', '263', '220', '304', '243', '214', '211', '242', '214', '340', '235', '217', '212', '194', '249', '278', '211', '292', '233', '228', '225', '222', '214', '225', '222', '196', '205', '202', '201', '190', '233', '209', '201', '228', '212']
In all the following questions, you have to use BeautifulSoup to scrape different websites and collect data as per the requirement of the question.
1) Write a python program to display all the header tags from wikipedia.org.
url=requests.get("https://www.wikipedia.org/")
url
<Response [200]>
soup=BeautifulSoup(url.text,'html.parser')
soup
<!DOCTYPE html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8"/>
<title>Wikipedia</title>
<meta content="Wikipedia is a free online encyclopedia, created and edited by volunteers around the world and hosted by the Wikimedia Foundation." name="description"/>
<script>
document.documentElement.className = document.documentElement.className.replace( /(^|\s)no-js(\s|$)/, "$1js-enabled$2" );
</script>
<meta content="initial-scale=1,user-scalable=yes" name="viewport"/>
<link href="/static/apple-touch/wikipedia.png" rel="apple-touch-icon"/>
<link href="/static/favicon/wikipedia.ico" rel="shortcut icon"/>
<link href="//creativecommons.org/licenses/by-sa/3.0/" rel="license"/>
<style>
.sprite{background-image:linear-gradient(transparent,transparent),url(portal/wikipedia.org/assets/img/sprite-e99844f6.svg);background-repeat:no-repeat;display:inline-block;vertical-align:middle}.svg-Commons-logo_sister{background-position:0 0;width:47px;height:47px}.svg-MediaWiki-logo_sister{background-position:0 -47px;width:42px;height:42px}.svg-Meta-Wiki-logo_sister{background-position:0 -89px;width:37px;height:37px}.svg-Wikibooks-logo_sister{background-position:0 -126px;width:37px;height:37px}.svg-Wikidata-logo_sister{background-position:0 -163px;width:49px;height:49px}.svg-Wikimedia-logo_black{background-position:0 -212px;width:42px;height:42px}.svg-Wikipedia_wordmark{background-position:0 -254px;width:176px;height:32px}.svg-Wikiquote-logo_sister{background-position:0 -286px;width:42px;height:42px}.svg-Wikisource-logo_sister{background-position:0 -328px;width:39px;height:39px}.svg-Wikispecies-logo_sister{background-position:0 -367px;width:42px;height:42px}.svg-Wikiversity-logo_sister{background-position:0 -409px;width:43px;height:37px}.svg-Wikivoyage-logo_sister{background-position:0 -446px;width:36px;height:36px}.svg-Wiktionary-logo_sister{background-position:0 -482px;width:37px;height:37px}.svg-arrow-down{background-position:0 -519px;width:12px;height:8px}.svg-arrow-down-blue{background-position:0 -527px;width:14px;height:14px}.svg-badge_google_play_store{background-position:0 -541px;width:124px;height:38px}.svg-badge_ios_app_store{background-position:0 -579px;width:110px;height:38px}.svg-language-icon{background-position:0 -617px;width:22px;height:22px}.svg-noimage{background-position:0 -639px;width:58px;height:58px}.svg-search-icon{background-position:0 -697px;width:22px;height:22px}.svg-wikipedia_app_tile{background-position:0 -719px;width:42px;height:42px}
</style>
<style>
html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;font-size:62.5%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{font-size:32px;font-size:3.2rem;margin:1.2rem 0}mark{background:#fc3;color:#000}small{font-size:13px;font-size:1.3rem}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}svg:not(:root){overflow:hidden}figure{margin:1.6rem 4rem}hr{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:14px;font-size:1.4rem}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type=checkbox],input[type=radio]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-appearance:none;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}input[type=search]:focus{outline-offset:-2px}fieldset{border:1px solid #a2a9b1;margin:0 .2rem;padding:.6rem 1rem 1.2rem}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:700}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}.hidden,[hidden]{display:none!important}.screen-reader-text{display:block;position:absolute!important;clip:rect(1px,1px,1px,1px);width:1px;height:1px;margin:-1px;border:0;padding:0;overflow:hidden}body{background-color:#fff;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Lato,Helvetica,Arial,sans-serif;font-size:14px;font-size:1.4rem;line-height:1.5;margin:.4rem 0 1.6rem}a{-ms-touch-action:manipulation;touch-action:manipulation}a,a:active,a:focus{unicode-bidi:embed;outline:0;color:#36c;text-decoration:none}a:focus{outline:1px solid #36c}a:hover{text-decoration:underline}img{vertical-align:middle}hr,img{border:0}hr{clear:both;height:0;border-bottom:1px solid #c8ccd1;margin:.26rem 1.3rem}.pure-button{display:inline-block;zoom:1;line-height:normal;white-space:nowrap;text-align:center;cursor:pointer;-webkit-user-drag:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;background-color:#f8f9fa;color:#202122;position:relative;min-height:19.2px;min-height:1.92rem;min-width:16px;min-width:1.6rem;margin:.16rem 0;border:1px solid #a2a9b1;-moz-border-radius:2px;border-radius:2px;padding:.8rem 1.6rem;font-family:inherit;font-size:inherit;font-weight:700;text-decoration:none;vertical-align:top;-webkit-transition:background .1s ease,color .1s ease,border-color .1s ease,-webkit-box-shadow .1s ease;transition:background .1s ease,color .1s ease,border-color .1s ease,-webkit-box-shadow .1s ease;-o-transition:background .1s ease,color .1s ease,border-color .1s ease,box-shadow .1s ease;-moz-transition:background .1s ease,color .1s ease,border-color .1s ease,box-shadow .1s ease,-moz-box-shadow .1s ease;transition:background .1s ease,color .1s ease,border-color .1s ease,box-shadow .1s ease;transition:background .1s ease,color .1s ease,border-color .1s ease,box-shadow .1s ease,-webkit-box-shadow .1s ease,-moz-box-shadow .1s ease}.pure-button::-moz-focus-inner{padding:0;border:0}.pure-button-hover,.pure-button:hover{background-color:#fff;border-color:#a2a9b1;color:#404244}.pure-button-active,.pure-button:active{background-color:#c8ccd1;border-color:#72777d;color:#000}.pure-button:focus{outline:0;border-color:#36c;-webkit-box-shadow:inset 0 0 0 1px #36c;-moz-box-shadow:inset 0 0 0 1px #36c;box-shadow:inset 0 0 0 1px #36c}.pure-button-primary-progressive{background-color:#36c;border-color:#36c;color:#fff}.pure-button-primary-progressive:hover{background:#447ff5;border-color:#447ff5}.pure-button-primary-progressive:active{background-color:#2a4b8d;border-color:#2a4b8d;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;color:#fff}.pure-button-primary-progressive:focus{-webkit-box-shadow:inset 0 0 0 1px #36c,inset 0 0 0 2px #fff;-moz-box-shadow:inset 0 0 0 1px #36c,inset 0 0 0 2px #fff;box-shadow:inset 0 0 0 1px #36c,inset 0 0 0 2px #fff;border-color:#36c}.pure-form input[type=search]{background-color:#fff;display:inline-block;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;border:1px solid #a2a9b1;-moz-border-radius:2px;border-radius:2px;padding:.8rem;-webkit-box-shadow:inset 0 0 0 1px #fff;-moz-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;vertical-align:middle}.pure-form input:focus:invalid{color:#b32424;border-color:#d33}.pure-form fieldset{margin:0;padding:.56rem 0 1.2rem;border:0}@media only screen and (max-width:480px){.pure-form input[type=search]{display:block}}.central-textlogo-wrapper{display:inline-block;vertical-align:bottom}.central-textlogo{position:relative;margin:4rem auto .5rem;width:270px;font-family:Linux Libertine,Hoefler Text,Georgia,Times New Roman,Times,serif;font-size:30px;font-size:3rem;font-weight:400;line-height:33px;line-height:3.3rem;text-align:center;-moz-font-feature-settings:"ss05=1";-moz-font-feature-settings:"ss05";-webkit-font-feature-settings:"ss05";-ms-font-feature-settings:"ss05";font-feature-settings:"ss05"}.localized-slogan{display:block;font-family:Linux Libertine,Georgia,Times,serif;font-size:15px;font-size:1.5rem;font-weight:400}.central-textlogo__image{color:transparent;display:inline-block;overflow:hidden;text-indent:-10000px}.central-featured-logo{position:absolute;top:158px;left:35px}@media (max-width:480px){.central-textlogo{position:relative;height:70px;width:auto;margin:2rem 0 0;text-align:center;line-height:25px;line-height:2.5rem;text-indent:-10px;text-indent:-1rem;font-size:1em}.central-textlogo-wrapper{position:relative;top:12px;text-indent:2px;text-indent:.2rem}.svg-Wikipedia_wordmark{width:150px;height:25px;background-position:0 -218px;-webkit-background-size:100% 100%;-moz-background-size:100%;background-size:100%}.localized-slogan{font-size:14px;font-size:1.4rem}.central-featured-logo{position:relative;display:inline-block;width:57px;height:auto;left:0;top:0}}@media (max-width:240px){.central-textlogo__image{height:auto}}.central-featured{position:relative;height:325px;height:32.5rem;width:546px;width:54.6rem;max-width:100%;margin:0 auto;text-align:center;vertical-align:middle}.central-featured-lang{position:absolute;width:156px;width:15.6rem}.central-featured-lang .link-box{display:block;padding:0;text-decoration:none;white-space:normal}.central-featured-lang .link-box:hover strong{text-decoration:underline}.central-featured-lang :hover{background-color:#eaecf0}.central-featured-lang strong{display:block;font-size:16px;font-size:1.6rem}.central-featured-lang small{color:#54595d;display:inline-block;font-size:13px;font-size:1.3rem;line-height:1.6}.central-featured-lang em{font-style:italic}.central-featured-lang .emNonItalicLang{font-style:normal}.lang1{top:0;right:60%}.lang2{top:0;left:60%}.lang3{top:20%;right:70%}.lang4{top:20%;left:70%}.lang5{top:40%;right:72%}.lang6{top:40%;left:72%}.lang7{top:60%;right:70%}.lang8{top:60%;left:70%}.lang9{top:80%;right:60%}.lang10{top:80%;left:60%}@media (max-width:480px){.central-featured{width:auto;height:auto;margin-top:7rem;font-size:13px;font-size:1.3rem;text-align:left}.central-featured:after{content:" ";display:block;visibility:hidden;clear:both;height:0;font-size:0}.central-featured-lang{display:block;float:left;position:relative;top:auto;left:auto;right:auto;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;height:64px;height:6.4rem;width:33%;margin:0 0 16px;padding:0 1.6rem;font-size:14px;font-size:1.4rem;text-align:center}.central-featured-lang strong{font-size:14px;font-size:1.4rem;margin-bottom:4px}.central-featured-lang small{line-height:1.4}}@media (max-width:375px){.central-featured-lang{font-size:13px;font-size:1.3rem}}@media (max-width:240px){.central-featured-lang{width:100%}}.search-container{float:none;max-width:95%;width:540px;margin:.4rem auto 1.95rem;text-align:center;vertical-align:middle}.search-container fieldset{word-spacing:-4px}.search-container button{min-height:44px;min-height:4.4rem;margin:0;-moz-border-radius:0 2px 2px 0;border-radius:0 2px 2px 0;padding:.8rem 1.6rem;font-size:16px;font-size:1.6rem;z-index:2}.search-container button .svg-search-icon{text-indent:-9999px}.search-container input[type=search]::-webkit-search-results-button,.search-container input[type=search]::-webkit-search-results-decoration{-webkit-appearance:none}.search-container input::-webkit-calendar-picker-indicator{display:none}.search-container .sprite.svg-arrow-down{position:absolute;top:8px;top:.8rem;right:6px;right:.6rem}#searchInput{-webkit-appearance:none;width:100%;height:44px;height:4.4rem;border-width:1px 0 1px 1px;-moz-border-radius:2px 0 0 2px;border-radius:2px 0 0 2px;padding:.8rem 9.6rem .8rem 1.2rem;font-size:16px;font-size:1.6rem;line-height:1.6;-webkit-transition:background .1s ease,border-color .1s ease,-webkit-box-shadow .1s ease;transition:background .1s ease,border-color .1s ease,-webkit-box-shadow .1s ease;-o-transition:background .1s ease,border-color .1s ease,box-shadow .1s ease;-moz-transition:background .1s ease,border-color .1s ease,box-shadow .1s ease,-moz-box-shadow .1s ease;transition:background .1s ease,border-color .1s ease,box-shadow .1s ease;transition:background .1s ease,border-color .1s ease,box-shadow .1s ease,-webkit-box-shadow .1s ease,-moz-box-shadow .1s ease}#searchInput:hover{border-color:#72777d}#searchInput:focus{border-color:#36c;-webkit-box-shadow:inset 0 0 0 1px #36c;-moz-box-shadow:inset 0 0 0 1px #36c;box-shadow:inset 0 0 0 1px #36c;outline:0}.search-container .search-input{display:inline-block;position:relative;width:73%;vertical-align:top}@media only screen and (max-width:480px){.search-container .pure-form fieldset{margin-left:1rem;margin-right:6.6rem}.search-container .search-input{width:100%;margin-right:-6.6rem}.search-container .pure-form button{float:right;right:-56px;right:-5.6rem}}.suggestions-dropdown{background-color:#fff;display:inline-block;position:absolute;left:0;z-index:2;margin:0;padding:0;border:1px solid #a2a9b1;border-top:0;-webkit-box-shadow:0 2px 2px 0 rgba(0,0,0,.25);-moz-box-shadow:0 2px 2px 0 rgba(0,0,0,.25);box-shadow:0 2px 2px 0 rgba(0,0,0,.25);list-style-type:none;word-spacing:normal}.suggestion-link,.suggestions-dropdown{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;width:100%;text-align:left}.suggestion-link{display:block;position:relative;min-height:70px;min-height:7rem;padding:1rem 1rem 1rem 8.5rem;border-bottom:1px solid #eaecf0;color:inherit;text-decoration:none;text-align:initial;white-space:normal}.suggestion-link.active{background-color:#eaf3ff}a.suggestion-link:hover{text-decoration:none}a.suggestion-link:active,a.suggestion-link:focus{outline:0;white-space:normal}.suggestion-thumbnail{background-color:#eaecf0;background-image:url(portal/wikipedia.org/assets/img/noimage.png);background-image:-webkit-linear-gradient(transparent,transparent),url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 56 56'%3E%3Cpath fill='%23eee' d='M0 0h56v56H0z'/%3E%3Cpath fill='%23999' d='M36.4 13.5H17.8v24.9c0 1.4.9 2.3 2.3 2.3h18.7v-25c.1-1.4-1-2.2-2.4-2.2zM30.2 17h5.1v6.4h-5.1V17zm-8.8 0h6v1.8h-6V17zm0 4.6h6v1.8h-6v-1.8zm0 15.5v-1.8h13.8v1.8H21.4zm13.8-4.5H21.4v-1.8h13.8v1.8zm0-4.7H21.4v-1.8h13.8v1.8z'/%3E%3C/svg%3E");background-image:-webkit-linear-gradient(transparent,transparent),url(portal/wikipedia.org/assets/img/noimage.svg) !ie;background-image:-webkit-gradient(linear,left top,left bottom,from(transparent),to(transparent)),url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 56 56'%3E%3Cpath fill='%23eee' d='M0 0h56v56H0z'/%3E%3Cpath fill='%23999' d='M36.4 13.5H17.8v24.9c0 1.4.9 2.3 2.3 2.3h18.7v-25c.1-1.4-1-2.2-2.4-2.2zM30.2 17h5.1v6.4h-5.1V17zm-8.8 0h6v1.8h-6V17zm0 4.6h6v1.8h-6v-1.8zm0 15.5v-1.8h13.8v1.8H21.4zm13.8-4.5H21.4v-1.8h13.8v1.8zm0-4.7H21.4v-1.8h13.8v1.8z'/%3E%3C/svg%3E");background-image:-moz- oldlinear-gradient(transparent,transparent),url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 56 56'%3E%3Cpath fill='%23eee' d='M0 0h56v56H0z'/%3E%3Cpath fill='%23999' d='M36.4 13.5H17.8v24.9c0 1.4.9 2.3 2.3 2.3h18.7v-25c.1-1.4-1-2.2-2.4-2.2zM30.2 17h5.1v6.4h-5.1V17zm-8.8 0h6v1.8h-6V17zm0 4.6h6v1.8h-6v-1.8zm0 15.5v-1.8h13.8v1.8H21.4zm13.8-4.5H21.4v-1.8h13.8v1.8zm0-4.7H21.4v-1.8h13.8v1.8z'/%3E%3C/svg%3E");background-image:-o-linear-gradient(transparent,transparent),url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 56 56'%3E%3Cpath fill='%23eee' d='M0 0h56v56H0z'/%3E%3Cpath fill='%23999' d='M36.4 13.5H17.8v24.9c0 1.4.9 2.3 2.3 2.3h18.7v-25c.1-1.4-1-2.2-2.4-2.2zM30.2 17h5.1v6.4h-5.1V17zm-8.8 0h6v1.8h-6V17zm0 4.6h6v1.8h-6v-1.8zm0 15.5v-1.8h13.8v1.8H21.4zm13.8-4.5H21.4v-1.8h13.8v1.8zm0-4.7H21.4v-1.8h13.8v1.8z'/%3E%3C/svg%3E");background-image:linear-gradient(transparent,transparent),url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 56 56'%3E%3Cpath fill='%23eee' d='M0 0h56v56H0z'/%3E%3Cpath fill='%23999' d='M36.4 13.5H17.8v24.9c0 1.4.9 2.3 2.3 2.3h18.7v-25c.1-1.4-1-2.2-2.4-2.2zM30.2 17h5.1v6.4h-5.1V17zm-8.8 0h6v1.8h-6V17zm0 4.6h6v1.8h-6v-1.8zm0 15.5v-1.8h13.8v1.8H21.4zm13.8-4.5H21.4v-1.8h13.8v1.8zm0-4.7H21.4v-1.8h13.8v1.8z'/%3E%3C/svg%3E");background-image:-webkit-gradient(linear,left top,left bottom,from(transparent),to(transparent)),url(portal/wikipedia.org/assets/img/noimage.svg) !ie;background-image:-moz- oldlinear-gradient(transparent,transparent),url(portal/wikipedia.org/assets/img/noimage.svg) !ie;background-image:-o-linear-gradient(transparent,transparent),url(portal/wikipedia.org/assets/img/noimage.svg) !ie;background-image:linear-gradient(transparent,transparent),url(portal/wikipedia.org/assets/img/noimage.svg) !ie;background-image:-o-linear-gradient(transparent,transparent),url(portal/wikipedia.org/assets/img/noimage.png);background-position:50%;background-repeat:no-repeat;-webkit-background-size:100% auto;-moz-background-size:100% auto;background-size:100% auto;-webkit-background-size:cover;-moz-background-size:cover;background-size:cover;height:100%;width:70px;width:7rem;position:absolute;top:0;left:0}.suggestion-title{margin:0 0 .78rem;color:#54595d;font-size:16px;font-size:1.6rem;line-height:18.72px;line-height:1.872rem}.suggestion-link.active .suggestion-title{color:#36c}.suggestion-highlight{font-style:normal;text-decoration:underline}.suggestion-description{color:#72777d;margin:0;font-size:13px;font-size:1.3rem;line-height:14.299px;line-height:1.43rem}.styled-select{display:none;position:absolute;top:10px;top:1rem;bottom:12px;bottom:1.2rem;right:12px;right:1.2rem;max-width:95px;max-width:9.5rem;height:24px;height:2.4rem;-moz-border-radius:2px;border-radius:2px}.styled-select:hover{background-color:#f8f9fa}.styled-select .hide-arrow{right:32px;right:3.2rem;max-width:68px;max-width:6.8rem;height:24px;height:2.4rem;overflow:hidden;text-align:right}.styled-select select{background:transparent;display:inline;overflow:hidden;height:24px;height:2.4rem;min-width:110px;min-width:11rem;max-width:110px;max-width:11rem;width:110px;width:11rem;outline:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;border:0;line-height:24px;line-height:2.4rem;-webkit-appearance:none;-moz-appearance:window;text-indent:.01px;-o-text-overflow:"";text-overflow:"";opacity:0;-moz-appearance:none;appearance:none;cursor:pointer}.styled-select.no-js{width:95px;width:9.5rem}.styled-select.no-js select{opacity:1;margin:0;padding:0 2.4rem 0 .8rem;color:#54595d}.styled-select.no-js .hide-arrow{width:68px;width:6.8rem}.search-container .styled-select.no-js .js-langpicker-label{display:none}.styled-select.js-enabled .hide-arrow{padding:0 2.4rem 0 .8rem}.styled-select.js-enabled select{background:transparent;position:absolute;top:0;left:0;height:100%;z-index:1;width:100%;border:0;margin:0;padding:0 2.4rem;color:transparent;color:hsla(0,0%,100%,0)}.styled-select.js-enabled select option{color:#54595d}.styled-select.js-enabled select:hover{background-color:transparent}.styled-select-active-helper{display:none}.styled-select.js-enabled select:focus+.styled-select-active-helper{display:block;position:absolute;top:0;left:0;z-index:0;width:100%;height:100%;outline:1px solid #36c}.search-container .js-langpicker-label{display:inline-block;margin:0;color:#54595d;font-size:13px;font-size:1.3rem;line-height:24px;line-height:2.4rem;text-transform:uppercase}.styled-select select:hover{background-color:#f8f9fa}.styled-select select::-ms-expand{display:none}.styled-select select:focus{outline:0;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}@-moz-document url-prefix(){.styled-select select{width:110%}}.other-projects{display:inline-block;width:65%}.other-project{float:left;position:relative;width:33%;height:90px;height:9rem}.other-project-link{display:inline-block;min-height:50px;width:90%;padding:1em;white-space:nowrap}.other-project-link:hover{background-color:#eaecf0}a.other-project-link{text-decoration:none}.other-project-icon{display:inline-block;width:50px;text-align:center}.svg-Wikinews-logo_sister{background-image:url(portal/wikipedia.org/assets/img/Wikinews-logo_sister.png);background-position:0 0;-webkit-background-size:47px 26px;-moz-background-size:47px 26px;background-size:47px 26px;width:47px;height:26px}@media (-o-min-device-pixel-ratio:5/4),(-webkit-min-device-pixel-ratio:1.25),(min-resolution:120dpi){.svg-Wikinews-logo_sister{background-image:url(portal/wikipedia.org/assets/img/Wikinews-logo_sister@2x.png)}}.other-project-text,.other-project .sprite-project-logos{display:inline-block}.other-project-text{max-width:65%;font-size:14px;font-size:1.4rem;vertical-align:middle;white-space:normal}.other-project-tagline,.other-project-title{display:block}.other-project-tagline{color:#54595d;font-size:13px;font-size:1.3rem}@media screen and (max-width:768px){.other-projects{width:100%}.other-project{width:33%}}@media screen and (max-width:480px){.other-project{width:50%}.other-project-tagline{-webkit-hyphens:auto;-moz-hyphens:auto;-ms-hyphens:auto;hyphens:auto}}@media screen and (max-width:320px){.other-project-text{margin-right:5px;font-size:13px;font-size:1.3rem}}.lang-list-container{background-color:#f8f9fa;overflow:hidden;position:relative;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;max-height:0;width:80%;margin:-1.6rem auto 4.8rem;-webkit-transition:max-height .5s ease-out .16s,visibility .5s ease-in 1s;-o-transition:max-height .5s ease-out .16s,visibility .5s ease-in 1s;-moz-transition:max-height .5s ease-out .16s,visibility .5s ease-in 1s;transition:max-height .5s ease-out .16s,visibility .5s ease-in 1s}.js-enabled .lang-list-container{visibility:hidden}.lang-list-active .lang-list-container,.no-js .lang-list-container{visibility:visible;max-height:10000px;-webkit-transition:max-height 1s ease-in .2s,visibility 1000s ease-in 0ms;-o-transition:max-height 1s ease-in .2s,visibility 1000s ease-in 0ms;-moz-transition:max-height 1s ease-in .2s,visibility 1000s ease-in 0ms;transition:max-height 1s ease-in .2s,visibility 1000s ease-in 0ms}.no-js .lang-list-button{display:none}.lang-list-button-wrapper{text-align:center}.lang-list-button{background-color:#f8f9fa;display:inline;position:relative;z-index:1;margin:0 auto;padding:.6rem 1.2rem;outline:16px solid #fff;outline:1.6rem solid #fff;border:1px solid #a2a9b1;-moz-border-radius:2px;border-radius:2px;color:#36c;font-size:14px;font-size:1.4rem;font-weight:700;line-height:1;-webkit-transition:outline-width .1s ease-in .5s;-o-transition:outline-width .1s ease-in .5s;-moz-transition:outline-width .1s ease-in .5s;transition:outline-width .1s ease-in .5s}.lang-list-button:hover{background-color:#fff;border-color:#a2a9b1}.lang-list-button:focus{border-color:#36c;-webkit-box-shadow:inset 0 0 0 1px #36c;-moz-box-shadow:inset 0 0 0 1px #36c;box-shadow:inset 0 0 0 1px #36c}.lang-list-active .lang-list-button{background-color:#fff;outline:1px solid #fff;border-color:#72777d;-webkit-transition-delay:0s;-moz-transition-delay:0s;-o-transition-delay:0s;transition-delay:0s}.lang-list-button-text{padding:0 .64rem;vertical-align:middle}.lang-list-button i{display:inline-block;vertical-align:middle}.no-js .lang-list-border,.no-js .lang-list-button{display:none}.lang-list-border{background-color:#c8ccd1;display:block;position:relative;max-width:460px;width:80%;margin:-1.6rem auto 1.6rem;height:1px;-webkit-transition:max-width .2s ease-out .4s;-o-transition:max-width .2s ease-out .4s;-moz-transition:max-width .2s ease-out .4s;transition:max-width .2s ease-out .4s}.lang-list-active .lang-list-border{max-width:85%;-webkit-transition-delay:0s;-moz-transition-delay:0s;-o-transition-delay:0s;transition-delay:0s}.no-js .lang-list-content{padding:0}.lang-list-content{position:relative;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;width:100%;padding:1.6rem 1.6rem 0}.svg-arrow-down-blue{-webkit-transition:-webkit-transform .2s ease-out;transition:-webkit-transform .2s ease-out;-o-transition:transform .2s ease-out;-moz-transition:transform .2s ease-out,-moz-transform .2s ease-out;transition:transform .2s ease-out;transition:transform .2s ease-out,-webkit-transform .2s ease-out,-moz-transform .2s ease-out}.lang-list-active .svg-arrow-down-blue{-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.langlist{width:auto;margin:1.6rem 0;text-align:left}.langlist-others{font-weight:700;text-align:center}.hlist ul{margin:0;padding:0}.hlist li,.hlist ul ul{display:inline}.hlist li:before{content:" · ";font-weight:700}.hlist li:first-child:before{content:none}.hlist li>ul:before{content:"\00a0("}.hlist li>ul:after{content:") "}.langlist>ul{-webkit-column-width:11.2rem;-moz-column-width:11.2rem;column-width:11.2rem}.langlist>ul>li{display:block;line-height:1.7;-webkit-column-break-inside:avoid;page-break-inside:avoid;break-inside:avoid}.no-js .langlist>ul{text-align:center;list-style-type:circle}.no-js .langlist>ul>li{display:inline-block;padding:0 .8rem}.langlist>ul>li:before{content:none}.langlist>ul>li a{white-space:normal}@media (max-width:480px){.langlist{font-size:inherit}.langlist a{word-wrap:break-word;white-space:normal}.lang-list-container{width:auto;margin-left:.8rem;margin-right:.8rem}.bookshelf{overflow:visible}}.bookshelf{display:block;border-top:1px solid #c8ccd1;-webkit-box-shadow:0 -1px 0 #fff;-moz-box-shadow:0 -1px 0 #fff;box-shadow:0 -1px 0 #fff;text-align:center;white-space:nowrap}.bookshelf .text{background-color:#f8f9fa;position:relative;top:-11.2px;top:-1.12rem;font-weight:400;padding:0 .8rem}.bookshelf-container{display:block;overflow:visible;width:100%;height:1px;margin:2.4rem 0 1.6rem;font-size:13px;font-size:1.3rem;font-weight:700;line-height:1.5}@media (max-width:480px){.bookshelf{width:auto;left:auto}.bookshelf-container{text-align:left;width:auto}}.app-badges .footer-sidebar-content{background-color:#f8f9fa}.app-badges .footer-sidebar-text{padding-top:.8rem;padding-bottom:.8rem}.app-badges .sprite.footer-sidebar-icon{top:8px;top:.8rem}.app-badges ul{margin:0;padding:0;list-style-type:none}.app-badge{display:inline-block}.app-badge a{color:transparent}@media screen and (max-width:768px){.app-badges .footer-sidebar-content{text-align:center}.app-badges .sprite.footer-sidebar-icon{display:inline-block;position:relative;margin:0;top:-3px;left:0;vertical-align:middle;-webkit-transform:scale(.7);-moz-transform:scale(.7);-ms-transform:scale(.7);transform:scale(.7)}}.footer{overflow:hidden;max-width:100%;margin:0 auto;padding:4.16rem 1.28rem 1.28rem;font-size:13px;font-size:1.3rem}.footer:after,.footer:before{content:" ";display:table}.footer:after{clear:both}.footer-sidebar{width:35%;float:left;clear:left;margin-bottom:3.2rem;vertical-align:top}.footer-sidebar-content{position:relative;max-width:350px;margin:0 auto}.sprite.footer-sidebar-icon{position:absolute;top:0;left:8px;left:.8rem}.footer-sidebar-text{position:relative;margin:0;padding-left:6rem;padding-right:2rem;color:#54595d}.site-license{color:#54595d;text-align:center}.site-license small:after{content:"\2022";display:inline-block;font-size:13px;font-size:1.3rem;line-height:inherit;margin-left:.8rem;margin-right:.5rem}.site-license small:last-child:after{display:none}@media screen and (max-width:768px){.footer{display:-webkit-box;display:-webkit-flex;display:-moz-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-moz-box-orient:vertical;-moz-box-direction:normal;-ms-flex-direction:column;flex-direction:column;padding-top:1.28rem}.footer .footer-sidebar{-webkit-box-ordinal-group:1;-moz-box-ordinal-group:1;-webkit-order:1;-ms-flex-order:1;order:1}.footer .other-projects{-webkit-box-ordinal-group:2;-moz-box-ordinal-group:2;-webkit-order:2;-ms-flex-order:2;order:2}.footer .app-badges{-webkit-box-ordinal-group:3;-moz-box-ordinal-group:3;-webkit-order:3;-ms-flex-order:3;order:3}.footer-sidebar{width:100%}.sprite.footer-sidebar-icon{display:block;position:relative;left:0;margin:0 auto 1.28rem}.footer-sidebar-content{max-width:none}.footer-sidebar-text{margin:0;padding:0;text-align:center}}@media screen and (max-width:480px){.footer{padding:.96rem .64rem 1.28rem}}@media (max-width:480px){.search-container{margin-top:0;height:78px;height:7.8rem;position:absolute;top:96px;top:9.6rem;left:0;right:0;max-width:100%;width:auto;padding:0;text-align:left}.search-container label{display:none}.search-form #searchInput{max-width:40%;vertical-align:middle}.search-form .formBtn{max-width:25%;vertical-align:middle}form fieldset{margin:0;border-left:0;border-right:0}hr{margin-top:.65rem}}@media (-o-min-device-pixel-ratio:2/1),(-webkit-min-device-pixel-ratio:2),(min--moz-device-pixel-ratio:2),(min-resolution:2dppx),(min-resolution:192dpi){hr{border-bottom-width:.5px}}@supports (-webkit-marquee-style:slide){hr{border-bottom-width:1px}}.js-enabled .central-featured,.js-enabled .jsl10n{visibility:hidden}.jsl10n-visible .central-featured,.jsl10n-visible .jsl10n{visibility:visible}@media print{body{background-color:transparent}a{color:#000!important;background:none!important;padding:0!important}a:link,a:visited{color:#520;background:transparent}img{border:0}}
</style>
<link href="//upload.wikimedia.org" rel="preconnect"/>
</head>
<body id="www-wikipedia-org">
<div class="central-textlogo">
<img alt="Wikipedia" class="central-featured-logo" height="183" src="portal/wikipedia.org/assets/img/Wikipedia-logo-v2.png" srcset="portal/wikipedia.org/assets/img/Wikipedia-logo-v2@1.5x.png 1.5x, portal/wikipedia.org/assets/img/Wikipedia-logo-v2@2x.png 2x" width="200"/>
<h1 class="central-textlogo-wrapper">
<span class="central-textlogo__image sprite svg-Wikipedia_wordmark">
Wikipedia
</span>
<strong class="jsl10n localized-slogan" data-jsl10n="portal.slogan">The Free Encyclopedia</strong>
</h1>
</div>
<div class="central-featured" data-el-section="primary links">
<!-- #1. en.wikipedia.org - 1 627 861 000 views/day -->
<div class="central-featured-lang lang1" dir="ltr" lang="en">
<a class="link-box" data-slogan="The Free Encyclopedia" href="//en.wikipedia.org/" id="js-link-box-en" title="English â Wikipedia â The Free Encyclopedia">
<strong>English</strong>
<small><bdi dir="ltr">6 458 000+</bdi> <span>articles</span></small>
</a>
</div>
<!-- #2. ja.wikipedia.org - 250 585 000 views/day -->
<div class="central-featured-lang lang2" dir="ltr" lang="ja">
<a class="link-box" data-slogan="ããªã¼ç¾ç§äºå
¸" href="//ja.wikipedia.org/" id="js-link-box-ja" title="Nihongo â ã¦ã£ãããã£ã¢ â ããªã¼ç¾ç§äºå
¸">
<strong>æ¥æ¬èª</strong>
<small><bdi dir="ltr">1 314 000+</bdi> <span>è¨äº</span></small>
</a>
</div>
<!-- #3. es.wikipedia.org - 185 962 000 views/day -->
<div class="central-featured-lang lang3" dir="ltr" lang="es">
<a class="link-box" data-slogan="La enciclopedia libre" href="//es.wikipedia.org/" id="js-link-box-es" title="Español â Wikipedia â La enciclopedia libre">
<strong>Español</strong>
<small><bdi dir="ltr">1 755 000+</bdi> <span>artÃculos</span></small>
</a>
</div>
<!-- #4. ru.wikipedia.org - 179 835 000 views/day -->
<div class="central-featured-lang lang4" dir="ltr" lang="ru">
<a class="link-box" data-slogan="Ð¡Ð²Ð¾Ð±Ð¾Ð´Ð½Ð°Ñ ÑнÑиклопедиÑ" href="//ru.wikipedia.org/" id="js-link-box-ru" title="Russkiy â ÐÐ¸ÐºÐ¸Ð¿ÐµÐ´Ð¸Ñ â Ð¡Ð²Ð¾Ð±Ð¾Ð´Ð½Ð°Ñ ÑнÑиклопедиÑ">
<strong>Ð ÑÑÑкий</strong>
<small><bdi dir="ltr">1 798 000+</bdi> <span>ÑÑаÑей</span></small>
</a>
</div>
<!-- #5. de.wikipedia.org - 174 708 000 views/day -->
<div class="central-featured-lang lang5" dir="ltr" lang="de">
<a class="link-box" data-slogan="Die freie Enzyklopädie" href="//de.wikipedia.org/" id="js-link-box-de" title="Deutsch â Wikipedia â Die freie Enzyklopädie">
<strong>Deutsch</strong>
<small><bdi dir="ltr">2 667 000+</bdi> <span>Artikel</span></small>
</a>
</div>
<!-- #6. fr.wikipedia.org - 171 325 000 views/day -->
<div class="central-featured-lang lang6" dir="ltr" lang="fr">
<a class="link-box" data-slogan="Lâencyclopédie libre" href="//fr.wikipedia.org/" id="js-link-box-fr" title="français â Wikipédia â Lâencyclopédie libre">
<strong>Français</strong>
<small><bdi dir="ltr">2 400 000+</bdi> <span>articles</span></small>
</a>
</div>
<!-- #7. it.wikipedia.org - 103 609 000 views/day -->
<div class="central-featured-lang lang7" dir="ltr" lang="it">
<a class="link-box" data-slogan="L'enciclopedia libera" href="//it.wikipedia.org/" id="js-link-box-it" title="Italiano â Wikipedia â L'enciclopedia libera">
<strong>Italiano</strong>
<small><bdi dir="ltr">1 742 000+</bdi> <span>voci</span></small>
</a>
</div>
<!-- #8. zh.wikipedia.org - 86 248 000 views/day -->
<div class="central-featured-lang lang8" dir="ltr" lang="zh">
<a class="link-box jscnconv" data-slogan="èªç±çç¾ç§å
¨ä¹¦ / èªç±çç¾ç§å
¨æ¸" data-title-hans="ZhÅngwén â ç»´åºç¾ç§ â èªç±çç¾ç§å
¨ä¹¦" data-title-hant="ZhÅngwén â ç¶åºç¾ç§ â èªç±çç¾ç§å
¨æ¸" href="//zh.wikipedia.org/" id="js-link-box-zh" title="ZhÅngwén â ç»´åºç¾ç§ / ç¶åºç¾ç§ â èªç±çç¾ç§å
¨ä¹¦ / èªç±çç¾ç§å
¨æ¸">
<strong>䏿</strong>
<small><bdi dir="ltr">1 256 000+</bdi> <span class="jscnconv" data-hans="æ¡ç®" data-hant="æ¢ç®">æ¡ç® / æ¢ç®</span></small>
</a>
</div>
<!-- #9. pt.wikipedia.org - 52 995 000 views/day -->
<div class="central-featured-lang lang9" dir="ltr" lang="pt">
<a class="link-box" data-slogan="A enciclopédia livre" href="//pt.wikipedia.org/" id="js-link-box-pt" title="Português â Wikipédia â A enciclopédia livre">
<strong>Português</strong>
<small><bdi dir="ltr">1 085 000+</bdi> <span>artigos</span></small>
</a>
</div>
<!-- #10. ar.wikipedia.org - 45 693 000 views/day -->
<div class="central-featured-lang lang10" dir="rtl" lang="ar">
<a class="link-box" data-slogan="اÙÙ
ÙØ³Ùعة Ø§ÙØØ±Ø©" href="//ar.wikipedia.org/" id="js-link-box-ar" title="Al-Ê¿ArabÄ«yah â ÙÙÙÙØ¨ÙØ¯ÙØ§ â Ø§ÙÙ
ÙØ³Ùعة Ø§ÙØØ±Ø©">
<strong><bdi dir="rtl">Ø§ÙØ¹Ø±Ø¨ÙØ©</bdi></strong>
<small><bdi dir="ltr">1 159 000+</bdi> <span>Ù
ÙØ§ÙØ©</span></small>
</a>
</div>
</div>
<div class="search-container">
<form action="//www.wikipedia.org/search-redirect.php" class="pure-form" data-el-section="search" id="search-form">
<fieldset>
<input name="family" type="hidden" value="Wikipedia"/>
<input id="hiddenLanguageInput" name="language" type="hidden" value="en"/>
<div class="search-input" id="search-input">
<label class="screen-reader-text" data-jsl10n="portal.search-input-label" for="searchInput">Search Wikipedia</label>
<input accesskey="F" autocomplete="off" autofocus="autofocus" dir="auto" id="searchInput" name="search" size="20" type="search"/>
<div class="styled-select no-js">
<div class="hide-arrow">
<select id="searchLanguage" name="language">
<option lang="af" value="af">Afrikaans</option>
<option lang="pl" value="pl">Polski</option>
<option lang="ar" value="ar">Ø§ÙØ¹Ø±Ø¨ÙØ©</option><!-- Al-Ê¿ArabÄ«yah -->
<option lang="ast" value="ast">Asturianu</option>
<option lang="az" value="az">AzÉrbaycanca</option>
<option lang="bg" value="bg">ÐÑлгаÑÑки</option><!-- BÇlgarski -->
<option lang="nan" value="nan">Bân-lâm-gú / HÅ-ló-oÄ</option>
<option lang="bn" value="bn">বাà¦à¦²à¦¾</option><!-- Bangla -->
<option lang="be" value="be">ÐелаÑÑÑкаÑ</option><!-- Belaruskaya -->
<option lang="ca" value="ca">Català </option>
<option lang="cs" value="cs">ÄeÅ¡tina</option><!-- ÄeÅ¡tina -->
<option lang="cy" value="cy">Cymraeg</option><!-- Cymraeg -->
<option lang="da" value="da">Dansk</option>
<option lang="de" value="de">Deutsch</option>
<option lang="et" value="et">Eesti</option>
<option lang="el" value="el">Îλληνικά</option><!-- EllÄ«niká -->
<option lang="en" selected="selected" value="en">English</option><!-- English -->
<option lang="es" value="es">Español</option>
<option lang="eo" value="eo">Esperanto</option>
<option lang="eu" value="eu">Euskara</option>
<option lang="fa" value="fa">ÙØ§Ø±Ø³Û</option><!-- FÄrsi -->
<option lang="fr" value="fr">Français</option><!-- français -->
<option lang="gl" value="gl">Galego</option>
<option lang="ko" value="ko">íêµì´</option><!-- Hangugeo -->
<option lang="hy" value="hy">ÕÕ¡ÕµÕ¥ÖÕ¥Õ¶</option><!-- Hayeren -->
<option lang="hi" value="hi">हिनà¥à¤¦à¥</option><!-- HindÄ« -->
<option lang="hr" value="hr">Hrvatski</option>
<option lang="id" value="id">Bahasa Indonesia</option>
<option lang="it" value="it">Italiano</option>
<option lang="he" value="he">×¢×ר×ת</option><!-- Ivrit -->
<option lang="ka" value="ka">á¥áá áá£áá</option><!-- Kartuli -->
<option lang="la" value="la">Latina</option>
<option lang="lv" value="lv">Latviešu</option>
<option lang="lt" value="lt">Lietuvių</option>
<option lang="hu" value="hu">Magyar</option>
<option lang="mk" value="mk">ÐакедонÑки</option><!-- Makedonski -->
<option lang="arz" value="arz">Ù
صرÙ</option><!-- Maá¹£rÄ« -->
<option lang="ms" value="ms">Bahasa Melayu</option>
<option lang="min" value="min">Bahaso Minangkabau</option>
<option lang="my" value="my">áá¼ááºáá¬áá¬áá¬</option><!-- Myanmarsar -->
<option lang="nl" value="nl">Nederlands</option>
<option lang="ja" value="ja">æ¥æ¬èª</option><!-- Nihongo -->
<option lang="nb" value="no">Norsk (bokmål)</option>
<option lang="nn" value="nn">Norsk (nynorsk)</option>
<option lang="ce" value="ce">ÐоÑ
Ñийн</option><!-- Noxçiyn -->
<option lang="uz" value="uz">OÊ»zbekcha / ÐзбекÑа</option><!-- OÊ»zbekcha -->
<option lang="pt" value="pt">Português</option>
<option lang="kk" value="kk">ÒазаÒÑа / QazaqÅa / ÙØ§Ø²Ø§Ùشا</option>
<option lang="ro" value="ro">RomânÄ</option><!-- RomânÄ -->
<option lang="ru" value="ru">Ð ÑÑÑкий</option><!-- Russkiy -->
<option lang="en" value="simple">Simple English</option>
<option lang="ceb" value="ceb">Sinugboanong Binisaya</option>
<option lang="sk" value="sk">SlovenÄina</option>
<option lang="sl" value="sl">SlovenÅ¡Äina</option>
<option lang="sr" value="sr">СÑпÑки / Srpski</option>
<option lang="sh" value="sh">Srpskohrvatski / СÑпÑкоÑ
ÑваÑÑки</option>
<option lang="fi" value="fi">Suomi</option><!-- suomi -->
<option lang="sv" value="sv">Svenska</option>
<option lang="ta" value="ta">தமிழà¯</option><!-- Tamiḻ -->
<option lang="tt" value="tt">ТаÑаÑÑа / Tatarça</option>
<option lang="th" value="th">ภาษาà¹à¸à¸¢</option><!-- Phasa Thai -->
<option lang="tg" value="tg">Тоҷикӣ</option><!-- Tojikī -->
<option lang="azb" value="azb">ØªÛØ±Ú©Ø¬Ù</option><!-- Türkce -->
<option lang="tr" value="tr">Türkçe</option><!-- Türkçe -->
<option lang="uk" value="uk">УкÑаÑнÑÑка</option><!-- Ukrayinsâka -->
<option lang="ur" value="ur">اردÙ</option><!-- Urdu -->
<option lang="vi" value="vi">Tiếng Viá»t</option>
<option lang="vo" value="vo">Volapük</option>
<option lang="war" value="war">Winaray</option>
<option lang="yue" value="zh-yue">ç²µèª</option><!-- Yuht Yúh / Jyut6 jyu5 -->
<option lang="zh" value="zh">䏿</option><!-- ZhÅngwén -->
</select>
<div class="styled-select-active-helper"></div>
</div>
<i class="sprite svg-arrow-down"></i>
</div>
</div>
<button class="pure-button pure-button-primary-progressive" type="submit">
<i class="sprite svg-search-icon" data-jsl10n="search-input-button">Search</i>
</button>
<input name="go" type="hidden" value="Go"/>
</fieldset>
</form>
</div>
<div class="lang-list-button-wrapper">
<button class="lang-list-button" id="js-lang-list-button">
<i class="sprite svg-language-icon"></i>
<span class="lang-list-button-text jsl10n" data-jsl10n="portal.language-button-text">Read Wikipedia in your language </span>
<i class="sprite svg-arrow-down-blue"></i>
</button>
</div>
<div class="lang-list-border"></div>
<div class="lang-list-container">
<div class="lang-list-content" id="js-lang-lists">
<h2 class="bookshelf-container">
<span class="bookshelf">
<span class="text">
<bdi dir="ltr">
1 000 000+
</bdi>
<span class="jsl10n" data-jsl10n="entries">
articles
</span>
</span>
</span>
</h2>
<div class="langlist langlist-large hlist" data-el-section="secondary links">
<ul>
<li><a href="//pl.wikipedia.org/" lang="pl">Polski</a></li>
<li><a href="//ar.wikipedia.org/" lang="ar" title="Al-Ê¿ArabÄ«yah"><bdi dir="rtl">Ø§ÙØ¹Ø±Ø¨ÙØ©</bdi></a></li>
<li><a href="//de.wikipedia.org/" lang="de">Deutsch</a></li>
<li><a href="//en.wikipedia.org/" lang="en" title="English">English</a></li>
<li><a href="//es.wikipedia.org/" lang="es">Español</a></li>
<li><a href="//fr.wikipedia.org/" lang="fr" title="français">Français</a></li>
<li><a href="//it.wikipedia.org/" lang="it">Italiano</a></li>
<li><a href="//arz.wikipedia.org/" lang="arz" title="Maá¹£rÄ«"><bdi dir="rtl">Ù
صرÙ</bdi></a></li>
<li><a href="//nl.wikipedia.org/" lang="nl">Nederlands</a></li>
<li><a href="//ja.wikipedia.org/" lang="ja" title="Nihongo">æ¥æ¬èª</a></li>
<li><a href="//pt.wikipedia.org/" lang="pt">Português</a></li>
<li><a href="//ru.wikipedia.org/" lang="ru" title="Russkiy">Ð ÑÑÑкий</a></li>
<li><a href="//ceb.wikipedia.org/" lang="ceb">Sinugboanong Binisaya</a></li>
<li><a href="//sv.wikipedia.org/" lang="sv">Svenska</a></li>
<li><a href="//uk.wikipedia.org/" lang="uk" title="Ukrayinsâka">УкÑаÑнÑÑка</a></li>
<li><a href="//vi.wikipedia.org/" lang="vi">Tiếng Viá»t</a></li>
<li><a href="//war.wikipedia.org/" lang="war">Winaray</a></li>
<li><a href="//zh.wikipedia.org/" lang="zh" title="ZhÅngwén">䏿</a></li>
</ul>
</div>
<h2 class="bookshelf-container">
<span class="bookshelf">
<span class="text">
<bdi dir="ltr">
100 000+
</bdi>
<span class="jsl10n" data-jsl10n="portal.entries">
articles
</span>
</span>
</span>
</h2>
<div class="langlist langlist-large hlist" data-el-section="secondary links">
<ul>
<li><a href="//af.wikipedia.org/" lang="af">Afrikaans</a></li>
<li><a href="//ast.wikipedia.org/" lang="ast">Asturianu</a></li>
<li><a href="//az.wikipedia.org/" lang="az">AzÉrbaycanca</a></li>
<li><a href="//bg.wikipedia.org/" lang="bg" title="BÇlgarski">ÐÑлгаÑÑки</a></li>
<li><a href="//zh-min-nan.wikipedia.org/" lang="nan">Bân-lâm-gú / HÅ-ló-oÄ</a></li>
<li><a href="//bn.wikipedia.org/" lang="bn" title="Bangla">বাà¦à¦²à¦¾</a></li>
<li><a href="//be.wikipedia.org/" lang="be" title="Belaruskaya">ÐелаÑÑÑкаÑ</a></li>
<li><a href="//ca.wikipedia.org/" lang="ca">Català </a></li>
<li><a href="//cs.wikipedia.org/" lang="cs" title="ÄeÅ¡tina">ÄeÅ¡tina</a></li>
<li><a href="//cy.wikipedia.org/" lang="cy" title="Cymraeg">Cymraeg</a></li>
<li><a href="//da.wikipedia.org/" lang="da">Dansk</a></li>
<li><a href="//et.wikipedia.org/" lang="et">Eesti</a></li>
<li><a href="//el.wikipedia.org/" lang="el" title="EllÄ«niká">Îλληνικά</a></li>
<li><a href="//eo.wikipedia.org/" lang="eo">Esperanto</a></li>
<li><a href="//eu.wikipedia.org/" lang="eu">Euskara</a></li>
<li><a href="//fa.wikipedia.org/" lang="fa" title="FÄrsi"><bdi dir="rtl">ÙØ§Ø±Ø³Û</bdi></a></li>
<li><a href="//gl.wikipedia.org/" lang="gl">Galego</a></li>
<li><a href="//ko.wikipedia.org/" lang="ko" title="Hangugeo">íêµì´</a></li>
<li><a href="//hy.wikipedia.org/" lang="hy" title="Hayeren">ÕÕ¡ÕµÕ¥ÖÕ¥Õ¶</a></li>
<li><a href="//hi.wikipedia.org/" lang="hi" title="HindÄ«">हिनà¥à¤¦à¥</a></li>
<li><a href="//hr.wikipedia.org/" lang="hr">Hrvatski</a></li>
<li><a href="//id.wikipedia.org/" lang="id">Bahasa Indonesia</a></li>
<li><a href="//he.wikipedia.org/" lang="he" title="Ivrit"><bdi dir="rtl">×¢×ר×ת</bdi></a></li>
<li><a href="//ka.wikipedia.org/" lang="ka" title="Kartuli">á¥áá áá£áá</a></li>
<li><a href="//la.wikipedia.org/" lang="la">Latina</a></li>
<li><a href="//lv.wikipedia.org/" lang="lv">Latviešu</a></li>
<li><a href="//lt.wikipedia.org/" lang="lt">Lietuvių</a></li>
<li><a href="//hu.wikipedia.org/" lang="hu">Magyar</a></li>
<li><a href="//mk.wikipedia.org/" lang="mk" title="Makedonski">ÐакедонÑки</a></li>
<li><a href="//ms.wikipedia.org/" lang="ms">Bahasa Melayu</a></li>
<li><a href="//min.wikipedia.org/" lang="min">Bahaso Minangkabau</a></li>
<li><a href="//my.wikipedia.org/" lang="my" title="Myanmarsar">áá¼ááºáá¬áá¬áá¬</a></li>
<li lang="no">Norsk<ul><li><a href="//no.wikipedia.org/" lang="nb">bokmål</a></li><li><a href="//nn.wikipedia.org/" lang="nn">nynorsk</a></li></ul></li>
<li><a href="//ce.wikipedia.org/" lang="ce" title="Noxçiyn">ÐоÑ
Ñийн</a></li>
<li><a href="//uz.wikipedia.org/" lang="uz" title="OÊ»zbekcha">OÊ»zbekcha / ÐзбекÑа</a></li>
<li><a href="//kk.wikipedia.org/" lang="kk"><span lang="kk-Cyrl">ÒазаÒÑа</span> / <span lang="kk-Latn">QazaqÅa</span> / <bdi dir="rtl" lang="kk-Arab">ÙØ§Ø²Ø§Ùشا</bdi></a></li>
<li><a href="//ro.wikipedia.org/" lang="ro" title="RomânÄ">RomânÄ</a></li>
<li><a href="//simple.wikipedia.org/" lang="en">Simple English</a></li>
<li><a href="//sk.wikipedia.org/" lang="sk">SlovenÄina</a></li>
<li><a href="//sl.wikipedia.org/" lang="sl">SlovenÅ¡Äina</a></li>
<li><a href="//sr.wikipedia.org/" lang="sr">СÑпÑки / Srpski</a></li>
<li><a href="//sh.wikipedia.org/" lang="sh">Srpskohrvatski / СÑпÑкоÑ
ÑваÑÑки</a></li>
<li><a href="//fi.wikipedia.org/" lang="fi" title="suomi">Suomi</a></li>
<li><a href="//ta.wikipedia.org/" lang="ta" title="Tamiḻ">தமிழà¯</a></li>
<li><a href="//tt.wikipedia.org/" lang="tt">ТаÑаÑÑа / Tatarça</a></li>
<li><a href="//th.wikipedia.org/" lang="th" title="Phasa Thai">ภาษาà¹à¸à¸¢</a></li>
<li><a href="//tg.wikipedia.org/" lang="tg" title="Tojikī">Тоҷикӣ</a></li>
<li><a href="//azb.wikipedia.org/" lang="azb" title="Türkce"><bdi dir="rtl">ØªÛØ±Ú©Ø¬Ù</bdi></a></li>
<li><a href="//tr.wikipedia.org/" lang="tr" title="Türkçe">Türkçe</a></li>
<li><a href="//ur.wikipedia.org/" lang="ur" title="Urdu"><bdi dir="rtl">اردÙ</bdi></a></li>
<li><a href="//vo.wikipedia.org/" lang="vo">Volapük</a></li>
<li><a href="//zh-yue.wikipedia.org/" lang="yue" title="Yuht Yúh / Jyut6 jyu5">ç²µèª</a></li>
</ul>
</div>
<h2 class="bookshelf-container">
<span class="bookshelf">
<span class="text">
<bdi dir="ltr">
10 000+
</bdi>
<span class="jsl10n" data-jsl10n="portal.entries">
articles
</span>
</span>
</span>
</h2>
<div class="langlist hlist" data-el-section="secondary links">
<ul>
<li><a href="//ace.wikipedia.org/" lang="ace">Bahsa Acèh</a></li>
<li><a href="//als.wikipedia.org/" lang="gsw">Alemannisch</a></li>
<li><a href="//am.wikipedia.org/" lang="am" title="ÄmariññÄ">á ááá</a></li>
<li><a href="//an.wikipedia.org/" lang="an">Aragonés</a></li>
<li><a href="//ban.wikipedia.org/" lang="ban" title="Basa Bali">Basa Bali</a></li>
<li><a href="//map-bms.wikipedia.org/" lang="map-x-bms">Basa Banyumasan</a></li>
<li><a href="//ba.wikipedia.org/" lang="ba" title="BaÅqortsa">ÐаÑҡоÑÑÑа</a></li>
<li><a href="//be-tarask.wikipedia.org/" lang="be" title="Belaruskaya (TaraÅ¡kievica)">ÐелаÑÑÑÐºÐ°Ñ (ТаÑаÑкевÑÑа)</a></li>
<li><a href="//bcl.wikipedia.org/" lang="bcl">Bikol Central</a></li>
<li><a href="//bpy.wikipedia.org/" lang="bpy" title="Bishnupriya Manipuri">বিষà§à¦£à§à¦ªà§à¦°à¦¿à¦¯à¦¼à¦¾ মণিপà§à¦°à§</a></li>
<li><a href="//bar.wikipedia.org/" lang="bar">Boarisch</a></li>
<li><a href="//bs.wikipedia.org/" lang="bs">Bosanski</a></li>
<li><a href="//br.wikipedia.org/" lang="br">Brezhoneg</a></li>
<li><a href="//cv.wikipedia.org/" lang="cv" title="ÄÄvaÅ¡la">ЧÓваÑла</a></li>
<li><a href="//nv.wikipedia.org/" lang="nv">Diné Bizaad</a></li>
<li><a href="//eml.wikipedia.org/" lang="roa-x-eml">Emiglià nâRumagnòl</a></li>
<li><a href="//hif.wikipedia.org/" lang="hif">Fiji Hindi</a></li>
<li><a href="//fo.wikipedia.org/" lang="fo">Føroyskt</a></li>
<li><a href="//fy.wikipedia.org/" lang="fy">Frysk</a></li>
<li><a href="//ga.wikipedia.org/" lang="ga">Gaeilge</a></li>
<li><a href="//gd.wikipedia.org/" lang="gd">GÃ idhlig</a></li>
<li><a href="//gu.wikipedia.org/" lang="gu" title="Gujarati">àªà«àªàª°àª¾àª¤à«</a></li>
<li><a href="//ha.wikipedia.org/" lang="ha" title="Hausa">Hausa</a></li>
<li><a href="//hsb.wikipedia.org/" lang="hsb">Hornjoserbsce</a></li>
<li><a href="//io.wikipedia.org/" lang="io" title="Ido">Ido</a></li>
<li><a href="//ilo.wikipedia.org/" lang="ilo">Ilokano</a></li>
<li><a href="//ia.wikipedia.org/" lang="ia">Interlingua</a></li>
<li><a href="//os.wikipedia.org/" lang="os" title="Iron">ÐÑон</a></li>
<li><a href="//is.wikipedia.org/" lang="is">Ãslenska</a></li>
<li><a href="//jv.wikipedia.org/" lang="jv" title="Jawa">Jawa</a></li>
<li><a href="//kn.wikipedia.org/" lang="kn" title="Kannada">à²à²¨à³à²¨à²¡</a></li>
<li><a href="//ht.wikipedia.org/" lang="ht">Kreyòl Ayisyen</a></li>
<li><a href="//ku.wikipedia.org/" lang="ku"><span lang="ku-Latn">Kurdî</span> / <bdi dir="rtl" lang="ku-Arab">ÙÙØ±Ø¯Û</bdi></a></li>
<li><a href="//ckb.wikipedia.org/" lang="ckb" title="Kurdîy Nawendî"><bdi dir="rtl">Ú©ÙØ±Ø¯ÛÛ ÙØ§ÙÛÙØ¯Û</bdi></a></li>
<li><a href="//ky.wikipedia.org/" lang="ky" title="KyrgyzÄa">ÐÑÑгÑзÑа</a></li>
<li><a href="//mrj.wikipedia.org/" lang="mjr" title="Kyryk Mary">ÐÑÑÑк маÑÑ</a></li>
<li><a href="//lb.wikipedia.org/" lang="lb">Lëtzebuergesch</a></li>
<li><a href="//lij.wikipedia.org/" lang="lij">Lìgure</a></li>
<li><a href="//li.wikipedia.org/" lang="li">Limburgs</a></li>
<li><a href="//lmo.wikipedia.org/" lang="lmo">Lombard</a></li>
<li><a href="//mai.wikipedia.org/" lang="mai" title="MaithilÄ«">मà¥à¤¥à¤¿à¤²à¥</a></li>
<li><a href="//mg.wikipedia.org/" lang="mg">Malagasy</a></li>
<li><a href="//ml.wikipedia.org/" lang="ml" title="Malayalam">മലയാളà´</a></li>
<li><a href="//zh-classical.wikipedia.org/" lang="lzh" title="Man4jin4 / Wényán">æè¨</a></li>
<li><a href="//mr.wikipedia.org/" lang="mr" title="Marathi">मराठà¥</a></li>
<li><a href="//xmf.wikipedia.org/" lang="xmf" title="Margaluri">ááá áááá£á á</a></li>
<li><a href="//mzn.wikipedia.org/" lang="mzn" title="Mäzeruni"><bdi dir="rtl">Ù
Ø§Ø²ÙØ±ÙÙÛ</bdi></a></li>
<li><a href="//cdo.wikipedia.org/" lang="cdo" title="Ming-deng-ngu">Mìng-dÄ̤ng-ngá¹³Ì / 驿±èª</a></li>
<li><a href="//mn.wikipedia.org/" lang="mn" title="Mongol">Ðонгол</a></li>
<li><a href="//nap.wikipedia.org/" lang="nap">Napulitano</a></li>
<li><a href="//new.wikipedia.org/" lang="new" title="Nepal Bhasa">नà¥à¤ªà¤¾à¤² à¤à¤¾à¤·à¤¾</a></li>
<li><a href="//ne.wikipedia.org/" lang="ne" title="NepÄlÄ«">नà¥à¤ªà¤¾à¤²à¥</a></li>
<li><a href="//frr.wikipedia.org/" lang="frr">Nordfriisk</a></li>
<li><a href="//oc.wikipedia.org/" lang="oc">Occitan</a></li>
<li><a href="//mhr.wikipedia.org/" lang="mhr" title="Olyk Marij">ÐлÑк маÑий</a></li>
<li><a href="//or.wikipedia.org/" lang="or" title="Oá¹iÄ">à¬à¬¡à¬¿à¬¼à¬</a></li>
<li><a href="//as.wikipedia.org/" lang="as" title="Ãxômiya">à¦
সমà§à¦¯à¦¾à¦¼</a></li>
<li><a href="//pa.wikipedia.org/" lang="pa" title="PañjÄbÄ« (GurmukhÄ«)">ਪੰà¨à¨¾à¨¬à© (à¨à©à¨°à¨®à©à¨à©)</a></li>
<li><a href="//pnb.wikipedia.org/" lang="pnb" title="PañjÄbÄ« (ShÄhmukhÄ«)"><bdi dir="rtl">Ù¾ÙØ¬Ø§Ø¨Û (Ø´Ø§Û Ù
Ú©Ú¾Û)</bdi></a></li>
<li><a href="//ps.wikipedia.org/" lang="ps" title="PaÊto"><bdi dir="rtl">Ù¾ÚØªÙ</bdi></a></li>
<li><a href="//pms.wikipedia.org/" lang="pms">Piemontèis</a></li>
<li><a href="//nds.wikipedia.org/" lang="nds">Plattdüütsch</a></li>
<li><a href="//crh.wikipedia.org/" lang="crh">Qırımtatarca</a></li>
<li><a href="//qu.wikipedia.org/" lang="qu">Runa Simi</a></li>
<li><a href="//sa.wikipedia.org/" lang="sa" title="Saá¹ská¹tam">सà¤à¤¸à¥à¤à¥à¤¤à¤®à¥</a></li>
<li><a href="//sah.wikipedia.org/" lang="sah" title="Saxa Tyla">СаÑ
а ТÑла</a></li>
<li><a href="//sco.wikipedia.org/" lang="sco">Scots</a></li>
<li><a href="//sq.wikipedia.org/" lang="sq">Shqip</a></li>
<li><a href="//scn.wikipedia.org/" lang="scn">Sicilianu</a></li>
<li><a href="//si.wikipedia.org/" lang="si" title="Siá¹hala">à·à·à¶à·à¶½</a></li>
<li><a href="//sd.wikipedia.org/" lang="sd" title="SindhÄ«"><bdi dir="rtl">سÙÚÙ</bdi></a></li>
<li><a href="//szl.wikipedia.org/" lang="szl">Ålůnski</a></li>
<li><a href="//su.wikipedia.org/" lang="su">Basa Sunda</a></li>
<li><a href="//sw.wikipedia.org/" lang="sw">Kiswahili</a></li>
<li><a href="//tl.wikipedia.org/" lang="tl">Tagalog</a></li>
<li><a href="//shn.wikipedia.org/" lang="shn">á½áááááááá¸</a></li>
<li><a href="//te.wikipedia.org/" lang="te" title="Telugu">à°¤à±à°²à±à°à±</a></li>
<li><a href="//bug.wikipedia.org/" lang="bug">á¨
ᨠá¨á¨á¨á¨ / Basa Ugi</a></li>
<li><a href="//vec.wikipedia.org/" lang="vec">Vèneto</a></li>
<li><a href="//wa.wikipedia.org/" lang="wa">Walon</a></li>
<li><a href="//wuu.wikipedia.org/" lang="wuu" title="WúyÇ">å´è¯</a></li>
<li><a href="//yi.wikipedia.org/" lang="yi" title="YidiÅ¡"><bdi dir="rtl">××Ö´××ש</bdi></a></li>
<li><a href="//yo.wikipedia.org/" lang="yo">Yorùbá</a></li>
<li><a href="//diq.wikipedia.org/" lang="diq" title="Zazaki">Zazaki</a></li>
<li><a href="//bat-smg.wikipedia.org/" lang="sgs">ŽemaitÄÅ¡ka</a></li>
<li><a href="//zu.wikipedia.org/" lang="zu">isiZulu</a></li>
</ul>
</div>
<h2 class="bookshelf-container">
<span class="bookshelf">
<span class="text">
<bdi dir="ltr">
1 000+
</bdi>
<span class="jsl10n" data-jsl10n="portal.entries">
articles
</span>
</span>
</span>
</h2>
<div class="langlist hlist" data-el-section="secondary links">
<ul>
<li><a href="//lad.wikipedia.org/" lang="lad"><span lang="lad-Latn">Dzhudezmo</span> / <bdi dir="rtl" lang="lad-Hebr">××××× ×</bdi></a></li>
<li><a href="//kbd.wikipedia.org/" lang="kbd" title="Adighabze">ÐдÑгÑбзÑ</a></li>
<li><a href="//ang.wikipedia.org/" lang="ang">Ãnglisc</a></li>
<li><a href="//smn.wikipedia.org/" lang="smn" title="anarâškielâ">Anarâškielâ</a></li>
<li><a href="//ab.wikipedia.org/" lang="ab" title="aá¹sshwa">аԥÑÑÓа</a></li>
<li><a href="//hyw.wikipedia.org/" lang="hyw" title="Arevmdahayeren">Ô±ÖÕ¥ÖÕ´Õ¿Õ¡Õ°Õ¡ÕµÕ¥ÖÕ§Õ¶</a></li>
<li><a href="//roa-rup.wikipedia.org/" lang="roa-rup">Armãneashce</a></li>
<li><a href="//frp.wikipedia.org/" lang="frp">Arpitan</a></li>
<li><a href="//arc.wikipedia.org/" lang="arc" title="ÄtûrÄyâ"><bdi dir="rtl">ÜܬÜܪÜÜ</bdi></a></li>
<li><a href="//gn.wikipedia.org/" lang="gn">Avañeâẽ</a></li>
<li><a href="//av.wikipedia.org/" lang="av" title="Avar">ÐваÑ</a></li>
<li><a href="//ay.wikipedia.org/" lang="ay">Aymar</a></li>
<li><a href="//bjn.wikipedia.org/" lang="bjn">Bahasa Banjar</a></li>
<li><a href="//bh.wikipedia.org/" lang="bh" title="BhÅjapurÄ«">à¤à¥à¤à¤ªà¥à¤°à¥</a></li>
<li><a href="//bi.wikipedia.org/" lang="bi">Bislama</a></li>
<li><a href="//bo.wikipedia.org/" lang="bo" title="Bod Skad">à½à½¼à½à¼à½¡à½²à½</a></li>
<li><a href="//bxr.wikipedia.org/" lang="bxr" title="Buryad">ÐÑÑÑад</a></li>
<li><a href="//cbk-zam.wikipedia.org/" lang="cbk-x-zam">Chavacano de Zamboanga</a></li>
<li><a href="//co.wikipedia.org/" lang="co">Corsu</a></li>
<li><a href="//za.wikipedia.org/" lang="za">Vahcuengh / 話å®</a></li>
<li><a href="//dag.wikipedia.org/" lang="dag">Dagbanli</a></li>
<li><a href="//ary.wikipedia.org/" lang="ary" title="Darija"><bdi dir="rtl">Ø§ÙØ¯Ø§Ø±Ø¬Ø©</bdi></a></li>
<li><a href="//se.wikipedia.org/" lang="se">Davvisámegiella</a></li>
<li><a href="//pdc.wikipedia.org/" lang="pdc">Deitsch</a></li>
<li><a href="//dv.wikipedia.org/" lang="dv" title="Divehi"><bdi dir="rtl">ÞÞ¨ÞÞ¬ÞÞ¨ÞÞ¦ÞÞ°</bdi></a></li>
<li><a href="//dsb.wikipedia.org/" lang="dsb">Dolnoserbski</a></li>
<li><a href="//myv.wikipedia.org/" lang="myv" title="Erzjanj">ÐÑзÑнÑ</a></li>
<li><a href="//ext.wikipedia.org/" lang="ext">Estremeñu</a></li>
<li><a href="//fur.wikipedia.org/" lang="fur">Furlan</a></li>
<li><a href="//gv.wikipedia.org/" lang="gv">Gaelg</a></li>
<li><a href="//gag.wikipedia.org/" lang="gag">Gagauz</a></li>
<li><a href="//inh.wikipedia.org/" lang="inh" title="Ghalghai">ÐÓалгÓай</a></li>
<li><a href="//ki.wikipedia.org/" lang="ki">Gĩkũyũ</a></li>
<li><a href="//glk.wikipedia.org/" lang="glk" title="GilÉki"><bdi dir="rtl">Ú¯ÛÙÚ©Û</bdi></a></li>
<li><a class="jscnconv" data-hans="èµ£è¯" data-hant="è´èª" href="//gan.wikipedia.org/" lang="gan" title="Gon ua">èµ£è¯ / è´èª</a></li>
<li><a href="//hak.wikipedia.org/" lang="hak">Hak-kâ-ngî / 客家èª</a></li>
<li><a href="//xal.wikipedia.org/" lang="xal" title="Halʹmg">ХалÑмг</a></li>
<li><a href="//haw.wikipedia.org/" lang="haw">Ê»Ålelo HawaiÊ»i</a></li>
<li><a href="//ig.wikipedia.org/" lang="ig">Igbo</a></li>
<li><a href="//rw.wikipedia.org/" lang="rw">Ikinyarwanda</a></li>
<li><a href="//ie.wikipedia.org/" lang="ie">Interlingue</a></li>
<li><a href="//kbp.wikipedia.org/" lang="kbp">KabÉ©yÉ</a></li>
<li><a href="//pam.wikipedia.org/" lang="pam">Kapampangan</a></li>
<li><a href="//csb.wikipedia.org/" lang="csb">Kaszëbsczi</a></li>
<li><a href="//kw.wikipedia.org/" lang="kw">Kernewek</a></li>
<li><a href="//km.wikipedia.org/" lang="km" title="Phéasa Khmér">áá¶áá¶ááááá</a></li>
<li><a href="//kv.wikipedia.org/" lang="kv" title="Komi">Ðоми</a></li>
<li><a href="//koi.wikipedia.org/" lang="koi" title="Perem Komi">ÐеÑем коми</a></li>
<li><a href="//kg.wikipedia.org/" lang="kg">Kongo</a></li>
<li><a href="//gom.wikipedia.org/" lang="gom">à¤à¥à¤à¤à¤£à¥ / Konknni</a></li>
<li><a href="//ks.wikipedia.org/" lang="ks" title="Koshur"><bdi dir="rtl">ÙÙ²Ø´ÙØ±</bdi></a></li>
<li><a href="//gcr.wikipedia.org/" lang="gcr" title="Kriyòl Gwiyannen">Kriyòl Gwiyannen</a></li>
<li><a href="//lo.wikipedia.org/" lang="lo" title="Phaasaa Laao">àºàº²àºªàº²àº¥àº²àº§</a></li>
<li><a href="//lbe.wikipedia.org/" lang="lbe" title="Lakku">ÐаккÑ</a></li>
<li><a href="//ltg.wikipedia.org/" lang="ltg">Latgaļu</a></li>
<li><a href="//lez.wikipedia.org/" lang="lez" title="Lezgi">Ðезги</a></li>
<li><a href="//nia.wikipedia.org/" lang="nia">Li Niha</a></li>
<li><a href="//ln.wikipedia.org/" lang="ln">Lingála</a></li>
<li><a href="//jbo.wikipedia.org/" lang="jbo">lojban</a></li>
<li><a href="//lg.wikipedia.org/" lang="lg">Luganda</a></li>
<li><a href="//mt.wikipedia.org/" lang="mt">Malti</a></li>
<li><a href="//mi.wikipedia.org/" lang="mi">MÄori</a></li>
<li><a href="//tw.wikipedia.org/" lang="tw" title="Mfantse">Twi</a></li>
<li><a href="//mwl.wikipedia.org/" lang="mwl">Mirandés</a></li>
<li><a href="//mdf.wikipedia.org/" lang="mdf" title="MokÅ¡enj">ÐокÑенÑ</a></li>
<li><a href="//mnw.wikipedia.org/" lang="mnw">áá¬áᬠáááº</a></li>
<li><a href="//nqo.wikipedia.org/" lang="nqo" title="N'Ko">ßßß</a></li>
<li><a href="//fj.wikipedia.org/" lang="fj">Na Vosa Vaka-Viti</a></li>
<li><a href="//nah.wikipedia.org/" lang="nah">NÄhuatlahtÅlli</a></li>
<li><a href="//na.wikipedia.org/" lang="na">Dorerin Naoero</a></li>
<li><a href="//nds-nl.wikipedia.org/" lang="nds-nl">Nedersaksisch</a></li>
<li><a href="//nrm.wikipedia.org/" lang="roa-x-nrm">Nouormand / Normaund</a></li>
<li><a href="//nov.wikipedia.org/" lang="nov">Novial</a></li>
<li><a href="//om.wikipedia.org/" lang="om" title="Ingiliffaa">Afaan Oromoo</a></li>
<li><a href="//pi.wikipedia.org/" lang="pi" title="PÄḷi">पालि</a></li>
<li><a href="//pag.wikipedia.org/" lang="pag">Pangasinán</a></li>
<li><a href="//pap.wikipedia.org/" lang="pap">Papiamentu</a></li>
<li><a href="//pfl.wikipedia.org/" lang="pfl">Pfälzisch</a></li>
<li><a href="//pcd.wikipedia.org/" lang="pcd">Picard</a></li>
<li><a href="//krc.wikipedia.org/" lang="krc" title="QaraçayâMalqar">ÐÑаÑаÑайâмалкÑаÑ</a></li>
<li><a href="//kaa.wikipedia.org/" lang="kaa">Qaraqalpaqsha</a></li>
<li><a href="//ksh.wikipedia.org/" lang="ksh">Ripoarisch</a></li>
<li><a href="//rm.wikipedia.org/" lang="rm">Rumantsch</a></li>
<li><a href="//rue.wikipedia.org/" lang="rue" title="Rusinâskyj">Ð ÑÑинÑÑкÑй</a></li>
<li><a href="//sm.wikipedia.org/" lang="sm">Gagana SÄmoa</a></li>
<li><a href="//sat.wikipedia.org/" lang="sat" title="Santali">á±¥á±á±±á±á±á±²á±¤</a></li>
<li><a href="//sc.wikipedia.org/" lang="sc" title="Sardu">Sardu</a></li>
<li><a href="//trv.wikipedia.org/" lang="trv">Seediq</a></li>
<li><a href="//stq.wikipedia.org/" lang="stq">Seeltersk</a></li>
<li><a href="//nso.wikipedia.org/" lang="nso">Sesotho sa Leboa</a></li>
<li><a href="//sn.wikipedia.org/" lang="sn">ChiShona</a></li>
<li><a href="//cu.wikipedia.org/" lang="cu" title="SlovÄnÄskÅ">СловѣÌнÑÑÐºÑ / â°â°â°â°â°¡â°â° â°â°â°</a></li>
<li><a href="//so.wikipedia.org/" lang="so">Soomaaliga</a></li>
<li><a href="//srn.wikipedia.org/" lang="srn">Sranantongo</a></li>
<li><a href="//kab.wikipedia.org/" lang="kab" title="Taqbaylit">Taqbaylit</a></li>
<li><a href="//roa-tara.wikipedia.org/" lang="roa">TarandÃne</a></li>
<li><a href="//tet.wikipedia.org/" lang="tet">Tetun</a></li>
<li><a href="//tpi.wikipedia.org/" lang="tpi">Tok Pisin</a></li>
<li><a href="//to.wikipedia.org/" lang="to">faka Tonga</a></li>
<li><a href="//chr.wikipedia.org/" lang="chr" title="Tsalagi">á£á³á©</a></li>
<li><a href="//tum.wikipedia.org/" lang="tum">chiTumbuka</a></li>
<li><a href="//tk.wikipedia.org/" lang="tk">Türkmençe</a></li>
<li><a href="//tyv.wikipedia.org/" lang="tyv" title="Tyva dyl">ТÑва дÑл</a></li>
<li><a href="//udm.wikipedia.org/" lang="udm" title="Udmurt">УдмÑÑÑ</a></li>
<li><a href="//ug.wikipedia.org/" lang="ug"><bdi dir="rtl">ئÛÙØºÛرÚÙ</bdi></a></li>
<li><a href="//vep.wikipedia.org/" lang="vep">Vepsän</a></li>
<li><a href="//fiu-vro.wikipedia.org/" lang="fiu-vro">Võro</a></li>
<li><a href="//vls.wikipedia.org/" lang="vls">West-Vlams</a></li>
<li><a href="//wo.wikipedia.org/" lang="wo">Wolof</a></li>
<li><a href="//xh.wikipedia.org/" lang="xh">isiXhosa</a></li>
<li><a href="//zea.wikipedia.org/" lang="zea">Zeêuws</a></li>
<li><a href="//ty.wikipedia.org/" lang="ty">Reo tahiti</a></li>
</ul>
</div>
<h2 class="bookshelf-container">
<span class="bookshelf">
<span class="text">
<bdi dir="ltr">
100+
</bdi>
<span class="jsl10n" data-jsl10n="portal.entries">
articles
</span>
</span>
</span>
</h2>
<div class="langlist langlist-tiny hlist" data-el-section="secondary links">
<ul>
<li><a href="//ak.wikipedia.org/" lang="ak">Akan</a></li>
<li><a href="//bm.wikipedia.org/" lang="bm">Bamanankan</a></li>
<li><a href="//ch.wikipedia.org/" lang="ch">Chamoru</a></li>
<li><a href="//ny.wikipedia.org/" lang="ny">Chichewa</a></li>
<li><a href="//ee.wikipedia.org/" lang="ee">EÊegbe</a></li>
<li><a href="//ff.wikipedia.org/" lang="ff">Fulfulde</a></li>
<li><a href="//got.wikipedia.org/" lang="got" title="Gutisk">ð²ð¿ðð¹ððº</a></li>
<li><a href="//iu.wikipedia.org/" lang="iu">áááááᦠ/ Inuktitut</a></li>
<li><a href="//ik.wikipedia.org/" lang="ik">Iñupiak</a></li>
<li><a href="//kl.wikipedia.org/" lang="kl">Kalaallisut</a></li>
<li><a href="//mad.wikipedia.org/" lang="mad">Madhurâ</a></li>
<li><a href="//cr.wikipedia.org/" lang="cr">NÄhiyawÄwin / áá¦ááááá£</a></li>
<li><a href="//pih.wikipedia.org/" lang="pih">Norfuk / Pitkern</a></li>
<li><a href="//ami.wikipedia.org/" lang="ami">Pangcah</a></li>
<li><a href="//pwn.wikipedia.org/" lang="pwn">pinayuanan</a></li>
<li><a href="//pnt.wikipedia.org/" lang="pnt" title="Pontiaká">ΠονÏιακά</a></li>
<li><a href="//dz.wikipedia.org/" lang="dz" title="Rdzong-Kha">རྫོà½à¼à½</a></li>
<li><a href="//rmy.wikipedia.org/" lang="rmy">romani Ähib</a></li>
<li><a href="//rn.wikipedia.org/" lang="rn">Ikirundi</a></li>
<li><a href="//sg.wikipedia.org/" lang="sg">Sängö</a></li>
<li><a href="//st.wikipedia.org/" lang="st">Sesotho</a></li>
<li><a href="//tn.wikipedia.org/" lang="tn">Setswana</a></li>
<li><a href="//ss.wikipedia.org/" lang="ss">SiSwati</a></li>
<li><a href="//ti.wikipedia.org/" lang="ti" title="TÉgÉrÉña">áµááá</a></li>
<li><a href="//din.wikipedia.org/" lang="din">ThuÉÅjäÅ</a></li>
<li><a href="//chy.wikipedia.org/" lang="chy">TsÄhesenÄstsestotse</a></li>
<li><a href="//ts.wikipedia.org/" lang="ts">Xitsonga</a></li>
<li><a href="//ve.wikipedia.org/" lang="ve">Tshivená¸a</a></li>
</ul>
</div>
<div class="langlist langlist-others hlist" data-el-section="other languages">
<a class="jsl10n" data-jsl10n="other-languages-label" href="https://meta.wikimedia.org/wiki/Special:MyLanguage/List_of_Wikipedias" lang="">Other languages</a>
</div></div>
</div>
<hr/>
<div class="footer" data-el-section="other projects">
<div class="footer-sidebar">
<div class="footer-sidebar-content">
<div class="footer-sidebar-icon sprite svg-Wikimedia-logo_black">
</div>
<div class="footer-sidebar-text jsl10n" data-jsl10n="portal.footer-description">
Wikipedia is hosted by the Wikimedia Foundation, a non-profit organization that also hosts a range of other projects.
</div>
<div class="footer-sidebar-text">
<a href="https://donate.wikimedia.org/?utm_medium=portal&utm_campaign=portalFooter&utm_source=portalFooter" target="_blank">
<span class="jsl10n" data-jsl10n="footer-donate">You can support our work with a donation.</span>
</a>
</div>
</div>
</div>
<div class="footer-sidebar app-badges">
<div class="footer-sidebar-content">
<div class="footer-sidebar-text">
<div class="footer-sidebar-icon sprite svg-wikipedia_app_tile"></div>
<strong class="jsl10n" data-jsl10n="portal.app-links.title">
<a class="jsl10n" data-jsl10n="portal.app-links.url" href="https://en.wikipedia.org/wiki/List_of_Wikipedia_mobile_applications">
Download Wikipedia for Android or iOS
</a>
</strong>
<p class="jsl10n" data-jsl10n="portal.app-links.description">
Save your favorite articles to read offline, sync your reading lists across devices and customize your reading experience with the official Wikipedia app.
</p>
<ul>
<li class="app-badge app-badge-android">
<a href="https://play.google.com/store/apps/details?id=org.wikipedia&referrer=utm_source%3Dportal%26utm_medium%3Dbutton%26anid%3Dadmob" rel="noreferrer" target="_blank">
<span class="jsl10n sprite svg-badge_google_play_store" data-jsl10n="portal.app-links.google-store">Google Play Store</span>
</a>
</li>
<li class="app-badge app-badge-ios">
<a href="https://itunes.apple.com/app/apple-store/id324715238?pt=208305&ct=portal&mt=8" rel="noreferrer" target="_blank">
<span class="jsl10n sprite svg-badge_ios_app_store" data-jsl10n="portal.app-links.apple-store">Apple App Store</span>
</a>
</li>
</ul>
</div>
</div>
</div>
<div class="other-projects">
<div class="other-project">
<a class="other-project-link" href="//commons.wikimedia.org/">
<div class="other-project-icon">
<div class="sprite svg-Commons-logo_sister"></div>
</div>
<div class="other-project-text">
<span class="other-project-title jsl10n" data-jsl10n="commons.name">Commons</span>
<span class="other-project-tagline jsl10n" data-jsl10n="commons.slogan">Freely usable photos & more</span>
</div>
</a>
</div>
<div class="other-project">
<a class="other-project-link" href="//www.wikivoyage.org/">
<div class="other-project-icon">
<div class="sprite svg-Wikivoyage-logo_sister"></div>
</div>
<div class="other-project-text">
<span class="other-project-title jsl10n" data-jsl10n="wikivoyage.name">Wikivoyage</span>
<span class="other-project-tagline jsl10n" data-jsl10n="wikivoyage.slogan">Free travel guide</span>
</div>
</a>
</div>
<div class="other-project">
<a class="other-project-link" href="//www.wiktionary.org/">
<div class="other-project-icon">
<div class="sprite svg-Wiktionary-logo_sister"></div>
</div>
<div class="other-project-text">
<span class="other-project-title jsl10n" data-jsl10n="wiktionary.name">Wiktionary</span>
<span class="other-project-tagline jsl10n" data-jsl10n="wiktionary.slogan">Free dictionary</span>
</div>
</a>
</div>
<div class="other-project">
<a class="other-project-link" href="//www.wikibooks.org/">
<div class="other-project-icon">
<div class="sprite svg-Wikibooks-logo_sister"></div>
</div>
<div class="other-project-text">
<span class="other-project-title jsl10n" data-jsl10n="wikibooks.name">Wikibooks</span>
<span class="other-project-tagline jsl10n" data-jsl10n="wikibooks.slogan">Free textbooks</span>
</div>
</a>
</div>
<div class="other-project">
<a class="other-project-link" href="//www.wikinews.org/">
<div class="other-project-icon">
<div class="sprite svg-Wikinews-logo_sister"></div>
</div>
<div class="other-project-text">
<span class="other-project-title jsl10n" data-jsl10n="wikinews.name">Wikinews</span>
<span class="other-project-tagline jsl10n" data-jsl10n="wikinews.slogan">Free news source</span>
</div>
</a>
</div>
<div class="other-project">
<a class="other-project-link" href="//www.wikidata.org/">
<div class="other-project-icon">
<div class="sprite svg-Wikidata-logo_sister"></div>
</div>
<div class="other-project-text">
<span class="other-project-title jsl10n" data-jsl10n="wikidata.name">Wikidata</span>
<span class="other-project-tagline jsl10n" data-jsl10n="wikidata.slogan">Free knowledge base</span>
</div>
</a>
</div>
<div class="other-project">
<a class="other-project-link" href="//www.wikiversity.org/">
<div class="other-project-icon">
<div class="sprite svg-Wikiversity-logo_sister"></div>
</div>
<div class="other-project-text">
<span class="other-project-title jsl10n" data-jsl10n="wikiversity.name">Wikiversity</span>
<span class="other-project-tagline jsl10n" data-jsl10n="wikiversity.slogan">Free course materials</span>
</div>
</a>
</div>
<div class="other-project">
<a class="other-project-link" href="//www.wikiquote.org/">
<div class="other-project-icon">
<div class="sprite svg-Wikiquote-logo_sister"></div>
</div>
<div class="other-project-text">
<span class="other-project-title jsl10n" data-jsl10n="wikiquote.name">Wikiquote</span>
<span class="other-project-tagline jsl10n" data-jsl10n="wikiquote.slogan">Free quote compendium</span>
</div>
</a>
</div>
<div class="other-project">
<a class="other-project-link" href="//www.mediawiki.org/">
<div class="other-project-icon">
<div class="sprite svg-MediaWiki-logo_sister"></div>
</div>
<div class="other-project-text">
<span class="other-project-title jsl10n" data-jsl10n="mediawiki.name">MediaWiki</span>
<span class="other-project-tagline jsl10n" data-jsl10n="mediawiki.slogan">Free & open wiki application</span>
</div>
</a>
</div>
<div class="other-project">
<a class="other-project-link" href="//www.wikisource.org/">
<div class="other-project-icon">
<div class="sprite svg-Wikisource-logo_sister"></div>
</div>
<div class="other-project-text">
<span class="other-project-title jsl10n" data-jsl10n="wikisource.name">Wikisource</span>
<span class="other-project-tagline jsl10n" data-jsl10n="wikisource.slogan">Free library</span>
</div>
</a>
</div>
<div class="other-project">
<a class="other-project-link" href="//species.wikimedia.org/">
<div class="other-project-icon">
<div class="sprite svg-Wikispecies-logo_sister"></div>
</div>
<div class="other-project-text">
<span class="other-project-title jsl10n" data-jsl10n="wikispecies.name">Wikispecies</span>
<span class="other-project-tagline jsl10n" data-jsl10n="wikispecies.slogan">Free species directory</span>
</div>
</a>
</div>
<div class="other-project">
<a class="other-project-link" href="//meta.wikimedia.org/">
<div class="other-project-icon">
<div class="sprite svg-Meta-Wiki-logo_sister"></div>
</div>
<div class="other-project-text">
<span class="other-project-title jsl10n" data-jsl10n="metawiki.name">Meta-Wiki</span>
<span class="other-project-tagline jsl10n" data-jsl10n="metawiki.slogan">Community coordination & documentation</span>
</div>
</a>
</div>
</div>
</div>
<hr/>
<p class="site-license">
<small class="jsl10n" data-jsl10n="license">This page is available under the <a href="https://creativecommons.org/licenses/by-sa/3.0/">Creative Commons Attribution-ShareAlike License</a></small>
<small class="jsl10n" data-jsl10n="terms"><a href="https://meta.wikimedia.org/wiki/Terms_of_use">Terms of Use</a></small>
<small class="jsl10n" data-jsl10n="privacy-policy"><a href="https://meta.wikimedia.org/wiki/Privacy_policy">Privacy Policy</a></small>
</p>
<script>
var rtlLangs = ['ar','arc','ary','arz','bcc','bgn','bqi','ckb','dv','fa','glk','he','kk-cn','kk-arab','khw','ks','ku-arab','lki','luz','mzn','nqo','pnb','ps','sd','sdh','skr','ug','ur','yi'],
translationsHash = '5446eb72',
/**
* This variable is used to convert the generic "portal" keyword in the data-jsl10n attributes
* e.g. 'data-jsl10n="portal.footer-description"' into a portal-specific key, e.g. "wiki"
* for the Wikipedia portal.
*/
translationsPortalKey = 'wiki';
/**
* The wm-typeahead.js feature is used for search,and it uses domain name for searching. We want domain
* name to be portal Specific (different for every portal).So by declaring variable 'portalSearchDomain'
* in index.handlebars we will make this portal Specific.
**/
portalSearchDomain = 'wikipedia.org'
/*
This object is used by l10n scripts (page-localized.js, topten-localized.js)
to reveal the page content after l10n json is loaded.
A timer is also set to prevent JS from hiding page content indefinitelty.
This script is inlined to safeguard againt script loading errors and placed
at the top of the page to safeguard against any HTML loading/parsing errors.
*/
wmL10nVisible = {
ready: false,
makeVisible: function(){
if ( !wmL10nVisible.ready ) {
wmL10nVisible.ready = true;
document.body.className += ' jsl10n-visible';
}
}
};
window.setTimeout( wmL10nVisible.makeVisible, 1000 )
</script>
<script src="portal/wikipedia.org/assets/js/index-f1d77ed19b.js"></script>
<!--[if gt IE 9]><!-->
<script src="portal/wikipedia.org/assets/js/gt-ie9-ce3fe8e88d.js"></script>
<!--<![endif]-->
<!--[if lte IE 9]><!-->
<style>
.styled-select {
display: block;
}
</style>
<!--<![endif]-->
<!--[if lte IE 9]>
<style>
.langlist > ul {
text-align: center;
}
.langlist > ul > li {
display: inline;
padding: 0 0.5em;
}
</style>
<![endif]-->
</body>
</html>
Header = soup.find_all(['h1', 'h2','h3','h4','h5','h6'])
print('Displaying all Header Tags :', *Header, sep='\n\n')
Displaying all Header Tags : <h1 class="central-textlogo-wrapper"> <span class="central-textlogo__image sprite svg-Wikipedia_wordmark"> Wikipedia </span> <strong class="jsl10n localized-slogan" data-jsl10n="portal.slogan">The Free Encyclopedia</strong> </h1> <h2 class="bookshelf-container"> <span class="bookshelf"> <span class="text"> <bdi dir="ltr"> 1 000 000+ </bdi> <span class="jsl10n" data-jsl10n="entries"> articles </span> </span> </span> </h2> <h2 class="bookshelf-container"> <span class="bookshelf"> <span class="text"> <bdi dir="ltr"> 100 000+ </bdi> <span class="jsl10n" data-jsl10n="portal.entries"> articles </span> </span> </span> </h2> <h2 class="bookshelf-container"> <span class="bookshelf"> <span class="text"> <bdi dir="ltr"> 10 000+ </bdi> <span class="jsl10n" data-jsl10n="portal.entries"> articles </span> </span> </span> </h2> <h2 class="bookshelf-container"> <span class="bookshelf"> <span class="text"> <bdi dir="ltr"> 1 000+ </bdi> <span class="jsl10n" data-jsl10n="portal.entries"> articles </span> </span> </span> </h2> <h2 class="bookshelf-container"> <span class="bookshelf"> <span class="text"> <bdi dir="ltr"> 100+ </bdi> <span class="jsl10n" data-jsl10n="portal.entries"> articles </span> </span> </span> </h2>
2) Write a python program to display IMDB’s Top rated 100 movies’ data (i.e. name, rating, year of release) and make data frame.
url=requests.get('https://www.imdb.com/list/ls055592025/')
url
<Response [200]>
soup=BeautifulSoup(url.text,'html.parser')
soup
<!DOCTYPE html>
<html xmlns:fb="http://www.facebook.com/2008/fbml" xmlns:og="http://ogp.me/ns#">
<head>
<meta charset="utf-8"/>
<script type="text/javascript">var IMDbTimer={starttime: new Date().getTime(),pt:'java'};</script>
<script>
if (typeof uet == 'function') {
uet("bb", "LoadTitle", {wb: 1});
}
</script>
<script>(function(t){ (t.events = t.events || {})["csm_head_pre_title"] = new Date().getTime(); })(IMDbTimer);</script>
<title>Top 100 Greatest Movies of All Time (The Ultimate List) - IMDb</title>
<script>(function(t){ (t.events = t.events || {})["csm_head_post_title"] = new Date().getTime(); })(IMDbTimer);</script>
<script>
if (typeof uet == 'function') {
uet("be", "LoadTitle", {wb: 1});
}
</script>
<script>
if (typeof uex == 'function') {
uex("ld", "LoadTitle", {wb: 1});
}
</script>
<link href="https://www.imdb.com/list/ls055592025/" rel="canonical"/>
<meta content="http://www.imdb.com/list/ls055592025/" property="og:url">
<script>
if (typeof uet == 'function') {
uet("bb", "LoadIcons", {wb: 1});
}
</script>
<script>(function(t){ (t.events = t.events || {})["csm_head_pre_icon"] = new Date().getTime(); })(IMDbTimer);</script>
<link href="https://m.media-amazon.com/images/G/01/imdb/images-ANDW73HA/favicon_desktop_32x32._CB1582158068_.png" rel="icon" sizes="32x32"/>
<link href="https://m.media-amazon.com/images/G/01/imdb/images-ANDW73HA/favicon_iPad_retina_167x167._CB1582158068_.png" rel="icon" sizes="167x167"/>
<link href="https://m.media-amazon.com/images/G/01/imdb/images-ANDW73HA/favicon_iPhone_retina_180x180._CB1582158069_.png" rel="icon" sizes="180x180"/>
<link href="https://m.media-amazon.com/images/G/01/imdb/images-ANDW73HA/apple-touch-icon-mobile._CB479963088_.png" rel="apple-touch-icon"/>
<link href="https://m.media-amazon.com/images/G/01/imdb/images-ANDW73HA/apple-touch-icon-mobile-76x76._CB479962152_.png" rel="apple-touch-icon" sizes="76x76"/>
<link href="https://m.media-amazon.com/images/G/01/imdb/images-ANDW73HA/apple-touch-icon-mobile-120x120._CB479963088_.png" rel="apple-touch-icon" sizes="120x120"/>
<link href="https://m.media-amazon.com/images/G/01/imdb/images-ANDW73HA/apple-touch-icon-web-152x152._CB479963088_.png" rel="apple-touch-icon" sizes="152x152"/>
<link href="https://m.media-amazon.com/images/G/01/imdb/images-ANDW73HA/android-mobile-196x196._CB479962153_.png" rel="shortcut icon" sizes="196x196"/>
<meta content="#000000" name="theme-color"/>
<link href="https://m.media-amazon.com/images/S/sash/MzfIBMq9GBucYqW.xml" rel="search" title="IMDb" type="application/opensearchdescription+xml"/>
<script>(function(t){ (t.events = t.events || {})["csm_head_post_icon"] = new Date().getTime(); })(IMDbTimer);</script>
<script>
if (typeof uet == 'function') {
uet("be", "LoadIcons", {wb: 1});
}
</script>
<script>
if (typeof uex == 'function') {
uex("ld", "LoadIcons", {wb: 1});
}
</script>
<meta content="ls055592025" property="pageId"/>
<meta content="list" property="pageType"/>
<meta content="title" property="subpageType"/>
<link href="https://m.media-amazon.com/images/G/01/imdb/images/social/imdb_logo._CB410901634_.png" rel="image_src"/>
<meta content="https://m.media-amazon.com/images/G/01/imdb/images/social/imdb_logo._CB410901634_.png" property="og:image"/>
<meta content="115109575169727" property="fb:app_id"/>
<meta content="Top 100 Greatest Movies of All Time (The Ultimate List) - IMDb" property="og:title"/>
<meta content="IMDb" property="og:site_name"/>
<meta content="Top 100 Greatest Movies of All Time (The Ultimate List) - IMDb" name="title"/>
<meta content="Top 100 Greatest Movies of All Time (The Ultimate List)" name="description"/>
<meta content="Top 100 Greatest Movies of All Time (The Ultimate List)" property="og:description"/>
<meta content="ZDCDVQR2CDH2J0FV5CYR" name="request_id"/>
<script type="application/ld+json">{
"@context": "http://schema.org",
"@type": "CreativeWork",
"about": {
"@type": "ItemList",
"itemListElement": [
{
"@type": "ListItem",
"position": "1",
"url": "/title/tt0068646/"
},
{
"@type": "ListItem",
"position": "2",
"url": "/title/tt0111161/"
},
{
"@type": "ListItem",
"position": "3",
"url": "/title/tt0108052/"
},
{
"@type": "ListItem",
"position": "4",
"url": "/title/tt0081398/"
},
{
"@type": "ListItem",
"position": "5",
"url": "/title/tt0034583/"
},
{
"@type": "ListItem",
"position": "6",
"url": "/title/tt0033467/"
},
{
"@type": "ListItem",
"position": "7",
"url": "/title/tt0031381/"
},
{
"@type": "ListItem",
"position": "8",
"url": "/title/tt0032138/"
},
{
"@type": "ListItem",
"position": "9",
"url": "/title/tt0073486/"
},
{
"@type": "ListItem",
"position": "10",
"url": "/title/tt0056172/"
},
{
"@type": "ListItem",
"position": "11",
"url": "/title/tt0052357/"
},
{
"@type": "ListItem",
"position": "12",
"url": "/title/tt0054215/"
},
{
"@type": "ListItem",
"position": "13",
"url": "/title/tt0071562/"
},
{
"@type": "ListItem",
"position": "14",
"url": "/title/tt0047296/"
},
{
"@type": "ListItem",
"position": "15",
"url": "/title/tt0043014/"
},
{
"@type": "ListItem",
"position": "16",
"url": "/title/tt0109830/"
},
{
"@type": "ListItem",
"position": "17",
"url": "/title/tt0059742/"
},
{
"@type": "ListItem",
"position": "18",
"url": "/title/tt0050083/"
},
{
"@type": "ListItem",
"position": "19",
"url": "/title/tt0055614/"
},
{
"@type": "ListItem",
"position": "20",
"url": "/title/tt0076759/"
},
{
"@type": "ListItem",
"position": "21",
"url": "/title/tt0062622/"
},
{
"@type": "ListItem",
"position": "22",
"url": "/title/tt0083866/"
},
{
"@type": "ListItem",
"position": "23",
"url": "/title/tt0102926/"
},
{
"@type": "ListItem",
"position": "24",
"url": "/title/tt0071315/"
},
{
"@type": "ListItem",
"position": "25",
"url": "/title/tt0050212/"
},
{
"@type": "ListItem",
"position": "26",
"url": "/title/tt0045152/"
},
{
"@type": "ListItem",
"position": "27",
"url": "/title/tt0038650/"
},
{
"@type": "ListItem",
"position": "28",
"url": "/title/tt0057012/"
},
{
"@type": "ListItem",
"position": "29",
"url": "/title/tt0053291/"
},
{
"@type": "ListItem",
"position": "30",
"url": "/title/tt0052618/"
},
{
"@type": "ListItem",
"position": "31",
"url": "/title/tt0078788/"
},
{
"@type": "ListItem",
"position": "32",
"url": "/title/tt0086879/"
},
{
"@type": "ListItem",
"position": "33",
"url": "/title/tt0167260/"
},
{
"@type": "ListItem",
"position": "34",
"url": "/title/tt0172495/"
},
{
"@type": "ListItem",
"position": "35",
"url": "/title/tt0120338/"
},
{
"@type": "ListItem",
"position": "36",
"url": "/title/tt0045793/"
},
{
"@type": "ListItem",
"position": "37",
"url": "/title/tt0120815/"
},
{
"@type": "ListItem",
"position": "38",
"url": "/title/tt0105695/"
},
{
"@type": "ListItem",
"position": "39",
"url": "/title/tt0082971/"
},
{
"@type": "ListItem",
"position": "40",
"url": "/title/tt0075148/"
},
{
"@type": "ListItem",
"position": "41",
"url": "/title/tt0044081/"
},
{
"@type": "ListItem",
"position": "42",
"url": "/title/tt0032904/"
},
{
"@type": "ListItem",
"position": "43",
"url": "/title/tt0056592/"
},
{
"@type": "ListItem",
"position": "44",
"url": "/title/tt0043278/"
},
{
"@type": "ListItem",
"position": "45",
"url": "/title/tt0036868/"
},
{
"@type": "ListItem",
"position": "46",
"url": "/title/tt0058385/"
},
{
"@type": "ListItem",
"position": "47",
"url": "/title/tt0066921/"
},
{
"@type": "ListItem",
"position": "48",
"url": "/title/tt0059113/"
},
{
"@type": "ListItem",
"position": "49",
"url": "/title/tt0049730/"
},
{
"@type": "ListItem",
"position": "50",
"url": "/title/tt0073195/"
},
{
"@type": "ListItem",
"position": "51",
"url": "/title/tt0066206/"
},
{
"@type": "ListItem",
"position": "52",
"url": "/title/tt0064115/"
},
{
"@type": "ListItem",
"position": "53",
"url": "/title/tt0040897/"
},
{
"@type": "ListItem",
"position": "54",
"url": "/title/tt0060196/"
},
{
"@type": "ListItem",
"position": "55",
"url": "/title/tt0053604/"
},
{
"@type": "ListItem",
"position": "56",
"url": "/title/tt0091763/"
},
{
"@type": "ListItem",
"position": "57",
"url": "/title/tt0044706/"
},
{
"@type": "ListItem",
"position": "58",
"url": "/title/tt0112573/"
},
{
"@type": "ListItem",
"position": "59",
"url": "/title/tt0099348/"
},
{
"@type": "ListItem",
"position": "60",
"url": "/title/tt0107290/"
},
{
"@type": "ListItem",
"position": "61",
"url": "/title/tt0070047/"
},
{
"@type": "ListItem",
"position": "62",
"url": "/title/tt0253474/"
},
{
"@type": "ListItem",
"position": "63",
"url": "/title/tt0099685/"
},
{
"@type": "ListItem",
"position": "64",
"url": "/title/tt0077416/"
},
{
"@type": "ListItem",
"position": "65",
"url": "/title/tt0020629/"
},
{
"@type": "ListItem",
"position": "66",
"url": "/title/tt0061418/"
},
{
"@type": "ListItem",
"position": "67",
"url": "/title/tt0067116/"
},
{
"@type": "ListItem",
"position": "68",
"url": "/title/tt0021749/"
},
{
"@type": "ListItem",
"position": "69",
"url": "/title/tt0025316/"
},
{
"@type": "ListItem",
"position": "70",
"url": "/title/tt0043924/"
},
{
"@type": "ListItem",
"position": "71",
"url": "/title/tt0064665/"
},
{
"@type": "ListItem",
"position": "72",
"url": "/title/tt0031679/"
},
{
"@type": "ListItem",
"position": "73",
"url": "/title/tt0095953/"
},
{
"@type": "ListItem",
"position": "74",
"url": "/title/tt0075686/"
},
{
"@type": "ListItem",
"position": "75",
"url": "/title/tt0116282/"
},
{
"@type": "ListItem",
"position": "76",
"url": "/title/tt0049261/"
},
{
"@type": "ListItem",
"position": "77",
"url": "/title/tt0046303/"
},
{
"@type": "ListItem",
"position": "78",
"url": "/title/tt0032551/"
},
{
"@type": "ListItem",
"position": "79",
"url": "/title/tt0120689/"
},
{
"@type": "ListItem",
"position": "80",
"url": "/title/tt0075860/"
},
{
"@type": "ListItem",
"position": "81",
"url": "/title/tt0073440/"
},
{
"@type": "ListItem",
"position": "82",
"url": "/title/tt0074958/"
},
{
"@type": "ListItem",
"position": "83",
"url": "/title/tt0061722/"
},
{
"@type": "ListItem",
"position": "84",
"url": "/title/tt0069704/"
},
{
"@type": "ListItem",
"position": "85",
"url": "/title/tt0110912/"
},
{
"@type": "ListItem",
"position": "86",
"url": "/title/tt0086425/"
},
{
"@type": "ListItem",
"position": "87",
"url": "/title/tt0119217/"
},
{
"@type": "ListItem",
"position": "88",
"url": "/title/tt0043265/"
},
{
"@type": "ListItem",
"position": "89",
"url": "/title/tt0031971/"
},
{
"@type": "ListItem",
"position": "90",
"url": "/title/tt0026752/"
},
{
"@type": "ListItem",
"position": "91",
"url": "/title/tt0032553/"
},
{
"@type": "ListItem",
"position": "92",
"url": "/title/tt0036775/"
},
{
"@type": "ListItem",
"position": "93",
"url": "/title/tt0033870/"
},
{
"@type": "ListItem",
"position": "94",
"url": "/title/tt0032145/"
},
{
"@type": "ListItem",
"position": "95",
"url": "/title/tt0075314/"
},
{
"@type": "ListItem",
"position": "96",
"url": "/title/tt0047396/"
},
{
"@type": "ListItem",
"position": "97",
"url": "/title/tt0041959/"
},
{
"@type": "ListItem",
"position": "98",
"url": "/title/tt0048545/"
},
{
"@type": "ListItem",
"position": "99",
"url": "/title/tt0053125/"
},
{
"@type": "ListItem",
"position": "100",
"url": "/title/tt0035575/"
}
]
},
"dateModified": "2017-03-28T06:08Z",
"name": "Top 100 Greatest Movies of All Time (The Ultimate List)",
"description": "The movies on this list are ranked according to their success (awards \u0026 nominations), their popularity, and their cinematic greatness from a directing/writing perspective. To me, accuracy when making a Top 10/Top 100 all time list is extremely important. My lists are not based on my own personal favorites; they are based on the true greatness and/or success of the person, place or thing being ranked. In other words, a film\u0027s commercial success (Oscars \u0026 BAFTA Awards), and greatness in direction, screenwriting and production, is how I ranked the films on this list. If you guys would like to view my other Top 10/Top 100 lists, feel free to check out my YouTube page and/or my IMDb page at *ChrisWalczyk55*.\n\nThanks guys and don\u0027t forget to LIKE \u0026 comment! :)"
}</script>
<script>
(function (win) {
win.PLAID_LOAD_FONTS_FIRED = true;
if (typeof win.FontFace !== "undefined"
&& typeof win.Promise !== "undefined") {
if (win.ue) {
win.uet("bb", "LoadRoboto", { wb: 1 });
}
var allowableLoadTime = 1000;
var startTimeInt = +new Date();
var roboto = new FontFace('Roboto',
'url(https://m.media-amazon.com/images/G/01/IMDb/cm9ib3Rv.woff2)',
{ style:'normal', weight: 400 });
var robotoMedium = new FontFace('Roboto',
'url(https://m.media-amazon.com/images/G/01/IMDb/cm9ib3RvTWVk.woff2)',
{ style:'normal', weight: 500 });
var robotoBold = new FontFace('Roboto',
'url(https://m.media-amazon.com/images/G/01/IMDb/cm9ib3RvQm9sZA.woff2)',
{ style:'normal', weight: 600 });
var robotoLoaded = roboto.load();
var robotoMediumLoaded = robotoMedium.load();
var robotoBoldLoaded = robotoBold.load();
win.Promise.all([robotoLoaded, robotoMediumLoaded, robotoBoldLoaded]).then(function() {
var loadTimeInt = +new Date();
var robotoLoadedCount = 0;
if ((loadTimeInt - startTimeInt) <= allowableLoadTime) {
win.document.fonts.add(roboto);
win.document.fonts.add(robotoMedium);
win.document.fonts.add(robotoBold);
robotoLoadedCount++;
}
if (win.ue) {
win.ue.count("roboto-loaded", robotoLoadedCount);
win.uet("be", "LoadRoboto", { wb: 1 });
win.uex("ld", "LoadRoboto", { wb: 1 });
}
}).catch(function() {
if (win.ue) {
win.ue.count("roboto-loaded", 0);
}
});
} else {
if (win.ue) {
win.ue.count("roboto-load-not-attempted", 1);
}
}
})(window);
</script>
<script>
if (typeof uet == 'function') {
uet("bb", "LoadCSS", {wb: 1});
}
</script>
<script>(function(t){ (t.events = t.events || {})["csm_head_pre_css"] = new Date().getTime(); })(IMDbTimer);</script>
<link href="https://m.media-amazon.com/images/S/sash/2FZ-VC3MvxHOxkB.css" rel="stylesheet" type="text/css">
<!-- h=ics-c52xl-13-1f-a69f84a9.us-east-1 -->
<!--[if IE]><link rel="stylesheet" type="text/css" href="https://m.media-amazon.com/images/S/sash/pXHSPBTKPo0GIjW.css" /><![endif]-->
<link href="https://m.media-amazon.com/images/S/sash/i-Y65BmJrKWIfbK.css" rel="stylesheet" type="text/css"/>
<link href="https://m.media-amazon.com/images/S/sash/HqcrRlviNTScutU.css" rel="stylesheet" type="text/css"/>
<link href="https://m.media-amazon.com/images/S/sash/mrwUCCyp3V14GU0.css" rel="stylesheet" type="text/css"/>
<link href="https://m.media-amazon.com/images/S/sash/uPqNlbpttveRLMo.css" rel="stylesheet" type="text/css"/>
<noscript>
<link href="https://m.media-amazon.com/images/S/sash/CCc6Ja$8QUPPKkY.css" rel="stylesheet" type="text/css"/>
</noscript>
<script>(function(t){ (t.events = t.events || {})["csm_head_post_css"] = new Date().getTime(); })(IMDbTimer);</script>
<script>
if (typeof uet == 'function') {
uet("be", "LoadCSS", {wb: 1});
}
</script>
<script>
if (typeof uex == 'function') {
uex("ld", "LoadCSS", {wb: 1});
}
</script>
<script>
if (typeof uet == 'function') {
uet("bb", "LoadJS", {wb: 1});
}
</script>
<script>
if (typeof uet == 'function') {
uet("bb", "LoadHeaderJS", {wb: 1});
}
</script>
<script>(function(t){ (t.events = t.events || {})["csm_head_pre_ads"] = new Date().getTime(); })(IMDbTimer);</script>
<script type="text/javascript">
// ensures js doesn't die if ads service fails.
// Note that we need to define the js here, since ad js is being rendered inline after this.
(function(f) {
// Fallback javascript, when the ad Service call fails.
if((window.csm == null || window.generic == null || window.consoleLog == null)) {
if (window.console && console.log) {
console.log("one or more of window.csm, window.generic or window.consoleLog has been stubbed...");
}
}
window.csm = window.csm || { measure:f, record:f, duration:f, listen:f, metrics:{} };
window.generic = window.generic || { monitoring: { start_timing: f, stop_timing: f } };
window.consoleLog = window.consoleLog || f;
})(function() {});
</script>
<script type="text/javascript">window.useRatingTaskCompletion = true;</script>
<script>
if ('csm' in window) {
csm.measure('csm_head_delivery_finished');
}
</script>
<script>
if (typeof uet == 'function') {
uet("be", "LoadHeaderJS", {wb: 1});
}
</script>
<script>
if (typeof uex == 'function') {
uex("ld", "LoadHeaderJS", {wb: 1});
}
</script>
<script>
if (typeof uet == 'function') {
uet("be", "LoadJS", {wb: 1});
}
</script>
<script>
if (typeof uex == 'function') {
uex("ld", "LoadJS", {wb: 1});
}
</script>
</link></meta></head>
<body class="fixed" id="styleguide-v2">
<script>
if (typeof uet == 'function') {
uet("bb");
}
</script>
<script>
if ('csm' in window) {
csm.measure('csm_body_delivery_started');
}
</script>
<script>
if (typeof uet == 'function') {
uet("ns");
}
</script>
<style data-styled="true" data-styled-version="5.3.5">.hKcFfj{-webkit-flex-shrink:0;-ms-flex-negative:0;flex-shrink:0;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;margin-left:0.25rem;margin-right:auto;-webkit-order:1;-ms-flex-order:1;order:1;position:relative;}/*!sc*/
@media screen and (min-width:1024px){.hKcFfj{margin-left:auto;margin-right:0.5rem;-webkit-order:0;-ms-flex-order:0;order:0;padding-left:0;}}/*!sc*/
@media (hover:hover) and (pointer:fine){.hKcFfj:focus{outline:1px dashed currentColor;}.hKcFfj:focus:active{outline:0;}.hKcFfj:before,.hKcFfj:after{border-radius:10%;bottom:0;content:'';height:100%;left:0;margin:auto;opacity:0;position:absolute;right:0;top:0;-webkit-transition:opacity 0.2s cubic-bezier(1,1,1,1);transition:opacity 0.2s cubic-bezier(1,1,1,1);width:100%;background:rgb(0,0,0);background:var(--ipt-on-accent1-color,rgb(0,0,0));}.hKcFfj:hover:before{opacity:0.08;opacity:var(--ipt-base-hover-opacity,0.08);}.hKcFfj:active:after{opacity:0.16;opacity:var(--ipt-base-pressed-opacity,0.16);}}/*!sc*/
data-styled.g1[id="sc-bczRLJ"]{content:"hKcFfj,"}/*!sc*/
.lbYfkb li:first-child > .searchResult{border-top:none;}/*!sc*/
.lbYfkb .searchTypeahead__input{font-family:'Roboto','Helvetica','Arial',sans-serif;font-family:var(--ipt-font-family);font-size:1rem;font-size:var(--ipt-type-body-size,1rem);font-weight:400;font-weight:var(--ipt-type-body-weight,400);-webkit-letter-spacing:.03125em;-moz-letter-spacing:.03125em;-ms-letter-spacing:.03125em;letter-spacing:.03125em;-webkit-letter-spacing:var(--ipt-type-body-letterSpacing,.03125em);-moz-letter-spacing:var(--ipt-type-body-letterSpacing,.03125em);-ms-letter-spacing:var(--ipt-type-body-letterSpacing,.03125em);letter-spacing:var(--ipt-type-body-letterSpacing,.03125em);line-height:1.5rem;line-height:var(--ipt-type-body-lineHeight,1.5rem);text-transform:none;text-transform:var(--ipt-type-body-textTransform,none);color:rgb(255,255,255);color:var(--ipt-on-baseAlt-color,rgb(255,255,255));caret-color:rgb(255,255,255);caret-color:var(--ipt-on-baseAlt-color,rgb(255,255,255));}/*!sc*/
.lbYfkb .searchTypeahead__input:placeholder{color:rgba(255,255,255,0.5);color:var(--ipt-on-baseAlt-textHint-color,rgba(255,255,255,0.5));}/*!sc*/
@media screen and (min-width:600px){.lbYfkb .searchTypeahead__input{font-family:'Roboto','Helvetica','Arial',sans-serif;font-family:var(--ipt-font-family);font-size:.875rem;font-size:var(--ipt-type-bodySmall-size,.875rem);font-weight:400;font-weight:var(--ipt-type-bodySmall-weight,400);-webkit-letter-spacing:.01786em;-moz-letter-spacing:.01786em;-ms-letter-spacing:.01786em;letter-spacing:.01786em;-webkit-letter-spacing:var(--ipt-type-bodySmall-letterSpacing,.01786em);-moz-letter-spacing:var(--ipt-type-bodySmall-letterSpacing,.01786em);-ms-letter-spacing:var(--ipt-type-bodySmall-letterSpacing,.01786em);letter-spacing:var(--ipt-type-bodySmall-letterSpacing,.01786em);line-height:1.25rem;line-height:var(--ipt-type-bodySmall-lineHeight,1.25rem);text-transform:none;text-transform:var(--ipt-type-bodySmall-textTransform,none);color:rgba(0,0,0,0.87);color:var(--ipt-on-base-textPrimary-color,rgba(0,0,0,0.87));caret-color:rgba(0,0,0,0.54);caret-color:var(--ipt-on-base-textSecondary-color,rgba(0,0,0,0.54));}}/*!sc*/
data-styled.g7[id="sc-gKXOVf"]{content:"lbYfkb,"}/*!sc*/
.iosfhR{position:relative;}/*!sc*/
.iosfhR.navbar__flyout__text-button-after-mobile,.iosfhR .navbar__flyout__text-button-after-mobile{display:none;}/*!sc*/
.iosfhR .navbar__flyout__text-button-after-mobile > div{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}/*!sc*/
.iosfhR .navbar__flyout--menu{top:100%;position:absolute;margin-top:0.25rem;}/*!sc*/
.iosfhR.iosfhR.navbar__flyout--positionLeft .navbar__flyout--menu{left:0;right:auto;}/*!sc*/
@media screen and (min-width:600px){.iosfhR.navbar__flyout--breakpoint-m .navbar__flyout__icon-on-mobile{display:none;}.iosfhR.navbar__flyout--breakpoint-m .navbar__flyout__text-button-after-mobile{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;}}/*!sc*/
@media screen and (min-width:1024px){.iosfhR.navbar__flyout--breakpoint-l .navbar__flyout__icon-on-mobile{display:none;}.iosfhR.navbar__flyout--breakpoint-l .navbar__flyout__text-button-after-mobile{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;}}/*!sc*/
@media screen and (min-width:1280px){.iosfhR.navbar__flyout--breakpoint-xl .navbar__flyout__icon-on-mobile{display:none;}.iosfhR.navbar__flyout--breakpoint-xl .navbar__flyout__text-button-after-mobile{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;}}/*!sc*/
.iosfhR .navbar__flyout__button-pointer{-webkit-transition:-webkit-transform 0.2s;-webkit-transition:transform 0.2s;transition:transform 0.2s;-webkit-transform:rotateX(0);-ms-transform:rotateX(0);transform:rotateX(0);}/*!sc*/
.iosfhR.navbar__flyout--isVisible .navbar__flyout__button-pointer{-webkit-transform:rotateX(180deg);-ms-transform:rotateX(180deg);transform:rotateX(180deg);}/*!sc*/
data-styled.g8[id="sc-iBkjds"]{content:"iosfhR,"}/*!sc*/
.cumdHr .searchCatSelector__opener{border-radius:2px 0 0 2px;padding:0 0 0 0.5rem;min-height:32px;height:20px;border-right:1px solid rgba(0,0,0,0.3);}/*!sc*/
.cumdHr .searchCatSelector .searchCatSelector__item{-webkit-transition:color 0.15s;transition:color 0.15s;cursor:poiner;}/*!sc*/
.cumdHr .searchCatSelector .searchCatSelector__item .searchCatSelector__itemIcon{margin-right:0.75rem;opacity:0.5;-webkit-transition:opacity 0.2s;transition:opacity 0.2s;}/*!sc*/
.cumdHr .searchCatSelector .searchCatSelector__item:hover .searchCatSelector__itemIcon,.cumdHr .searchCatSelector .searchCatSelector__item:focus .searchCatSelector__itemIcon,.cumdHr .searchCatSelector .searchCatSelector__item.searchCatSelector__itemSelected .searchCatSelector__itemIcon{opacity:1;}/*!sc*/
.cumdHr .searchCatSelector .searchCatSelector__item.searchCatSelector__itemSelected{color:rgb(245,197,24);color:var(--ipt-on-base-accent1-color,rgb(245,197,24));}/*!sc*/
data-styled.g9[id="sc-ftvSup"]{content:"cumdHr,"}/*!sc*/
.exojnx{background:rgb(31,31,31);background:var(--ipt-baseAlt-shade1-bg,rgb(31,31,31));display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;margin:0;padding:0;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}/*!sc*/
@media screen and (min-width:600px){.exojnx.searchform--focused .searchform__submit{background:transparent;opacity:1;}}/*!sc*/
@media screen and (min-width:600px){.exojnx{-webkit-transition:border 0.2s,background-color 0.2s,box-shadow 0.2s;transition:border 0.2s,background-color 0.2s,box-shadow 0.2s;background:rgb(255,255,255);background:var(--ipt-base-bg,rgb(255,255,255));border-radius:.25rem;border-radius:var(--ipt-cornerRadius,.25rem);}.exojnx.searchform--focused{background:rgb(255,255,255);background:var(--ipt-base-bg,rgb(255,255,255));outline:none;border-color:none;box-shadow:inset 0 0 0 2px rgb(245,197,24);box-shadow:inset 0 0 0 2px var(--ipt-accent1-color,rgb(245,197,24));}}/*!sc*/
.exojnx .searchform__inputContainer{width:100%;padding-right:3.5rem;}/*!sc*/
.exojnx .searchform__submit{background:rgb(250,250,250);background:var(--ipt-base-shade1-bg,rgb(250,250,250));color:rgba(0,0,0,0.54);color:var(--ipt-on-base-textSecondary-color,rgba(0,0,0,0.54));border-radius:.25rem;border-radius:var(--ipt-cornerRadius,.25rem);position:absolute;right:0.35rem;min-width:2rem;cursor:pointer;top:0.35rem;-webkit-transition:all 0.2s;transition:all 0.2s;}/*!sc*/
@media screen and (min-width:600px){.exojnx .searchform__submit{background:rgb(255,255,255);background:var(--ipt-base-bg,rgb(255,255,255));}}/*!sc*/
.exojnx .imdb-header-search__input{background:transparent;-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;outline:none;padding:1rem 1rem 1rem 0.75rem;width:100%;}/*!sc*/
@media screen and (min-width:600px){.exojnx .imdb-header-search__input{padding:0.375em 0 0.375rem 0.5rem;}}/*!sc*/
.exojnx .imdb-header-search__input::-ms-clear{display:none;}/*!sc*/
data-styled.g10[id="sc-papXJ"]{content:"exojnx,"}/*!sc*/
.iJNbPT{-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;left:0;margin:0;min-height:3.5rem;opacity:0;-webkit-transform:translateY(-10px);-ms-transform:translateY(-10px);transform:translateY(-10px);-webkit-transition:none;transition:none;-webkit-order:3;-ms-flex-order:3;order:3;pointer-events:none;position:absolute;top:0;visibility:hidden;width:100%;z-index:1;}/*!sc*/
.iJNbPT .imdb-header-search__state-closer{-webkit-transform:scale(0.5);-ms-transform:scale(0.5);transform:scale(0.5);-webkit-transition:-webkit-transform 0.2s 0.1s;-webkit-transition:transform 0.2s 0.1s;transition:transform 0.2s 0.1s;display:inline;margin:0.25rem;position:absolute;right:0;top:0;}/*!sc*/
.iJNbPT .imdb-header-search__state,.iJNbPT .imdb-header-search__input,.iJNbPT .nav-search__search-submit{-moz-appearance:none;-webkit-appearance:none;-webkit-appearance:none;-moz-appearance:none;appearance:none;border:none;}/*!sc*/
@media screen and (min-width:600px){.iJNbPT{-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;margin:0 0.5rem;padding:0;min-height:2.25rem;-webkit-order:3;-ms-flex-order:3;order:3;opacity:1;visibility:visible;pointer-events:auto;position:relative;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0);}.iJNbPT .imdb-header-search__state,.iJNbPT .nav-search__search-submit{padding:0;}.iJNbPT .nav-search__search-submit:focus{outline:var(--ipt-focus-outline-on-base);outline-offset:1px;}.iJNbPT .imdb-header-search__state-closer{display:none;}}/*!sc*/
data-styled.g11[id="sc-jqUVSM"]{content:"iJNbPT,"}/*!sc*/
.cxVnln{-webkit-transition:all 0.3s;transition:all 0.3s;opacity:1;-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1);-webkit-order:3;-ms-flex-order:3;order:3;}/*!sc*/
@media screen and (min-width:600px){.cxVnln{-webkit-order:3;-ms-flex-order:3;order:3;}.cxVnln.imdb-header-search__state-opener{display:none;}}/*!sc*/
data-styled.g12[id="sc-kDDrLX"]{content:"cxVnln,"}/*!sc*/
.iKpzZH:checked ~ .nav-search__search-container{background-color:rgb(0,0,0);background-color:var(--ipt-baseAlt-color,rgb(0,0,0));opacity:1;-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1);-webkit-transition:opacity 0.2s,-webkit-transform 0.2s;-webkit-transition:opacity 0.2s,transform 0.2s;transition:opacity 0.2s,transform 0.2s;visibility:visible;pointer-events:auto;z-index:100;}/*!sc*/
.iKpzZH:checked ~ .nav-search__search-container .nav-search__search-select,.iKpzZH:checked ~ .nav-search__search-container .nav-search__search-submit{display:none;}/*!sc*/
.iKpzZH:checked ~ .nav-search__search-container .imdb-header-search__state-closer{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1);}/*!sc*/
.iKpzZH:checked ~ .nav-search__search-container ~ .sc-kDDrLX{-webkit-transform:scale(0.5);-ms-transform:scale(0.5);transform:scale(0.5);-webkit-transition:all 0.3s 0.3s;transition:all 0.3s 0.3s;opacity:0;}/*!sc*/
data-styled.g13[id="sc-iqcoie"]{content:"iKpzZH,"}/*!sc*/
body.drawer-bodyLocked{overflow:hidden;position:relative;}/*!sc*/
data-styled.g14[id="sc-global-kcltSs1"]{content:"sc-global-kcltSs1,"}/*!sc*/
.PMSTF.drawer{bottom:0;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;left:0;overflow:hidden;-webkit-perspective:70vh;-moz-perspective:70vh;-ms-perspective:70vh;perspective:70vh;pointer-events:none;position:fixed;right:0;top:0;visibility:hidden;z-index:100;}/*!sc*/
.PMSTF .drawer__panel{background:rgb(31,31,31);background:var(--ipt-baseAlt-shade1-bg,rgb(31,31,31));box-shadow:none;box-sizing:border-box;height:100%;overflow-x:hidden;overflow-y:auto;position:relative;-webkit-transform:translateX(calc(-100% - 36px));-ms-transform:translateX(calc(-100% - 36px));transform:translateX(calc(-100% - 36px));-webkit-transform-origin:right center;-ms-transform-origin:right center;transform-origin:right center;-webkit-transition:all 0.3s,box-shadow 0s;transition:all 0.3s,box-shadow 0s;width:280px;z-index:2;-webkit-overflow-scroll:touch;}/*!sc*/
.PMSTF .drawer__backdrop{background:rgb(31,31,31);background:var(--ipt-baseAlt-shade1-bg,rgb(31,31,31));box-sizing:border-box;display:block;height:100%;left:0;opacity:0;position:absolute;top:0;-webkit-transition:opacity 0.3s;transition:opacity 0.3s;visibility:hidden;width:100%;will-change:opacity;z-index:1;}/*!sc*/
.PMSTF .drawer__panelHeader{background:var(--ipt-baseAlt-stripes-bg);-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:end;-webkit-justify-content:flex-end;-ms-flex-pack:end;justify-content:flex-end;min-height:3.5rem;margin-bottom:0.5rem;padding:0.25rem;}/*!sc*/
.PMSTF .drawer__panelHeaderClose{-webkit-touch-callout:none;-webkit-tap-highlight-color:transparent;}/*!sc*/
.drawer__state:checked ~ .sc-crXcEl.drawer{pointer-events:auto;visibility:visible;}/*!sc*/
.drawer__state:checked ~ .sc-crXcEl.drawer > .drawer__panel{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0);box-shadow:0px 11px 15px -7px rgba(var(--ipt-baseAlt-rgb),0.2), 0px 24px 38px 3px rgba(var(--ipt-baseAlt-rgb),0.14), 0px 9px 46px 8px rgba(var(--ipt-baseAlt-rgb),0.12);}/*!sc*/
.drawer__state:checked ~ .sc-crXcEl.drawer > .drawer__backdrop{opacity:0.5;visibility:visible;}/*!sc*/
.PMSTF .drawer-logo{display:none;}/*!sc*/
@media screen and (max-width:1024px){.PMSTF .drawer__panelHeader .drawer__panelHeaderClose{background:none;}}/*!sc*/
@media screen and (min-width:1024px){.PMSTF .drawer__panel{width:100%;-webkit-transform:translateY(calc(-100%));-ms-transform:translateY(calc(-100%));transform:translateY(calc(-100%));padding:2rem 0;}.PMSTF .drawer__panelHeader{background:none;max-width:1024px;margin:auto;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;padding:0 1rem;}.PMSTF .drawer__panelHeader .drawer__panelHeaderClose{background:rgb(245,197,24);background:var(--ipt-accent1-bg,rgb(245,197,24));color:rgb(0,0,0);color:var(--ipt-on-accent1-color,rgb(0,0,0));}.PMSTF .drawer__panelHeader .drawer__panelHeaderClose:hover{color:rgb(0,0,0);color:var(--ipt-on-accent1-color,rgb(0,0,0));}.PMSTF .drawer__panelContent{max-width:1024px;margin:auto;}.PMSTF .drawer-logo{display:inline;}}/*!sc*/
data-styled.g15[id="sc-crXcEl"]{content:"PMSTF,"}/*!sc*/
.nMWbL .ipc-icon{opacity:0.5;-webkit-transition:opacity 0.2s;transition:opacity 0.2s;}/*!sc*/
.nMWbL:hover .ipc-icon{opacity:1;}/*!sc*/
@media screen and (max-width:479px){.nMWbL.nav-link--hideXS{display:none;}}/*!sc*/
@media screen and (min-width:480px) and (max-width:599px){.nMWbL.nav-link--hideS{display:none;}}/*!sc*/
@media screen and (min-width:600px) and (max-width:1023px){.nMWbL.nav-link--hideM{display:none;}}/*!sc*/
@media screen and (min-width:1024px) and (max-width:1279px){.nMWbL.nav-link--hideL{display:none;}}/*!sc*/
@media screen and (min-width:1280px){.nMWbL.nav-link--hideXL{display:none;}}/*!sc*/
data-styled.g16[id="sc-evZas"]{content:"nMWbL,"}/*!sc*/
.cqozJK .navlinkcat__item{font-family:'Roboto','Helvetica','Arial',sans-serif;font-family:var(--ipt-font-family);font-size:1rem;font-size:var(--ipt-type-body-size,1rem);font-weight:400;font-weight:var(--ipt-type-body-weight,400);-webkit-letter-spacing:.03125em;-moz-letter-spacing:.03125em;-ms-letter-spacing:.03125em;letter-spacing:.03125em;-webkit-letter-spacing:var(--ipt-type-body-letterSpacing,.03125em);-moz-letter-spacing:var(--ipt-type-body-letterSpacing,.03125em);-ms-letter-spacing:var(--ipt-type-body-letterSpacing,.03125em);letter-spacing:var(--ipt-type-body-letterSpacing,.03125em);line-height:1.5rem;line-height:var(--ipt-type-body-lineHeight,1.5rem);text-transform:none;text-transform:var(--ipt-type-body-textTransform,none);cursor:pointer;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;border-top:1px solid transparent;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;margin:0;padding:.5rem 1rem;-webkit-transition:color 0.1s ease-in,border-color 0.1s ease-in, opacity 0.12s ease-in;transition:color 0.1s ease-in,border-color 0.1s ease-in, opacity 0.12s ease-in;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;}/*!sc*/
.cqozJK .navlinkcat__item:hover{background:rgba( rgb(255,255,255), 0.08 );background:rgba( var(--ipt-on-baseAlt-color,rgb(255,255,255)), var(--ipt-baseAlt-hover-opacity,0.08) );}/*!sc*/
.cqozJK .navlinkcat__item:focus{outline:var(--ipt-focus-outline-on-baseAlt);outline-offset:1px;}/*!sc*/
.cqozJK .navlinkcat__itemIcon{-webkit-align-self:flex-start;-ms-flex-item-align:start;align-self:flex-start;padding-right:0.75rem;}/*!sc*/
.cqozJK .navlinkcat__itemTitle{-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;overflow:initial;overflow-wrap:break-word;padding-right:0.75rem;text-overflow:unset;white-space:break-spaces;}/*!sc*/
@media screen and (min-width:1024px){.cqozJK .navlinkcat__itemTitle{font-family:'Roboto','Helvetica','Arial',sans-serif;font-family:var(--ipt-font-family);font-size:1.5rem;font-size:var(--ipt-type-headline5-size,1.5rem);font-weight:600;font-weight:var(--ipt-type-headline5-weight,600);-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;-webkit-letter-spacing:normal;-moz-letter-spacing:normal;-ms-letter-spacing:normal;letter-spacing:normal;-webkit-letter-spacing:var(--ipt-type-headline5-letterSpacing,normal);-moz-letter-spacing:var(--ipt-type-headline5-letterSpacing,normal);-ms-letter-spacing:var(--ipt-type-headline5-letterSpacing,normal);letter-spacing:var(--ipt-type-headline5-letterSpacing,normal);line-height:2rem;line-height:var(--ipt-type-headline5-lineHeight,2rem);text-transform:none;text-transform:var(--ipt-type-headline5-textTransform,none);}}/*!sc*/
.cqozJK .navlinkcat__itemChevron{-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg);}/*!sc*/
.cqozJK .navlinkcat__itemIcon,.cqozJK .navlinkcat__itemChevron{opacity:0.5;-webkit-transition:all 0.2s;transition:all 0.2s;}/*!sc*/
.cqozJK .navlinkcat__item:focus .navlinkcat__itemChevron,.cqozJK .navlinkcat__item:hover .navlinkcat__itemChevron,.cqozJK .navlinkcat__item:focus .navlinkcat__itemIcon,.cqozJK .navlinkcat__item:hover .navlinkcat__itemIcon{opacity:1;}/*!sc*/
.cqozJK .navlinkcat__listContainer{height:0;visibility:hidden;overflow:hidden;border-bottom:1px solid transparent;-webkit-transition:border-color 0.1s ease-in,height 0.2s;transition:border-color 0.1s ease-in,height 0.2s;}/*!sc*/
.cqozJK .navlinkcat__state:checked ~ .navlinkcat__targetWrapper .navlinkcat__item{border-color:rgba(255,255,255,0.2);border-color:var(--ipt-baseAlt-border-color,rgba(255,255,255,0.2));}/*!sc*/
.cqozJK .navlinkcat__state:checked ~ .navlinkcat__targetWrapper .navlinkcat__item .navlinkcat__itemIcon,.cqozJK .navlinkcat__state:checked ~ .navlinkcat__targetWrapper .navlinkcat__item .navlinkcat__itemTitle{color:rgb(245,197,24);color:var(--ipt-on-baseAlt-accent1-color,rgb(245,197,24));}/*!sc*/
.cqozJK .navlinkcat__state:checked ~ .navlinkcat__targetWrapper .navlinkcat__listContainer{border-color:rgba(255,255,255,0.2);border-color:var(--ipt-baseAlt-border-color,rgba(255,255,255,0.2));height:auto;visibility:inherit;}/*!sc*/
.cqozJK .navlinkcat__state:checked ~ span .navlinkcat__item .navlinkcat__itemIcon{opacity:1;}/*!sc*/
.cqozJK .navlinkcat__state:checked ~ span .navlinkcat__item .navlinkcat__itemChevron{-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg);}/*!sc*/
.cqozJK .navlinkcat__state:checked ~ span .navlinkcat__listContainer{display:block;}/*!sc*/
.cqozJK:nth-of-type(1) .navlinkcat__item{border-top:none;}/*!sc*/
@media screen and (min-width:1024px){.cqozJK.noMarginItem .navlinkcat__item{margin-top:0;}}/*!sc*/
.cqozJK .ipc-list__item{height:auto;padding-top:.5rem;padding-bottom:.5rem;}/*!sc*/
.cqozJK .ipc-list__item .ipc-list-item__text{white-space:initial;overflow-wrap:break-word;line-height:normal;}/*!sc*/
@media screen and (min-width:1024px){.cqozJK{-webkit-flex-basis:33%;-ms-flex-preferred-size:33%;flex-basis:33%;max-width:33%;}.cqozJK .navlinkcat__item{border:none;margin-top:1.5rem;padding-top:.5rem;padding-bottom:.5rem;pointer-events:none;}.cqozJK .navlinkcat__state:checked ~ .navlinkcat__targetWrapper .navlinkcat__item .navlinkcat__itemTitle{color:inherit;}.cqozJK .navlinkcat__listContainer{visibility:inherit;height:auto !important;border:0;}.cqozJK .navlinkcat__itemChevron{display:none;}.cqozJK .navlinkcat__itemIcon{color:var(--ipt-on-baseAlt-accent1-color);opacity:1;}.cqozJK .ipc-list--baseAlt .ipc-list__item:hover{background:none;-webkit-text-decoration:underline;text-decoration:underline;}}/*!sc*/
@media screen and (max-width:479px){.cqozJK.navlinkcat--hideXS{display:none;}}/*!sc*/
@media screen and (min-width:480px) and (max-width:599px){.cqozJK.navlinkcat--hideS{display:none;}}/*!sc*/
@media screen and (min-width:600px) and (max-width:1023px){.cqozJK.navlinkcat--hideM{display:none;}}/*!sc*/
@media screen and (min-width:1024px) and (max-width:1279px){.cqozJK.navlinkcat--hideL{display:none;}}/*!sc*/
@media screen and (min-width:1280px){.cqozJK.navlinkcat--hideXL{display:none;}}/*!sc*/
data-styled.g17[id="sc-breuTD"]{content:"cqozJK,"}/*!sc*/
@media screen and (min-width:1024px){.gSOLIo{-webkit-flex-basis:33%;-ms-flex-preferred-size:33%;flex-basis:33%;max-width:33%;}}/*!sc*/
data-styled.g18[id="sc-ksZaOG"]{content:"gSOLIo,"}/*!sc*/
@media screen and (min-width:1024px){.OzViy{-webkit-flex-basis:33%;-ms-flex-preferred-size:33%;flex-basis:33%;max-width:100%;}}/*!sc*/
data-styled.g19[id="sc-hAZoDl"]{content:"OzViy,"}/*!sc*/
@media screen and (min-width:1024px){.SyRwP{max-width:100%;}}/*!sc*/
data-styled.g20[id="sc-fnykZs"]{content:"SyRwP,"}/*!sc*/
.iYlngk .navlcl__divider{list-style:none;margin:0.5rem 0;opacity:0.2;}/*!sc*/
.iYlngk .navlcl__proLink{margin-bottom:3rem;margin-top:1.5rem;padding:1rem;height:auto;}/*!sc*/
.iYlngk .navlcl__proLink:hover,.iYlngk .navlcl__tvLink:hover{background:rgba( rgb(255,255,255), 0.08 );background:rgba( var(--ipt-on-baseAlt-color,rgb(255,255,255)), var(--ipt-baseAlt-hover-opacity,0.08) );}/*!sc*/
@media screen and (min-width:1024px){.iYlngk{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;}.iYlngk .navlcl__tvLink{display:none;}.iYlngk .navlcl__proLink{-webkit-align-self:flex-start;-ms-flex-item-align:start;align-self:flex-start;display:none;}.iYlngk:focus{outline:var(--ipt-focus-outline-on-baseAlt);outline-offset:1px;}}/*!sc*/
data-styled.g21[id="sc-fEOsli"]{content:"iYlngk,"}/*!sc*/
.bpTVou{font-family:'Roboto','Helvetica','Arial',sans-serif;font-family:var(--ipt-font-family);font-size:.875rem;font-size:var(--ipt-type-bodySmall-size,.875rem);font-weight:400;font-weight:var(--ipt-type-bodySmall-weight,400);-webkit-letter-spacing:.01786em;-moz-letter-spacing:.01786em;-ms-letter-spacing:.01786em;letter-spacing:.01786em;-webkit-letter-spacing:var(--ipt-type-bodySmall-letterSpacing,.01786em);-moz-letter-spacing:var(--ipt-type-bodySmall-letterSpacing,.01786em);-ms-letter-spacing:var(--ipt-type-bodySmall-letterSpacing,.01786em);letter-spacing:var(--ipt-type-bodySmall-letterSpacing,.01786em);line-height:1.25rem;line-height:var(--ipt-type-bodySmall-lineHeight,1.25rem);text-transform:none;text-transform:var(--ipt-type-bodySmall-textTransform,none);display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;}/*!sc*/
data-styled.g22[id="sc-bjUoiL"]{content:"bpTVou,"}/*!sc*/
.cUVKHb{margin-top:.25rem;}/*!sc*/
data-styled.g23[id="sc-idiyUo"]{content:"cUVKHb,"}/*!sc*/
.gcmCOw{-webkit-flex-shrink:0;-ms-flex-negative:0;flex-shrink:0;-webkit-order:0;-ms-flex-order:0;order:0;}/*!sc*/
.gcmCOw.desktop{display:none;}/*!sc*/
@media screen and (min-width:1024px){.gcmCOw{-webkit-order:1;-ms-flex-order:1;order:1;}.gcmCOw.mobile{display:none;}.gcmCOw.desktop{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;}}/*!sc*/
data-styled.g24[id="sc-dIouRR"]{content:"gcmCOw,"}/*!sc*/
.fFlqwB{-webkit-order:6;-ms-flex-order:6;order:6;}/*!sc*/
@media screen and (min-width:600px){.fFlqwB .navbar__user-menu__username-divider,.fFlqwB .navbar__user-menu__username{display:none;}}/*!sc*/
@media screen and (min-width:1024px){.fFlqwB{-webkit-order:7;-ms-flex-order:7;order:7;}}/*!sc*/
.fFlqwB .navbar__user-menu-toggle__button{padding-right:0.25rem;}/*!sc*/
.fFlqwB .navbar__user-name{max-width:160px;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;}/*!sc*/
data-styled.g25[id="sc-hHLeRK"]{content:"fFlqwB,"}/*!sc*/
nav__userMenu .ipc-list__item.navbar__user-menu__username{color:rgb(245,197,24);color:var(--ipt-on-baseAlt-accent1-color,rgb(245,197,24));opacity:1;pointer-events:none;}/*!sc*/
data-styled.g26[id="sc-global-gbGWiL1"]{content:"sc-global-gbGWiL1,"}/*!sc*/
.hCFCYu{-webkit-order:5;-ms-flex-order:5;order:5;display:none;}/*!sc*/
@media screen and (min-width:1024px){.hCFCYu{-webkit-order:6;-ms-flex-order:6;order:6;display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;}}/*!sc*/
.hCFCYu .watchlistButtonCount{background:rgb(245,197,24);background:var(--ipt-on-base-accent1-color,rgb(245,197,24));color:rgb(0,0,0);color:var(--ipt-on-accent1-color,rgb(0,0,0));font-family:'Roboto','Helvetica','Arial',sans-serif;font-family:var(--ipt-font-family);font-size:.75rem;font-size:var(--ipt-type-copyright-size,.75rem);font-weight:400;font-weight:var(--ipt-type-copyright-weight,400);-webkit-letter-spacing:.03333em;-moz-letter-spacing:.03333em;-ms-letter-spacing:.03333em;letter-spacing:.03333em;-webkit-letter-spacing:var(--ipt-type-copyright-letterSpacing,.03333em);-moz-letter-spacing:var(--ipt-type-copyright-letterSpacing,.03333em);-ms-letter-spacing:var(--ipt-type-copyright-letterSpacing,.03333em);letter-spacing:var(--ipt-type-copyright-letterSpacing,.03333em);line-height:1rem;line-height:var(--ipt-type-copyright-lineHeight,1rem);text-transform:none;text-transform:var(--ipt-type-copyright-textTransform,none);margin-left:0.5rem;padding:0 0.4rem;border-radius:10px;text-align:center;}/*!sc*/
.hCFCYu .ipc-button__text{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}/*!sc*/
data-styled.g27[id="sc-dmRaPn"]{content:"hCFCYu,"}/*!sc*/
.jjOyce{-webkit-order:4;-ms-flex-order:4;order:4;}/*!sc*/
@media screen and (min-width:1024px){.jjOyce{-webkit-order:4;-ms-flex-order:4;order:4;}}/*!sc*/
.jjOyce .navbar__imdbpro-menu-toggle__name{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;}/*!sc*/
.jjOyce .navbar__imdbpro-content .navbar__flyout--menu{background-image:url(//m.media-amazon.com/images/G/01/imdb/images/navbar/imdbpro_navbar_menu_bg-3083451252._V_.png);background-size:cover;padding-left:17px;padding-bottom:25px;padding-top:25px;color:white;font-weight:bold;}/*!sc*/
.jjOyce .navbar__imdbpro-imdb-pro-ad{background-repeat:no-repeat;color:white;cursor:pointer;width:573px;overflow:hidden;border-radius:8px;left:initial;}/*!sc*/
.jjOyce .navbar__imdbpro-imdb-pro-ad .imdb-pro-ad__content,.jjOyce .navbar__imdbpro-imdb-pro-ad .imdb-pro-ad__image{display:inline-block;}/*!sc*/
.jjOyce .navbar__imdbpro-imdb-pro-ad .imdb-pro-ad__title{color:white;line-height:1.3em;margin-bottom:10px;}/*!sc*/
.jjOyce .navbar__imdbpro-imdb-pro-ad .imdb-pro-ad__line{cursor:inherit;}/*!sc*/
.jjOyce .navbar__imdbpro-imdb-pro-ad .imdb-pro-ad__link{display:inline-block;-webkit-text-decoration:none;text-decoration:none;vertical-align:middle;}/*!sc*/
.jjOyce .navbar__imdbpro-imdb-pro-ad .imdb-pro-ad__content,.jjOyce .navbar__imdbpro-imdb-pro-ad .imdb-pro-ad__image{vertical-align:top;}/*!sc*/
.jjOyce .navbar__imdbpro-imdb-pro-ad .imdb-pro-ad__content{font-family:'Arial';margin-left:15px;width:400px;}/*!sc*/
.jjOyce .navbar__imdbpro-imdb-pro-ad .imdb-pro-ad__content .imdb-pro-ad__line{display:list-item;font-size:12px;list-style-position:inside;list-style-type:disc;margin:0px;padding:0.1rem 0;}/*!sc*/
.jjOyce .navbar__imdbpro-imdb-pro-ad .imdb-pro-ad__content .imdb-pro-ad__title{font-size:15px;}/*!sc*/
.jjOyce .navbar__imdbpro-imdb-pro-ad .imdb-pro-new__button{margin-top:15px;}/*!sc*/
.jjOyce .navbar__imdbpro-imdb-pro-ad .imdb-pro-new__button text{fill:#111111;font-size:13px;font-weight:normal;}/*!sc*/
.jjOyce .navbar__imdbpro-imdb-pro-ad .imdb-pro-new__button svg:hover rect,.jjOyce .navbar__imdbpro-imdb-pro-ad .imdb-pro-new__button text:hover rect{fill:#f7dd95;}/*!sc*/
.jjOyce .navbar__imdbpro-content .sub_nav{background-color:#f2f2f2;border-bottom-left-radius:10px;border-bottom-right-radius:10px;box-shadow:0 2px 5px rgba(0,0,0,0.6);color:#999;height:325px;}/*!sc*/
.jjOyce .navbar__imdbpro-content .sub_nav h5{color:#a58500;margin:20px 0 10px;position:relative;}/*!sc*/
data-styled.g28[id="sc-kgflAQ"]{content:"jjOyce,"}/*!sc*/
.eMmABn{display:none;}/*!sc*/
data-styled.g29[id="sc-fLlhyt"]{content:"eMmABn,"}/*!sc*/
.dlnzbB.dlnzbB.selected{color:rgb(255,255,255);color:var(--ipt-on-baseAlt-color,rgb(255,255,255));font-weight:bold;pointer-events:none;}/*!sc*/
.dlnzbB.dlnzbB.disabled{color:rgba(255,255,255,0.5);color:var(--ipt-on-baseAlt-textDisabled-color,rgba(255,255,255,0.5));}/*!sc*/
.dlnzbB.dlnzbB span{opacity:1;}/*!sc*/
.dlnzbB .language-menu-item-span{padding-right:0.5rem;}/*!sc*/
.dlnzbB .language-menu-item-icon{height:1.5rem;width:1.5rem;}/*!sc*/
.dlnzbB .selected-language-icon{color:rgb(245,197,24);color:var(--ipt-accent1-color,rgb(245,197,24));}/*!sc*/
data-styled.g30[id="sc-bBrHrO"]{content:"dlnzbB,"}/*!sc*/
.cmgxCq{-webkit-order:7;-ms-flex-order:7;order:7;}/*!sc*/
@media screen and (min-width:600px){.cmgxCq{-webkit-order:7;-ms-flex-order:7;order:7;}}/*!sc*/
.cmgxCq .navbar__flyout__text-button-after-mobile{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;padding-right:0.25rem;}/*!sc*/
.cmgxCq .disabled{pointer-events:none;}/*!sc*/
data-styled.g33[id="sc-llJcti"]{content:"cmgxCq,"}/*!sc*/
.dpOEIG.dpOEIG{font-family:'Roboto','Helvetica','Arial',sans-serif;font-family:var(--ipt-font-family);font-size:.75rem;font-size:var(--ipt-type-overline-size,.75rem);font-weight:600;font-weight:var(--ipt-type-overline-weight,600);-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;-webkit-letter-spacing:.16667em;-moz-letter-spacing:.16667em;-ms-letter-spacing:.16667em;letter-spacing:.16667em;-webkit-letter-spacing:var(--ipt-type-overline-letterSpacing,.16667em);-moz-letter-spacing:var(--ipt-type-overline-letterSpacing,.16667em);-ms-letter-spacing:var(--ipt-type-overline-letterSpacing,.16667em);letter-spacing:var(--ipt-type-overline-letterSpacing,.16667em);line-height:1rem;line-height:var(--ipt-type-overline-lineHeight,1rem);text-transform:uppercase;text-transform:var(--ipt-type-overline-textTransform,uppercase);}/*!sc*/
data-styled.g34[id="sc-iIPllB"]{content:"dpOEIG,"}/*!sc*/
.ktUtzl{--ipt-base-rgb:255,255,255;--mdc-theme-ipt-base-rgb:var(--ipt-base-rgb);--ipt-base-bg:rgb(255,255,255);--mdc-theme-ipt-base-bg:var(--ipt-base-bg);--ipt-base-color:rgb(255,255,255);--mdc-theme-ipt-base-color:var(--ipt-base-color);--ipt-base-shade1-rgb:250,250,250;--mdc-theme-ipt-base-shade1-rgb:var(--ipt-base-shade1-rgb);--ipt-base-shade1-bg:rgb(250,250,250);--mdc-theme-ipt-base-shade1-bg:var(--ipt-base-shade1-bg);--ipt-base-shade1-color:rgb(250,250,250);--mdc-theme-ipt-base-shade1-color:var(--ipt-base-shade1-color);--ipt-base-shade2-rgb:240,240,240;--mdc-theme-ipt-base-shade2-rgb:var(--ipt-base-shade2-rgb);--ipt-base-shade2-bg:rgb(240,240,240);--mdc-theme-ipt-base-shade2-bg:var(--ipt-base-shade2-bg);--ipt-base-shade2-color:rgb(240,240,240);--mdc-theme-ipt-base-shade2-color:var(--ipt-base-shade2-color);--ipt-base-shade3-rgb:255,255,255;--mdc-theme-ipt-base-shade3-rgb:var(--ipt-base-shade3-rgb);--ipt-base-shade3-bg:rgb(255,255,255);--mdc-theme-ipt-base-shade3-bg:var(--ipt-base-shade3-bg);--ipt-base-shade3-color:rgb(255,255,255);--mdc-theme-ipt-base-shade3-color:var(--ipt-base-shade3-color);--ipt-on-base-rgb:0,0,0;--mdc-theme-ipt-on-base-rgb:var(--ipt-on-base-rgb);--ipt-on-base-color:rgb(0,0,0);--mdc-theme-ipt-on-base-color:var(--ipt-on-base-color);--ipt-on-base-accent1-rgb:245,197,24;--mdc-theme-ipt-on-base-accent1-rgb:var(--ipt-on-base-accent1-rgb);--ipt-on-base-accent1-color:rgb(245,197,24);--mdc-theme-ipt-on-base-accent1-color:var(--ipt-on-base-accent1-color);--ipt-on-base-accent2-rgb:14,99,190;--mdc-theme-ipt-on-base-accent2-rgb:var(--ipt-on-base-accent2-rgb);--ipt-on-base-accent2-color:rgb(14,99,190);--mdc-theme-ipt-on-base-accent2-color:var(--ipt-on-base-accent2-color);--ipt-on-base-accent3-rgb:189,36,4;--mdc-theme-ipt-on-base-accent3-rgb:var(--ipt-on-base-accent3-rgb);--ipt-on-base-accent3-color:rgb(189,36,4);--mdc-theme-ipt-on-base-accent3-color:var(--ipt-on-base-accent3-color);--ipt-on-base-accent4-rgb:0,138,0;--mdc-theme-ipt-on-base-accent4-rgb:var(--ipt-on-base-accent4-rgb);--ipt-on-base-accent4-color:rgb(0,138,0);--mdc-theme-ipt-on-base-accent4-color:var(--ipt-on-base-accent4-color);--ipt-on-base-textPrimary-opacity:0.87;--mdc-theme-ipt-on-base-textPrimary-opacity:var(--ipt-on-base-textPrimary-opacity);--ipt-on-base-textPrimary-color:rgba(0,0,0,0.87);--mdc-theme-ipt-on-base-textPrimary-color:var(--ipt-on-base-textPrimary-color);--ipt-on-base-textSecondary-opacity:0.54;--mdc-theme-ipt-on-base-textSecondary-opacity:var(--ipt-on-base-textSecondary-opacity);--ipt-on-base-textSecondary-color:rgba(0,0,0,0.54);--mdc-theme-ipt-on-base-textSecondary-color:var(--ipt-on-base-textSecondary-color);--ipt-on-base-textHint-opacity:0.38;--mdc-theme-ipt-on-base-textHint-opacity:var(--ipt-on-base-textHint-opacity);--ipt-on-base-textHint-color:rgba(0,0,0,0.38);--mdc-theme-ipt-on-base-textHint-color:var(--ipt-on-base-textHint-color);--ipt-on-base-textDisabled-opacity:0.38;--mdc-theme-ipt-on-base-textDisabled-opacity:var(--ipt-on-base-textDisabled-opacity);--ipt-on-base-textDisabled-color:rgba(0,0,0,0.38);--mdc-theme-ipt-on-base-textDisabled-color:var(--ipt-on-base-textDisabled-color);--ipt-on-base-textIcon-opacity:0.5;--mdc-theme-ipt-on-base-textIcon-opacity:var(--ipt-on-base-textIcon-opacity);--ipt-on-base-textIcon-color:rgba(0,0,0,0.5);--mdc-theme-ipt-on-base-textIcon-color:var(--ipt-on-base-textIcon-color);--ipt-base-border-opacity:0.12;--mdc-theme-ipt-base-border-opacity:var(--ipt-base-border-opacity);--ipt-base-hover-opacity:0.08;--mdc-theme-ipt-base-hover-opacity:var(--ipt-base-hover-opacity);--ipt-base-pressed-opacity:0.16;--mdc-theme-ipt-base-pressed-opacity:var(--ipt-base-pressed-opacity);--ipt-base-stripes-opacity:0.04;--mdc-theme-ipt-base-stripes-opacity:var(--ipt-base-stripes-opacity);--ipt-base-border-color:rgba(0,0,0,0.12);--mdc-theme-ipt-base-border-color:var(--ipt-base-border-color);--ipt-base-hover-color:rgba(0,0,0,0.08);--mdc-theme-ipt-base-hover-color:var(--ipt-base-hover-color);--ipt-base-pressed-color:rgba(0,0,0,0.16);--mdc-theme-ipt-base-pressed-color:var(--ipt-base-pressed-color);--ipt-base-stripes-color:rgba(0,0,0,0.04);--mdc-theme-ipt-base-stripes-color:var(--ipt-base-stripes-color);--ipt-baseAlt-rgb:0,0,0;--mdc-theme-ipt-baseAlt-rgb:var(--ipt-baseAlt-rgb);--ipt-baseAlt-bg:rgb(0,0,0);--mdc-theme-ipt-baseAlt-bg:var(--ipt-baseAlt-bg);--ipt-baseAlt-color:rgb(0,0,0);--mdc-theme-ipt-baseAlt-color:var(--ipt-baseAlt-color);--ipt-baseAlt-shade1-rgb:31,31,31;--mdc-theme-ipt-baseAlt-shade1-rgb:var(--ipt-baseAlt-shade1-rgb);--ipt-baseAlt-shade1-bg:rgb(31,31,31);--mdc-theme-ipt-baseAlt-shade1-bg:var(--ipt-baseAlt-shade1-bg);--ipt-baseAlt-shade1-color:rgb(31,31,31);--mdc-theme-ipt-baseAlt-shade1-color:var(--ipt-baseAlt-shade1-color);--ipt-baseAlt-shade2-rgb:26,26,26;--mdc-theme-ipt-baseAlt-shade2-rgb:var(--ipt-baseAlt-shade2-rgb);--ipt-baseAlt-shade2-bg:rgb(26,26,26);--mdc-theme-ipt-baseAlt-shade2-bg:var(--ipt-baseAlt-shade2-bg);--ipt-baseAlt-shade2-color:rgb(26,26,26);--mdc-theme-ipt-baseAlt-shade2-color:var(--ipt-baseAlt-shade2-color);--ipt-baseAlt-shade3-rgb:18,18,18;--mdc-theme-ipt-baseAlt-shade3-rgb:var(--ipt-baseAlt-shade3-rgb);--ipt-baseAlt-shade3-bg:rgb(18,18,18);--mdc-theme-ipt-baseAlt-shade3-bg:var(--ipt-baseAlt-shade3-bg);--ipt-baseAlt-shade3-color:rgb(18,18,18);--mdc-theme-ipt-baseAlt-shade3-color:var(--ipt-baseAlt-shade3-color);--ipt-on-baseAlt-rgb:255,255,255;--mdc-theme-ipt-on-baseAlt-rgb:var(--ipt-on-baseAlt-rgb);--ipt-on-baseAlt-color:rgb(255,255,255);--mdc-theme-ipt-on-baseAlt-color:var(--ipt-on-baseAlt-color);--ipt-on-baseAlt-accent1-rgb:245,197,24;--mdc-theme-ipt-on-baseAlt-accent1-rgb:var(--ipt-on-baseAlt-accent1-rgb);--ipt-on-baseAlt-accent1-color:rgb(245,197,24);--mdc-theme-ipt-on-baseAlt-accent1-color:var(--ipt-on-baseAlt-accent1-color);--ipt-on-baseAlt-accent2-rgb:87,153,239;--mdc-theme-ipt-on-baseAlt-accent2-rgb:var(--ipt-on-baseAlt-accent2-rgb);--ipt-on-baseAlt-accent2-color:rgb(87,153,239);--mdc-theme-ipt-on-baseAlt-accent2-color:var(--ipt-on-baseAlt-accent2-color);--ipt-on-baseAlt-accent3-rgb:251,60,60;--mdc-theme-ipt-on-baseAlt-accent3-rgb:var(--ipt-on-baseAlt-accent3-rgb);--ipt-on-baseAlt-accent3-color:rgb(251,60,60);--mdc-theme-ipt-on-baseAlt-accent3-color:var(--ipt-on-baseAlt-accent3-color);--ipt-on-baseAlt-accent4-rgb:103,173,75;--mdc-theme-ipt-on-baseAlt-accent4-rgb:var(--ipt-on-baseAlt-accent4-rgb);--ipt-on-baseAlt-accent4-color:rgb(103,173,75);--mdc-theme-ipt-on-baseAlt-accent4-color:var(--ipt-on-baseAlt-accent4-color);--ipt-on-baseAlt-textPrimary-opacity:1;--mdc-theme-ipt-on-baseAlt-textPrimary-opacity:var(--ipt-on-baseAlt-textPrimary-opacity);--ipt-on-baseAlt-textPrimary-color:rgba(255,255,255,1);--mdc-theme-ipt-on-baseAlt-textPrimary-color:var(--ipt-on-baseAlt-textPrimary-color);--ipt-on-baseAlt-textSecondary-opacity:0.7;--mdc-theme-ipt-on-baseAlt-textSecondary-opacity:var(--ipt-on-baseAlt-textSecondary-opacity);--ipt-on-baseAlt-textSecondary-color:rgba(255,255,255,0.7);--mdc-theme-ipt-on-baseAlt-textSecondary-color:var(--ipt-on-baseAlt-textSecondary-color);--ipt-on-baseAlt-textHint-opacity:0.5;--mdc-theme-ipt-on-baseAlt-textHint-opacity:var(--ipt-on-baseAlt-textHint-opacity);--ipt-on-baseAlt-textHint-color:rgba(255,255,255,0.5);--mdc-theme-ipt-on-baseAlt-textHint-color:var(--ipt-on-baseAlt-textHint-color);--ipt-on-baseAlt-textDisabled-opacity:0.5;--mdc-theme-ipt-on-baseAlt-textDisabled-opacity:var(--ipt-on-baseAlt-textDisabled-opacity);--ipt-on-baseAlt-textDisabled-color:rgba(255,255,255,0.5);--mdc-theme-ipt-on-baseAlt-textDisabled-color:var(--ipt-on-baseAlt-textDisabled-color);--ipt-on-baseAlt-textIcon-opacity:1;--mdc-theme-ipt-on-baseAlt-textIcon-opacity:var(--ipt-on-baseAlt-textIcon-opacity);--ipt-on-baseAlt-textIcon-color:rgba(255,255,255,1);--mdc-theme-ipt-on-baseAlt-textIcon-color:var(--ipt-on-baseAlt-textIcon-color);--ipt-baseAlt-border-opacity:0.2;--mdc-theme-ipt-baseAlt-border-opacity:var(--ipt-baseAlt-border-opacity);--ipt-baseAlt-hover-opacity:0.08;--mdc-theme-ipt-baseAlt-hover-opacity:var(--ipt-baseAlt-hover-opacity);--ipt-baseAlt-pressed-opacity:0.32;--mdc-theme-ipt-baseAlt-pressed-opacity:var(--ipt-baseAlt-pressed-opacity);--ipt-baseAlt-stripes-opacity:0.12;--mdc-theme-ipt-baseAlt-stripes-opacity:var(--ipt-baseAlt-stripes-opacity);--ipt-baseAlt-border-color:rgba(255,255,255,0.2);--mdc-theme-ipt-baseAlt-border-color:var(--ipt-baseAlt-border-color);--ipt-baseAlt-hover-color:rgba(255,255,255,0.08);--mdc-theme-ipt-baseAlt-hover-color:var(--ipt-baseAlt-hover-color);--ipt-baseAlt-pressed-color:rgba(255,255,255,0.32);--mdc-theme-ipt-baseAlt-pressed-color:var(--ipt-baseAlt-pressed-color);--ipt-baseAlt-stripes-color:rgba(255,255,255,0.12);--mdc-theme-ipt-baseAlt-stripes-color:var(--ipt-baseAlt-stripes-color);--ipt-accent1-rgb:245,197,24;--mdc-theme-ipt-accent1-rgb:var(--ipt-accent1-rgb);--ipt-accent1-bg:rgb(245,197,24);--mdc-theme-ipt-accent1-bg:var(--ipt-accent1-bg);--ipt-accent1-color:rgb(245,197,24);--mdc-theme-ipt-accent1-color:var(--ipt-accent1-color);--ipt-on-accent1-rgb:0,0,0;--mdc-theme-ipt-on-accent1-rgb:var(--ipt-on-accent1-rgb);--ipt-on-accent1-color:rgb(0,0,0);--mdc-theme-ipt-on-accent1-color:var(--ipt-on-accent1-color);--ipt-accent2-rgb:14,99,190;--mdc-theme-ipt-accent2-rgb:var(--ipt-accent2-rgb);--ipt-accent2-bg:rgb(14,99,190);--mdc-theme-ipt-accent2-bg:var(--ipt-accent2-bg);--ipt-accent2-color:rgb(14,99,190);--mdc-theme-ipt-accent2-color:var(--ipt-accent2-color);--ipt-on-accent2-rgb:255,255,255;--mdc-theme-ipt-on-accent2-rgb:var(--ipt-on-accent2-rgb);--ipt-on-accent2-color:rgb(255,255,255);--mdc-theme-ipt-on-accent2-color:var(--ipt-on-accent2-color);--ipt-accent3-rgb:189,36,4;--mdc-theme-ipt-accent3-rgb:var(--ipt-accent3-rgb);--ipt-accent3-bg:rgb(189,36,4);--mdc-theme-ipt-accent3-bg:var(--ipt-accent3-bg);--ipt-accent3-color:rgb(189,36,4);--mdc-theme-ipt-accent3-color:var(--ipt-accent3-color);--ipt-on-accent3-rgb:255,255,255;--mdc-theme-ipt-on-accent3-rgb:var(--ipt-on-accent3-rgb);--ipt-on-accent3-color:rgb(255,255,255);--mdc-theme-ipt-on-accent3-color:var(--ipt-on-accent3-color);--ipt-accent4-rgb:0,114,7;--mdc-theme-ipt-accent4-rgb:var(--ipt-accent4-rgb);--ipt-accent4-bg:rgb(0,114,7);--mdc-theme-ipt-accent4-bg:var(--ipt-accent4-bg);--ipt-accent4-color:rgb(0,114,7);--mdc-theme-ipt-accent4-color:var(--ipt-accent4-color);--ipt-on-accent4-rgb:255,255,255;--mdc-theme-ipt-on-accent4-rgb:var(--ipt-on-accent4-rgb);--ipt-on-accent4-color:rgb(255,255,255);--mdc-theme-ipt-on-accent4-color:var(--ipt-on-accent4-color);--mdc-theme-primary:var(--ipt-baseAlt-color);--mdc-theme-secondary:var(--ipt-accent1-color);--mdc-theme-background:var(--ipt-base-color);--mdc-theme-surface:var(--ipt-base-shade1-color);--mdc-theme-on-primary:var(--ipt-on-baseAlt-color);--mdc-theme-on-secondary:var(--ipt-on-accent1-color);--mdc-theme-on-surface:var(--ipt-on-base-color);--mdc-theme-text-primary-on-background:var(--ipt-on-base-textPrimary-color);--mdc-theme-text-secondary-on-background:var(--ipt-on-base-textSecondary-color);--mdc-theme-text-hint-on-background:var(--ipt-on-base-textHint-color);--mdc-theme-text-disabled-on-background:var(--ipt-on-base-textDisabled-color);--mdc-theme-text-icon-on-background:var(--ipt-on-base-textIcon-color);--mdc-theme-text-primary-on-light:var(--ipt-on-base-textPrimary-color);--mdc-theme-text-secondary-on-light:var(--ipt-on-base-textSecondary-color);--mdc-theme-text-hint-on-light:var(--ipt-on-base-textHint-color);--mdc-theme-text-disabled-on-light:var(--ipt-on-base-textDisabled-color);--mdc-theme-text-icon-on-light:var(--ipt-on-base-textIcon-color);--mdc-theme-text-primary-on-dark:var(--ipt-on-baseAlt-textPrimary-color);--mdc-theme-text-secondary-on-dark:var(--ipt-on-baseAlt-textSecondary-color);--mdc-theme-text-hint-on-dark:var(--ipt-on-baseAlt-textHint-color);--mdc-theme-text-disabled-on-dark:var(--ipt-on-baseAlt-textDisabled-color);--mdc-theme-text-icon-on-dark:var(--ipt-on-baseAlt-textIcon-color);background:rgb(18,18,18);background:var(--ipt-baseAlt-shade3-bg,rgb(18,18,18));color:rgba(255,255,255,1);color:var(--ipt-on-baseAlt-textPrimary-color,rgba(255,255,255,1));font-family:'Roboto','Helvetica','Arial',sans-serif;font-family:var(--ipt-font-family);font-size:1rem;font-size:var(--ipt-type-body-size,1rem);font-weight:400;font-weight:var(--ipt-type-body-weight,400);-webkit-letter-spacing:.03125em;-moz-letter-spacing:.03125em;-ms-letter-spacing:.03125em;letter-spacing:.03125em;-webkit-letter-spacing:var(--ipt-type-body-letterSpacing,.03125em);-moz-letter-spacing:var(--ipt-type-body-letterSpacing,.03125em);-ms-letter-spacing:var(--ipt-type-body-letterSpacing,.03125em);letter-spacing:var(--ipt-type-body-letterSpacing,.03125em);line-height:1.5rem;line-height:var(--ipt-type-body-lineHeight,1.5rem);text-transform:none;text-transform:var(--ipt-type-body-textTransform,none);padding:0.25rem;margin:0;position:relative;z-index:1000;min-height:3.5rem;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:100%;}/*!sc*/
.ktUtzl a{color:inherit;}/*!sc*/
.ktUtzl .navbar__inner{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;width:100vw;margin:0;}/*!sc*/
@media screen and (min-width:600px){.ktUtzl .navbar__inner{padding:0 0.75rem;}}/*!sc*/
@media screen and (min-width:1024px){.ktUtzl .navbar__inner{width:100%;margin:0 auto;}}/*!sc*/
.ktUtzl label{margin-bottom:0;}/*!sc*/
.ktUtzl li{margin-bottom:0;}/*!sc*/
data-styled.g36[id="sc-ezWOiH"]{content:"ktUtzl,"}/*!sc*/
.hMAZwf{border:1px solid rgba(var(--ipt-on-baseAlt-rgb),0.16);-webkit-order:5;-ms-flex-order:5;order:5;width:1px;height:2rem;margin:0 0.5rem;}/*!sc*/
@media screen and (max-width:600px){.hMAZwf{display:none;-webkit-order:8;-ms-flex-order:8;order:8;}}/*!sc*/
data-styled.g37[id="sc-bZkfAO"]{content:"hMAZwf,"}/*!sc*/
</style>
<section id="imdb-bmo-navbar"><script>if(typeof uet === 'function'){ uet('bb', 'imdbHeader', {wb: 1}); }</script><nav class="sc-ezWOiH ktUtzl imdb-header imdb-header--react celwidget" id="imdbHeader"><div class="imdb-header__login-state-node" id="nblogin"></div><div class="ipc-page-content-container ipc-page-content-container--center navbar__inner" role="presentation"><label aria-disabled="false" aria-label="Open Navigation Drawer" class="ipc-icon-button hamburger__icon sc-dIouRR gcmCOw mobile ipc-icon-button--baseAlt ipc-icon-button--onBase" for="imdbHeader-navDrawer" id="imdbHeader-navDrawerOpen" role="button" tabindex="0" title="Open Navigation Drawer"><svg class="ipc-icon ipc-icon--menu" fill="currentColor" height="24" id="iconContext-menu" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h24v24H0V0z" fill="none"></path><path d="M4 18h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zm0-5h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zM3 7c0 .55.45 1 1 1h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1z"></path></svg></label><label aria-disabled="false" aria-label="Open Navigation Drawer" class="ipc-button ipc-button--single-padding ipc-button--center-align-content ipc-button--default-height ipc-button--core-baseAlt ipc-button--theme-baseAlt ipc-button--on-textPrimary ipc-text-button hamburger__icon sc-dIouRR gcmCOw desktop" for="imdbHeader-navDrawer" id="imdbHeader-navDrawerOpen--desktop" role="button" tabindex="0"><svg class="ipc-icon ipc-icon--menu ipc-button__icon ipc-button__icon--pre" fill="currentColor" height="24" id="iconContext-menu" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h24v24H0V0z" fill="none"></path><path d="M4 18h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zm0-5h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zM3 7c0 .55.45 1 1 1h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1z"></path></svg><div class="ipc-button__text">Menu</div></label><input aria-hidden="true" class="drawer__state" hidden="" id="imdbHeader-navDrawer" name="imdbHeader-navDrawer" type="checkbox"/><aside class="sc-crXcEl PMSTF drawer hamburger__drawer imdb-header__nav-drawer" data-testid="drawer" role="presentation"><div aria-hidden="true" class="drawer__panel" data-testid="panel" role="presentation"><div class="drawer__panelHeader" data-testid="panel-header" role="presentation"><a href="/?ref_=nv_home"><svg class="ipc-logo drawer-logo" height="56" version="1.1" viewbox="0 0 64 32" width="98" xmlns="http://www.w3.org/2000/svg"><g fill="#F5C518"><rect height="100%" rx="4" width="100%" x="0" y="0"></rect></g><g fill="#000000" fill-rule="nonzero" transform="translate(8.000000, 7.000000)"><polygon points="0 18 5 18 5 0 0 0"></polygon><path d="M15.6725178,0 L14.5534833,8.40846934 L13.8582008,3.83502426 C13.65661,2.37009263 13.4632474,1.09175121 13.278113,0 L7,0 L7,18 L11.2416347,18 L11.2580911,6.11380679 L13.0436094,18 L16.0633571,18 L17.7583653,5.8517865 L17.7707076,18 L22,18 L22,0 L15.6725178,0 Z"></path><path d="M24,18 L24,0 L31.8045586,0 C33.5693522,0 35,1.41994415 35,3.17660424 L35,14.8233958 C35,16.5777858 33.5716617,18 31.8045586,18 L24,18 Z M29.8322479,3.2395236 C29.6339219,3.13233348 29.2545158,3.08072342 28.7026524,3.08072342 L28.7026524,14.8914865 C29.4312846,14.8914865 29.8796736,14.7604764 30.0478195,14.4865461 C30.2159654,14.2165858 30.3021941,13.486105 30.3021941,12.2871637 L30.3021941,5.3078959 C30.3021941,4.49404499 30.272014,3.97397442 30.2159654,3.74371416 C30.1599168,3.5134539 30.0348852,3.34671372 29.8322479,3.2395236 Z"></path><path d="M44.4299079,4.50685823 L44.749518,4.50685823 C46.5447098,4.50685823 48,5.91267586 48,7.64486762 L48,14.8619906 C48,16.5950653 46.5451816,18 44.749518,18 L44.4299079,18 C43.3314617,18 42.3602746,17.4736618 41.7718697,16.6682739 L41.4838962,17.7687785 L37,17.7687785 L37,0 L41.7843263,0 L41.7843263,5.78053556 C42.4024982,5.01015739 43.3551514,4.50685823 44.4299079,4.50685823 Z M43.4055679,13.2842155 L43.4055679,9.01907814 C43.4055679,8.31433946 43.3603268,7.85185468 43.2660746,7.63896485 C43.1718224,7.42607505 42.7955881,7.2893916 42.5316822,7.2893916 C42.267776,7.2893916 41.8607934,7.40047379 41.7816216,7.58767002 L41.7816216,9.01907814 L41.7816216,13.4207851 L41.7816216,14.8074788 C41.8721037,15.0130276 42.2602358,15.1274059 42.5316822,15.1274059 C42.8031285,15.1274059 43.1982131,15.0166981 43.281155,14.8074788 C43.3640968,14.5982595 43.4055679,14.0880581 43.4055679,13.2842155 Z"></path></g></svg></a><label aria-disabled="false" aria-label="Close Navigation Drawer" class="ipc-icon-button drawer__panelHeaderClose ipc-icon-button--baseAlt ipc-icon-button--onBase" for="imdbHeader-navDrawer" role="button" tabindex="0" title="Close Navigation Drawer"><svg class="ipc-icon ipc-icon--clear" fill="currentColor" height="24" id="iconContext-clear" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h24v24H0V0z" fill="none"></path><path d="M18.3 5.71a.996.996 0 0 0-1.41 0L12 10.59 7.11 5.7A.996.996 0 1 0 5.7 7.11L10.59 12 5.7 16.89a.996.996 0 1 0 1.41 1.41L12 13.41l4.89 4.89a.996.996 0 1 0 1.41-1.41L13.41 12l4.89-4.89c.38-.38.38-1.02 0-1.4z"></path></svg></label></div><div class="drawer__panelContent" data-testid="panel-content" role="presentation"><div class="sc-fEOsli iYlngk navlcl" role="presentation"><div class="sc-breuTD cqozJK navlinkcat" data-testid="nav-link-category" role="presentation"><input aria-hidden="true" class="navlinkcat__state" data-category-id="mov" hidden="" id="nav-link-categories-mov" name="nav-categories-list" tabindex="-1" type="radio"/><span class="navlinkcat__targetWrapper"><label aria-label="Expand Movies Nav Links" class="navlinkcat__item" data-testid="category-expando" for="nav-link-categories-mov" role="button" tabindex="0"><span class="navlinkcat__itemIcon"><svg class="ipc-icon ipc-icon--movie" fill="currentColor" height="24" id="iconContext-movie" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h24v24H0V0z" fill="none"></path><path d="M18 4v1h-2V4c0-.55-.45-1-1-1H9c-.55 0-1 .45-1 1v1H6V4c0-.55-.45-1-1-1s-1 .45-1 1v16c0 .55.45 1 1 1s1-.45 1-1v-1h2v1c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-1h2v1c0 .55.45 1 1 1s1-.45 1-1V4c0-.55-.45-1-1-1s-1 .45-1 1zM8 17H6v-2h2v2zm0-4H6v-2h2v2zm0-4H6V7h2v2zm10 8h-2v-2h2v2zm0-4h-2v-2h2v2zm0-4h-2V7h2v2z"></path></svg></span><span class="navlinkcat__itemTitle">Movies</span><span class="navlinkcat__itemChevron"><svg class="ipc-icon ipc-icon--chevron-right" fill="currentColor" height="24" id="iconContext-chevron-right" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h24v24H0V0z" fill="none"></path><path d="M9.29 6.71a.996.996 0 0 0 0 1.41L13.17 12l-3.88 3.88a.996.996 0 1 0 1.41 1.41l4.59-4.59a.996.996 0 0 0 0-1.41L10.7 6.7c-.38-.38-1.02-.38-1.41.01z"></path></svg></span></label><div aria-expanded="false" aria-hidden="true" class="navlinkcat__listContainer" data-testid="list-container"><div class="navlinkcat__listContainerInner" role="presentation"><ul aria-orientation="vertical" class="ipc-list navlinkcat__list ipc-list--baseAlt" role="menu"><a aria-disabled="false" class="ipc-list__item nav-link sc-evZas nMWbL ipc-list__item--indent-one" href="https://www.imdb.com/calendar/?ref_=nv_mv_cal" role="menuitem" tabindex="-1"><span class="ipc-list-item__text" role="presentation">Release Calendar</span></a><a aria-disabled="false" class="ipc-list__item nav-link sc-evZas nMWbL ipc-list__item--indent-one" href="/chart/top/?ref_=nv_mv_250" role="menuitem" tabindex="-1"><span class="ipc-list-item__text" role="presentation">Top 250 Movies</span></a><a aria-disabled="false" class="ipc-list__item nav-link sc-evZas nMWbL ipc-list__item--indent-one" href="/chart/moviemeter/?ref_=nv_mv_mpm" role="menuitem" tabindex="-1"><span class="ipc-list-item__text" role="presentation">Most Popular Movies</span></a><a aria-disabled="false" class="ipc-list__item nav-link sc-evZas nMWbL ipc-list__item--indent-one" href="/feature/genre/?ref_=nv_ch_gr" role="menuitem" tabindex="-1"><span class="ipc-list-item__text" role="presentation">Browse Movies by Genre</span></a><a aria-disabled="false" class="ipc-list__item nav-link sc-evZas nMWbL ipc-list__item--indent-one" href="/chart/boxoffice/?ref_=nv_ch_cht" role="menuitem" tabindex="-1"><span class="ipc-list-item__text" role="presentation">Top Box Office</span></a><a aria-disabled="false" class="ipc-list__item nav-link sc-evZas nMWbL ipc-list__item--indent-one" href="/showtimes/?ref_=nv_mv_sh" role="menuitem" tabindex="-1"><span class="ipc-list-item__text" role="presentation">Showtimes & Tickets</span></a><a aria-disabled="false" class="ipc-list__item nav-link sc-evZas nMWbL ipc-list__item--indent-one" href="/news/movie/?ref_=nv_nw_mv" role="menuitem" tabindex="-1"><span class="ipc-list-item__text" role="presentation">Movie News</span></a><a aria-disabled="false" class="ipc-list__item nav-link sc-evZas nMWbL ipc-list__item--indent-one" href="/india/toprated/?ref_=nv_mv_in" role="menuitem" tabindex="-1"><span class="ipc-list-item__text" role="presentation">India Movie Spotlight</span></a></ul></div></div></span></div><div class="sc-ksZaOG gSOLIo" data-testid="grouped-link-category"><div class="sc-breuTD cqozJK navlinkcat sc-fnykZs SyRwP" data-testid="nav-link-category" role="presentation"><input aria-hidden="true" class="navlinkcat__state" data-category-id="tvshows" hidden="" id="nav-link-categories-tvshows" name="nav-categories-list" tabindex="-1" type="radio"/><span class="navlinkcat__targetWrapper"><label aria-label="Expand TV Shows Nav Links" class="navlinkcat__item" data-testid="category-expando" for="nav-link-categories-tvshows" role="button" tabindex="0"><span class="navlinkcat__itemIcon"><svg class="ipc-icon ipc-icon--television" fill="currentColor" height="24" id="iconContext-television" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h24v24H0V0z" fill="none"></path><path d="M21 3H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h5v1c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-1h5c1.1 0 1.99-.9 1.99-2L23 5a2 2 0 0 0-2-2zm-1 14H4c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1h16c.55 0 1 .45 1 1v10c0 .55-.45 1-1 1z"></path></svg></span><span class="navlinkcat__itemTitle">TV Shows</span><span class="navlinkcat__itemChevron"><svg class="ipc-icon ipc-icon--chevron-right" fill="currentColor" height="24" id="iconContext-chevron-right" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h24v24H0V0z" fill="none"></path><path d="M9.29 6.71a.996.996 0 0 0 0 1.41L13.17 12l-3.88 3.88a.996.996 0 1 0 1.41 1.41l4.59-4.59a.996.996 0 0 0 0-1.41L10.7 6.7c-.38-.38-1.02-.38-1.41.01z"></path></svg></span></label><div aria-expanded="false" aria-hidden="true" class="navlinkcat__listContainer" data-testid="list-container"><div class="navlinkcat__listContainerInner" role="presentation"><ul aria-orientation="vertical" class="ipc-list navlinkcat__list ipc-list--baseAlt" role="menu"><a aria-disabled="false" class="ipc-list__item nav-link sc-evZas nMWbL ipc-list__item--indent-one" href="/whats-on-tv/?ref_=nv_tv_ontv" role="menuitem" tabindex="-1"><span class="ipc-list-item__text" role="presentation">What's on TV & Streaming</span></a><a aria-disabled="false" class="ipc-list__item nav-link sc-evZas nMWbL ipc-list__item--indent-one" href="/chart/toptv/?ref_=nv_tvv_250" role="menuitem" tabindex="-1"><span class="ipc-list-item__text" role="presentation">Top 250 TV Shows</span></a><a aria-disabled="false" class="ipc-list__item nav-link sc-evZas nMWbL ipc-list__item--indent-one" href="/chart/tvmeter/?ref_=nv_tvv_mptv" role="menuitem" tabindex="-1"><span class="ipc-list-item__text" role="presentation">Most Popular TV Shows</span></a><a aria-disabled="false" class="ipc-list__item nav-link sc-evZas nMWbL ipc-list__item--indent-one" href="/feature/genre/" role="menuitem" tabindex="-1"><span class="ipc-list-item__text" role="presentation">Browse TV Shows by Genre</span></a><a aria-disabled="false" class="ipc-list__item nav-link sc-evZas nMWbL ipc-list__item--indent-one" href="/news/tv/?ref_=nv_nw_tv" role="menuitem" tabindex="-1"><span class="ipc-list-item__text" role="presentation">TV News</span></a><a aria-disabled="false" class="ipc-list__item nav-link sc-evZas nMWbL ipc-list__item--indent-one" href="/india/tv?ref_=nv_tv_in" role="menuitem" tabindex="-1"><span class="ipc-list-item__text" role="presentation">India TV Spotlight</span></a></ul></div></div></span></div><div class="sc-breuTD cqozJK navlinkcat sc-fnykZs SyRwP" data-testid="nav-link-category" role="presentation"><input aria-hidden="true" class="navlinkcat__state" data-category-id="video" hidden="" id="nav-link-categories-video" name="nav-categories-list" tabindex="-1" type="radio"/><span class="navlinkcat__targetWrapper"><label aria-label="Expand Watch Nav Links" class="navlinkcat__item" data-testid="category-expando" for="nav-link-categories-video" role="button" tabindex="0"><span class="navlinkcat__itemIcon"><svg class="ipc-icon ipc-icon--video-library" fill="currentColor" height="24" id="iconContext-video-library" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M3 6c-.55 0-1 .45-1 1v13c0 1.1.9 2 2 2h13c.55 0 1-.45 1-1s-.45-1-1-1H5c-.55 0-1-.45-1-1V7c0-.55-.45-1-1-1zm17-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-8 12.5v-9l5.47 4.1c.27.2.27.6 0 .8L12 14.5z"></path></svg></span><span class="navlinkcat__itemTitle">Watch</span><span class="navlinkcat__itemChevron"><svg class="ipc-icon ipc-icon--chevron-right" fill="currentColor" height="24" id="iconContext-chevron-right" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h24v24H0V0z" fill="none"></path><path d="M9.29 6.71a.996.996 0 0 0 0 1.41L13.17 12l-3.88 3.88a.996.996 0 1 0 1.41 1.41l4.59-4.59a.996.996 0 0 0 0-1.41L10.7 6.7c-.38-.38-1.02-.38-1.41.01z"></path></svg></span></label><div aria-expanded="false" aria-hidden="true" class="navlinkcat__listContainer" data-testid="list-container"><div class="navlinkcat__listContainerInner" role="presentation"><ul aria-orientation="vertical" class="ipc-list navlinkcat__list ipc-list--baseAlt" role="menu"><a aria-disabled="false" class="ipc-list__item nav-link sc-evZas nMWbL ipc-list__item--indent-one" href="/what-to-watch/?ref_=nv_watch" role="menuitem" tabindex="-1"><span class="ipc-list-item__text" role="presentation">What to Watch</span></a><a aria-disabled="false" class="ipc-list__item nav-link sc-evZas nMWbL ipc-list__item--indent-one" href="/trailers/?ref_=nv_mv_tr" role="menuitem" tabindex="-1"><span class="ipc-list-item__text" role="presentation">Latest Trailers</span></a><a aria-disabled="false" class="ipc-list__item nav-link sc-evZas nMWbL ipc-list__item--indent-one" href="/originals/?ref_=nv_sf_ori" role="menuitem" tabindex="-1"><span class="ipc-list-item__text" role="presentation">IMDb Originals</span></a><a aria-disabled="false" class="ipc-list__item nav-link sc-evZas nMWbL ipc-list__item--indent-one" href="/imdbpicks/?ref_=nv_pi" role="menuitem" tabindex="-1"><span class="ipc-list-item__text" role="presentation">IMDb Picks</span></a><a aria-disabled="false" class="ipc-list__item nav-link sc-evZas nMWbL ipc-list__item--indent-one" href="/podcasts/?ref_=nv_pod" role="menuitem" tabindex="-1"><span class="ipc-list-item__text" role="presentation">IMDb Podcasts</span></a></ul></div></div></span></div></div><div class="sc-breuTD cqozJK navlinkcat" data-testid="nav-link-category" role="presentation"><input aria-hidden="true" class="navlinkcat__state" data-category-id="awards" hidden="" id="nav-link-categories-awards" name="nav-categories-list" tabindex="-1" type="radio"/><span class="navlinkcat__targetWrapper"><label aria-label="Expand Awards & Events Nav Links" class="navlinkcat__item" data-testid="category-expando" for="nav-link-categories-awards" role="button" tabindex="0"><span class="navlinkcat__itemIcon"><svg class="ipc-icon ipc-icon--star-circle-filled" fill="currentColor" height="24" id="iconContext-star-circle-filled" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h24v24H0V0z" fill="none"></path><path d="M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zm3.23 15.39L12 15.45l-3.22 1.94a.502.502 0 0 1-.75-.54l.85-3.66-2.83-2.45a.505.505 0 0 1 .29-.88l3.74-.32 1.46-3.45c.17-.41.75-.41.92 0l1.46 3.44 3.74.32a.5.5 0 0 1 .28.88l-2.83 2.45.85 3.67c.1.43-.36.77-.74.54z"></path></svg></span><span class="navlinkcat__itemTitle">Awards & Events</span><span class="navlinkcat__itemChevron"><svg class="ipc-icon ipc-icon--chevron-right" fill="currentColor" height="24" id="iconContext-chevron-right" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h24v24H0V0z" fill="none"></path><path d="M9.29 6.71a.996.996 0 0 0 0 1.41L13.17 12l-3.88 3.88a.996.996 0 1 0 1.41 1.41l4.59-4.59a.996.996 0 0 0 0-1.41L10.7 6.7c-.38-.38-1.02-.38-1.41.01z"></path></svg></span></label><div aria-expanded="false" aria-hidden="true" class="navlinkcat__listContainer" data-testid="list-container"><div class="navlinkcat__listContainerInner" role="presentation"><ul aria-orientation="vertical" class="ipc-list navlinkcat__list ipc-list--baseAlt" role="menu"><a aria-disabled="false" class="ipc-list__item nav-link sc-evZas nMWbL ipc-list__item--indent-one" href="/oscars/?ref_=nv_ev_acd" role="menuitem" tabindex="-1"><span class="ipc-list-item__text" role="presentation">Oscars</span></a><a aria-disabled="false" class="ipc-list__item nav-link nav-link--hideL nav-link--hideXL sc-evZas nMWbL ipc-list__item--indent-one" href="https://m.imdb.com/feature/bestpicture/?ref_=nv_ch_osc" role="menuitem" tabindex="-1"><span class="ipc-list-item__text" role="presentation">Best Picture Winners</span></a><a aria-disabled="false" class="ipc-list__item nav-link nav-link--hideXS nav-link--hideS nav-link--hideM sc-evZas nMWbL ipc-list__item--indent-one" href="https://www.imdb.com/search/title/?count=100&groups=oscar_best_picture_winners&sort=year%2Cdesc&ref_=nv_ch_osc" role="menuitem" tabindex="-1"><span class="ipc-list-item__text" role="presentation">Best Picture Winners</span></a><a aria-disabled="false" class="ipc-list__item nav-link sc-evZas nMWbL ipc-list__item--indent-one" href="/emmys/?ref_=nv_ev_rte" role="menuitem" tabindex="-1"><span class="ipc-list-item__text" role="presentation">Emmys</span></a><a aria-disabled="false" class="ipc-list__item nav-link sc-evZas nMWbL ipc-list__item--indent-one" href="/imdbpicks/hispanic-heritage-month/?ref_=nv_ev_hlm" role="menuitem" tabindex="-1"><span class="ipc-list-item__text" role="presentation">Hispanic & Latino Voices</span></a><a aria-disabled="false" class="ipc-list__item nav-link sc-evZas nMWbL ipc-list__item--indent-one" href="/starmeterawards/?ref_=nv_ev_sma" role="menuitem" tabindex="-1"><span class="ipc-list-item__text" role="presentation">STARmeter Awards</span></a><a aria-disabled="false" class="ipc-list__item nav-link sc-evZas nMWbL ipc-list__item--indent-one" href="/comic-con/?ref_=nv_ev_comic" role="menuitem" tabindex="-1"><span class="ipc-list-item__text" role="presentation">San Diego Comic-Con</span></a><a aria-disabled="false" class="ipc-list__item nav-link sc-evZas nMWbL ipc-list__item--indent-one" href="/nycc/?ref_=nv_ev_nycc" role="menuitem" tabindex="-1"><span class="ipc-list-item__text" role="presentation">New York Comic-Con</span></a><a aria-disabled="false" class="ipc-list__item nav-link sc-evZas nMWbL ipc-list__item--indent-one" href="/sundance/?ref_=nv_ev_sun" role="menuitem" tabindex="-1"><span class="ipc-list-item__text" role="presentation">Sundance Film Festival</span></a><a aria-disabled="false" class="ipc-list__item nav-link sc-evZas nMWbL ipc-list__item--indent-one" href="/toronto/?ref_=nv_ev_tor" role="menuitem" tabindex="-1"><span class="ipc-list-item__text" role="presentation">Toronto Int'l Film Festival</span></a><a aria-disabled="false" class="ipc-list__item nav-link sc-evZas nMWbL ipc-list__item--indent-one" href="/awards-central/?ref_=nv_ev_awrd" role="menuitem" tabindex="-1"><span class="ipc-list-item__text" role="presentation">Awards Central</span></a><a aria-disabled="false" class="ipc-list__item nav-link sc-evZas nMWbL ipc-list__item--indent-one" href="/festival-central/?ref_=nv_ev_fc" role="menuitem" tabindex="-1"><span class="ipc-list-item__text" role="presentation">Festival Central</span></a><a aria-disabled="false" class="ipc-list__item nav-link sc-evZas nMWbL ipc-list__item--indent-one" href="/event/all/?ref_=nv_ev_all" role="menuitem" tabindex="-1"><span class="ipc-list-item__text" role="presentation">All Events</span></a></ul></div></div></span></div><div class="sc-breuTD cqozJK navlinkcat noMarginItem" data-testid="nav-link-category" role="presentation"><input aria-hidden="true" class="navlinkcat__state" data-category-id="celebs" hidden="" id="nav-link-categories-celebs" name="nav-categories-list" tabindex="-1" type="radio"/><span class="navlinkcat__targetWrapper"><label aria-label="Expand Celebs Nav Links" class="navlinkcat__item" data-testid="category-expando" for="nav-link-categories-celebs" role="button" tabindex="0"><span class="navlinkcat__itemIcon"><svg class="ipc-icon ipc-icon--people" fill="currentColor" height="24" id="iconContext-people" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h24v24H0V0z" fill="none"></path><path d="M16 11c1.66 0 2.99-1.34 2.99-3S17.66 5 16 5s-3 1.34-3 3 1.34 3 3 3zm-8 0c1.66 0 2.99-1.34 2.99-3S9.66 5 8 5 5 6.34 5 8s1.34 3 3 3zm0 2c-2.33 0-7 1.17-7 3.5V18c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-1.5c0-2.33-4.67-3.5-7-3.5zm8 0c-.29 0-.62.02-.97.05.02.01.03.03.04.04 1.14.83 1.93 1.94 1.93 3.41V18c0 .35-.07.69-.18 1H22c.55 0 1-.45 1-1v-1.5c0-2.33-4.67-3.5-7-3.5z"></path></svg></span><span class="navlinkcat__itemTitle">Celebs</span><span class="navlinkcat__itemChevron"><svg class="ipc-icon ipc-icon--chevron-right" fill="currentColor" height="24" id="iconContext-chevron-right" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h24v24H0V0z" fill="none"></path><path d="M9.29 6.71a.996.996 0 0 0 0 1.41L13.17 12l-3.88 3.88a.996.996 0 1 0 1.41 1.41l4.59-4.59a.996.996 0 0 0 0-1.41L10.7 6.7c-.38-.38-1.02-.38-1.41.01z"></path></svg></span></label><div aria-expanded="false" aria-hidden="true" class="navlinkcat__listContainer" data-testid="list-container"><div class="navlinkcat__listContainerInner" role="presentation"><ul aria-orientation="vertical" class="ipc-list navlinkcat__list ipc-list--baseAlt" role="menu"><a aria-disabled="false" class="ipc-list__item nav-link sc-evZas nMWbL ipc-list__item--indent-one" href="/feature/bornondate/?ref_=nv_cel_brn" role="menuitem" tabindex="-1"><span class="ipc-list-item__text" role="presentation">Born Today</span></a><a aria-disabled="false" class="ipc-list__item nav-link nav-link--hideL nav-link--hideXL sc-evZas nMWbL ipc-list__item--indent-one" href="https://m.imdb.com/chart/starmeter/?ref_=nv_cel_brn" role="menuitem" tabindex="-1"><span class="ipc-list-item__text" role="presentation">Most Popular Celebs</span></a><a aria-disabled="false" class="ipc-list__item nav-link nav-link--hideXS nav-link--hideS nav-link--hideM sc-evZas nMWbL ipc-list__item--indent-one" href="https://www.imdb.com/search/name/?match_all=true&ref_=nv_cel_m" role="menuitem" tabindex="-1"><span class="ipc-list-item__text" role="presentation">Most Popular Celebs</span></a><a aria-disabled="false" class="ipc-list__item nav-link sc-evZas nMWbL ipc-list__item--indent-one" href="/news/celebrity/?ref_=nv_cel_nw" role="menuitem" tabindex="-1"><span class="ipc-list-item__text" role="presentation">Celebrity News</span></a></ul></div></div></span></div><div class="sc-hAZoDl OzViy" data-testid="nav-link-category"></div><div class="sc-breuTD cqozJK navlinkcat noMarginItem" data-testid="nav-link-category" role="presentation"><input aria-hidden="true" class="navlinkcat__state" data-category-id="comm" hidden="" id="nav-link-categories-comm" name="nav-categories-list" tabindex="-1" type="radio"/><span class="navlinkcat__targetWrapper"><label aria-label="Expand Community Nav Links" class="navlinkcat__item" data-testid="category-expando" for="nav-link-categories-comm" role="button" tabindex="0"><span class="navlinkcat__itemIcon"><svg class="ipc-icon ipc-icon--earth" fill="currentColor" height="24" id="iconContext-earth" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h24v24H0V0z" fill="none"></path><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 17.93c-3.95-.49-7-3.85-7-7.93 0-.62.08-1.21.21-1.79L9 15v1c0 1.1.9 2 2 2v1.93zm6.9-2.54c-.26-.81-1-1.39-1.9-1.39h-1v-3c0-.55-.45-1-1-1H8v-2h2c.55 0 1-.45 1-1V7h2c1.1 0 2-.9 2-2v-.41c2.93 1.19 5 4.06 5 7.41 0 2.08-.8 3.97-2.1 5.39z"></path></svg></span><span class="navlinkcat__itemTitle">Community</span><span class="navlinkcat__itemChevron"><svg class="ipc-icon ipc-icon--chevron-right" fill="currentColor" height="24" id="iconContext-chevron-right" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h24v24H0V0z" fill="none"></path><path d="M9.29 6.71a.996.996 0 0 0 0 1.41L13.17 12l-3.88 3.88a.996.996 0 1 0 1.41 1.41l4.59-4.59a.996.996 0 0 0 0-1.41L10.7 6.7c-.38-.38-1.02-.38-1.41.01z"></path></svg></span></label><div aria-expanded="false" aria-hidden="true" class="navlinkcat__listContainer" data-testid="list-container"><div class="navlinkcat__listContainerInner" role="presentation"><ul aria-orientation="vertical" class="ipc-list navlinkcat__list ipc-list--baseAlt" role="menu"><a aria-disabled="false" class="ipc-list__item nav-link sc-evZas nMWbL ipc-list__item--indent-one" href="https://help.imdb.com/imdb?ref_=cons_nb_hlp" role="menuitem" tabindex="-1"><span class="ipc-list-item__text" role="presentation">Help Center</span></a><a aria-disabled="false" class="ipc-list__item nav-link sc-evZas nMWbL ipc-list__item--indent-one" href="https://contribute.imdb.com/czone?ref_=nv_cm_cz" role="menuitem" tabindex="-1"><span class="ipc-list-item__text" role="presentation">Contributor Zone</span></a><a aria-disabled="false" class="ipc-list__item nav-link sc-evZas nMWbL ipc-list__item--indent-one" href="/poll/?ref_=nv_cm_pl" role="menuitem" tabindex="-1"><span class="ipc-list-item__text" role="presentation">Polls</span></a></ul></div></div></span></div><a aria-disabled="false" aria-label="Go To IMDb Pro" class="ipc-list__item nav-link sc-evZas nMWbL navlcl__proLink" href="https://pro.imdb.com?ref_=cons_nb_hm&rf=cons_nb_hm" role="menuitem" tabindex="0" target="_blank"><span class="ipc-list-item__text" role="presentation"><div class="sc-bjUoiL bpTVou navlcl__logoNavLink"><svg class="ipc-logo" height="14" version="1.1" viewbox="0 0 52 14" width="52" xmlns="http://www.w3.org/2000/svg"><g fill="currentColor"><rect height="12.34" width="3.21" x="0" y="1"></rect><path d="M10,1 L9.3,6.76 L8.84,3.63 C8.7,2.62 8.58,1.75 8.45,1 L4.3,1 L4.3,13.34 L7.11,13.34 L7.11,5.19 L8.3,13.34 L10.3,13.34 L11.42,5 L11.42,13.33 L14.22,13.33 L14.22,1 L10,1 Z"></path><path d="M19.24,3.22 C19.3711159,3.29185219 19.4602235,3.42180078 19.48,3.57 C19.5340993,3.92393477 19.554191,4.28223587 19.54,4.64 L19.54,9.42 C19.578852,9.92887392 19.5246327,10.4405682 19.38,10.93 C19.27,11.12 18.99,11.21 18.53,11.21 L18.53,3.11 C18.7718735,3.09406934 19.0142863,3.13162626 19.24,3.22 Z M19.24,13.34 C19.8163127,13.3574057 20.3928505,13.3138302 20.96,13.21 C21.3245396,13.1481159 21.6680909,12.9969533 21.96,12.77 C22.2288287,12.5438006 22.4209712,12.2398661 22.51,11.9 C22.643288,11.1679419 22.6969338,10.4236056 22.67,9.68 L22.67,5.34 C22.6662002,4.55669241 22.6060449,3.77467335 22.49,3 C22.43037,2.59841431 22.260779,2.22116094 22,1.91 C21.6636187,1.56093667 21.2326608,1.317654 20.76,1.21 C19.7709421,1.02848785 18.7647002,0.958050915 17.76,1 L15.32,1 L15.32,13.34 L19.24,13.34 Z"></path><path d="M27.86,10.34 C27.8769902,10.7218086 27.8501483,11.1043064 27.78,11.48 C27.72,11.63 27.46,11.71 27.26,11.71 C27.0954951,11.7299271 26.9386363,11.6349863 26.88,11.48 C26.7930212,11.1542289 26.7592527,10.8165437 26.78,10.48 L26.78,7.18 C26.7626076,6.84408875 26.7929089,6.50740774 26.87,6.18 C26.9317534,6.03447231 27.0833938,5.94840616 27.24,5.97 C27.43,5.97 27.7,6.05 27.76,6.21 C27.8468064,6.53580251 27.8805721,6.87345964 27.86,7.21 L27.86,10.34 Z M23.7,1 L23.7,13.34 L26.58,13.34 L26.78,12.55 C27.0112432,12.8467609 27.3048209,13.0891332 27.64,13.26 C28.0022345,13.4198442 28.394069,13.5016184 28.79,13.5 C29.2588971,13.515288 29.7196211,13.3746089 30.1,13.1 C30.4399329,12.8800058 30.6913549,12.5471372 30.81,12.16 C30.9423503,11.6167622 31.0061799,11.0590937 31,10.5 L31,7 C31.0087531,6.51279482 30.9920637,6.02546488 30.95,5.54 C30.904474,5.28996521 30.801805,5.05382649 30.65,4.85 C30.4742549,4.59691259 30.2270668,4.40194735 29.94,4.29 C29.5869438,4.15031408 29.2096076,4.08232558 28.83,4.09 C28.4361722,4.08961884 28.0458787,4.16428368 27.68,4.31 C27.3513666,4.46911893 27.0587137,4.693713 26.82,4.97 L26.82,1 L23.7,1 Z"></path><path d="M32.13,1 L35.32,1 C35.9925574,0.978531332 36.6650118,1.04577677 37.32,1.2 C37.717112,1.29759578 38.0801182,1.50157071 38.37,1.79 C38.6060895,2.05302496 38.7682605,2.37391646 38.84,2.72 C38.935586,3.27463823 38.9757837,3.8374068 38.96,4.4 L38.96,5.46 C38.9916226,6.03689533 38.9100917,6.61440551 38.72,7.16 C38.5402933,7.53432344 38.2260614,7.82713037 37.84,7.98 C37.3049997,8.18709035 36.7332458,8.28238268 36.16,8.26 L35.31,8.26 L35.31,13.16 L32.13,13.16 L32.13,1 Z M35.29,3.08 L35.29,6.18 L35.53,6.18 C35.7515781,6.20532753 35.9725786,6.12797738 36.13,5.97 C36.2717869,5.69610033 36.3308522,5.38687568 36.3,5.08 L36.3,4.08 C36.3390022,3.79579475 36.2713114,3.5072181 36.11,3.27 C35.8671804,3.11299554 35.5771259,3.04578777 35.29,3.08 Z"></path><path d="M42,4.36 L41.89,5.52 C42.28,4.69 43.67,4.42 44.41,4.37 L43.6,7.3 C43.2290559,7.27725357 42.8582004,7.34593052 42.52,7.5 C42.3057075,7.61238438 42.1519927,7.81367763 42.1,8.05 C42.0178205,8.59259006 41.9843538,9.14144496 42,9.69 L42,13.16 L39.34,13.16 L39.34,4.36 L42,4.36 Z"></path><path d="M51.63,9.71 C51.6472876,10.3265292 51.6003682,10.9431837 51.49,11.55 C51.376862,11.9620426 51.1639158,12.3398504 50.87,12.65 C50.5352227,13.001529 50.1148049,13.2599826 49.65,13.4 C49.0994264,13.5686585 48.5257464,13.6496486 47.95,13.64 C47.3333389,13.6524659 46.7178074,13.5818311 46.12,13.43 C45.6996896,13.322764 45.3140099,13.1092627 45,12.81 C44.7275808,12.5275876 44.5254637,12.1850161 44.41,11.81 C44.2627681,11.2181509 44.1921903,10.6098373 44.2,10 L44.2,7.64 C44.1691064,6.9584837 44.2780071,6.27785447 44.52,5.64 C44.7547114,5.12751365 45.1616363,4.71351186 45.67,4.47 C46.3337168,4.13941646 47.0688388,3.97796445 47.81,4 C48.4454888,3.98667568 49.0783958,4.08482705 49.68,4.29 C50.1352004,4.42444561 50.5506052,4.66819552 50.89,5 C51.1535526,5.26601188 51.3550281,5.58700663 51.48,5.94 C51.6001358,6.42708696 51.6506379,6.92874119 51.63,7.43 L51.63,9.71 Z M48.39,6.73 C48.412199,6.42705368 48.3817488,6.12255154 48.3,5.83 C48.2091142,5.71223121 48.0687606,5.64325757 47.92,5.64325757 C47.7712394,5.64325757 47.6308858,5.71223121 47.54,5.83 C47.447616,6.12046452 47.4136298,6.42634058 47.44,6.73 L47.44,10.93 C47.4168299,11.2204468 47.4508034,11.5126191 47.54,11.79 C47.609766,11.9270995 47.7570827,12.0067302 47.91,11.99 C48.0639216,12.0108082 48.2159732,11.9406305 48.3,11.81 C48.3790864,11.5546009 48.4096133,11.2866434 48.39,11.02 L48.39,6.73 Z"></path></g></svg><div class="sc-idiyUo cUVKHb">For Industry Professionals</div></div></span><span class="ipc-list-item__icon ipc-list-item__icon--post" role="presentation"><svg class="ipc-icon ipc-icon--launch" fill="currentColor" height="24" id="iconContext-launch" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M16 16.667H8A.669.669 0 0 1 7.333 16V8c0-.367.3-.667.667-.667h3.333c.367 0 .667-.3.667-.666C12 6.3 11.7 6 11.333 6h-4C6.593 6 6 6.6 6 7.333v9.334C6 17.4 6.6 18 7.333 18h9.334C17.4 18 18 17.4 18 16.667v-4c0-.367-.3-.667-.667-.667-.366 0-.666.3-.666.667V16c0 .367-.3.667-.667.667zm-2.667-10c0 .366.3.666.667.666h1.727L9.64 13.42a.664.664 0 1 0 .94.94l6.087-6.087V10c0 .367.3.667.666.667.367 0 .667-.3.667-.667V6h-4c-.367 0-.667.3-.667.667z"></path></svg></span></a></div></div></div><label aria-hidden="true" aria-label="Close Navigation Drawer" class="drawer__backdrop" data-testid="backdrop" for="imdbHeader-navDrawer" role="button" tabindex="0"></label></aside><a aria-label="Home" class="sc-bczRLJ hKcFfj imdb-header__logo-link" href="/?ref_=nv_home" id="home_img_holder"><svg class="ipc-logo" height="32" id="home_img" version="1.1" viewbox="0 0 64 32" width="64" xmlns="http://www.w3.org/2000/svg"><g fill="#F5C518"><rect height="100%" rx="4" width="100%" x="0" y="0"></rect></g><g fill="#000000" fill-rule="nonzero" transform="translate(8.000000, 7.000000)"><polygon points="0 18 5 18 5 0 0 0"></polygon><path d="M15.6725178,0 L14.5534833,8.40846934 L13.8582008,3.83502426 C13.65661,2.37009263 13.4632474,1.09175121 13.278113,0 L7,0 L7,18 L11.2416347,18 L11.2580911,6.11380679 L13.0436094,18 L16.0633571,18 L17.7583653,5.8517865 L17.7707076,18 L22,18 L22,0 L15.6725178,0 Z"></path><path d="M24,18 L24,0 L31.8045586,0 C33.5693522,0 35,1.41994415 35,3.17660424 L35,14.8233958 C35,16.5777858 33.5716617,18 31.8045586,18 L24,18 Z M29.8322479,3.2395236 C29.6339219,3.13233348 29.2545158,3.08072342 28.7026524,3.08072342 L28.7026524,14.8914865 C29.4312846,14.8914865 29.8796736,14.7604764 30.0478195,14.4865461 C30.2159654,14.2165858 30.3021941,13.486105 30.3021941,12.2871637 L30.3021941,5.3078959 C30.3021941,4.49404499 30.272014,3.97397442 30.2159654,3.74371416 C30.1599168,3.5134539 30.0348852,3.34671372 29.8322479,3.2395236 Z"></path><path d="M44.4299079,4.50685823 L44.749518,4.50685823 C46.5447098,4.50685823 48,5.91267586 48,7.64486762 L48,14.8619906 C48,16.5950653 46.5451816,18 44.749518,18 L44.4299079,18 C43.3314617,18 42.3602746,17.4736618 41.7718697,16.6682739 L41.4838962,17.7687785 L37,17.7687785 L37,0 L41.7843263,0 L41.7843263,5.78053556 C42.4024982,5.01015739 43.3551514,4.50685823 44.4299079,4.50685823 Z M43.4055679,13.2842155 L43.4055679,9.01907814 C43.4055679,8.31433946 43.3603268,7.85185468 43.2660746,7.63896485 C43.1718224,7.42607505 42.7955881,7.2893916 42.5316822,7.2893916 C42.267776,7.2893916 41.8607934,7.40047379 41.7816216,7.58767002 L41.7816216,9.01907814 L41.7816216,13.4207851 L41.7816216,14.8074788 C41.8721037,15.0130276 42.2602358,15.1274059 42.5316822,15.1274059 C42.8031285,15.1274059 43.1982131,15.0166981 43.281155,14.8074788 C43.3640968,14.5982595 43.4055679,14.0880581 43.4055679,13.2842155 Z"></path></g></svg></a><input aria-hidden="true" class="sc-iqcoie iKpzZH imdb-header-search__state sbar__mobileSearchStateToggle" hidden="" id="navSearch-searchState" name="navSearch-searchState" type="checkbox"/><div class="nav-search__search-container sbar sc-jqUVSM iJNbPT" id="suggestion-search-container"><form action="/find" class="searchform imdb-header__search-form sc-papXJ exojnx" id="nav-search-form" method="get" name="nav-search-form" role="search"><div class="sc-ftvSup cumdHr"><div class="sc-iBkjds iosfhR navbar__flyout--breakpoint-m navbar__flyout--positionLeft"><label aria-disabled="false" aria-label="All" class="ipc-button ipc-button--single-padding ipc-button--center-align-content ipc-button--default-height ipc-button--core-base ipc-button--theme-base ipc-button--on-textPrimary ipc-text-button navbar__flyout__text-button-after-mobile searchCatSelector__opener searchform__categories nav-search-form__categories" for="navbar-search-category-select" role="button" tabindex="0"><div class="ipc-button__text">All<svg class="ipc-icon ipc-icon--arrow-drop-down navbar__flyout__button-pointer" fill="currentColor" height="24" id="iconContext-arrow-drop-down" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h24v24H0V0z" fill="none"></path><path d="M8.71 11.71l2.59 2.59c.39.39 1.02.39 1.41 0l2.59-2.59c.63-.63.18-1.71-.71-1.71H9.41c-.89 0-1.33 1.08-.7 1.71z"></path></svg></div></label><input aria-hidden="true" class="ipc-menu__focused-state" hidden="" id="navbar-search-category-select" name="navbar-search-category-select" tabindex="-1" type="checkbox"/><div class="ipc-menu mdc-menu ipc-menu--not-initialized ipc-menu--on-baseAlt ipc-menu--anchored ipc-menu--with-checkbox ipc-menu--expand-from-top-left navbar__flyout--menu" data-menu-id="navbar-search-category-select" role="presentation"><div class="ipc-menu__items mdc-menu__items" role="presentation"><span id="navbar-search-category-select-contents"><ul aria-orientation="vertical" class="ipc-list searchCatSelector ipc-list--baseAlt" role="menu"><li aria-disabled="false" class="ipc-list__item searchCatSelector__item searchCatSelector__itemSelected" role="menuitem" tabindex="0"><span class="ipc-list-item__text" role="presentation"><svg class="ipc-icon ipc-icon--search searchCatSelector__itemIcon" fill="currentColor" height="24" id="iconContext-search" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h24v24H0V0z" fill="none"></path><path d="M15.5 14h-.79l-.28-.27a6.5 6.5 0 0 0 1.48-5.34c-.47-2.78-2.79-5-5.59-5.34a6.505 6.505 0 0 0-7.27 7.27c.34 2.8 2.56 5.12 5.34 5.59a6.5 6.5 0 0 0 5.34-1.48l.27.28v.79l4.25 4.25c.41.41 1.08.41 1.49 0 .41-.41.41-1.08 0-1.49L15.5 14zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"></path></svg>All</span></li><li aria-disabled="false" class="ipc-list__item searchCatSelector__item" role="menuitem" tabindex="0"><span class="ipc-list-item__text" role="presentation"><svg class="ipc-icon ipc-icon--movie searchCatSelector__itemIcon" fill="currentColor" height="24" id="iconContext-movie" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h24v24H0V0z" fill="none"></path><path d="M18 4v1h-2V4c0-.55-.45-1-1-1H9c-.55 0-1 .45-1 1v1H6V4c0-.55-.45-1-1-1s-1 .45-1 1v16c0 .55.45 1 1 1s1-.45 1-1v-1h2v1c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-1h2v1c0 .55.45 1 1 1s1-.45 1-1V4c0-.55-.45-1-1-1s-1 .45-1 1zM8 17H6v-2h2v2zm0-4H6v-2h2v2zm0-4H6V7h2v2zm10 8h-2v-2h2v2zm0-4h-2v-2h2v2zm0-4h-2V7h2v2z"></path></svg>Titles</span></li><li aria-disabled="false" class="ipc-list__item searchCatSelector__item" role="menuitem" tabindex="0"><span class="ipc-list-item__text" role="presentation"><svg class="ipc-icon ipc-icon--television searchCatSelector__itemIcon" fill="currentColor" height="24" id="iconContext-television" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h24v24H0V0z" fill="none"></path><path d="M21 3H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h5v1c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-1h5c1.1 0 1.99-.9 1.99-2L23 5a2 2 0 0 0-2-2zm-1 14H4c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1h16c.55 0 1 .45 1 1v10c0 .55-.45 1-1 1z"></path></svg>TV Episodes</span></li><li aria-disabled="false" class="ipc-list__item searchCatSelector__item" role="menuitem" tabindex="0"><span class="ipc-list-item__text" role="presentation"><svg class="ipc-icon ipc-icon--people searchCatSelector__itemIcon" fill="currentColor" height="24" id="iconContext-people" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h24v24H0V0z" fill="none"></path><path d="M16 11c1.66 0 2.99-1.34 2.99-3S17.66 5 16 5s-3 1.34-3 3 1.34 3 3 3zm-8 0c1.66 0 2.99-1.34 2.99-3S9.66 5 8 5 5 6.34 5 8s1.34 3 3 3zm0 2c-2.33 0-7 1.17-7 3.5V18c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-1.5c0-2.33-4.67-3.5-7-3.5zm8 0c-.29 0-.62.02-.97.05.02.01.03.03.04.04 1.14.83 1.93 1.94 1.93 3.41V18c0 .35-.07.69-.18 1H22c.55 0 1-.45 1-1v-1.5c0-2.33-4.67-3.5-7-3.5z"></path></svg>Celebs</span></li><li aria-disabled="false" class="ipc-list__item searchCatSelector__item" role="menuitem" tabindex="0"><span class="ipc-list-item__text" role="presentation"><svg class="ipc-icon ipc-icon--business searchCatSelector__itemIcon" fill="currentColor" height="24" id="iconContext-business" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h24v24H0V0z" fill="none"></path><path d="M12 7V5c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2h-8zM6 19H4v-2h2v2zm0-4H4v-2h2v2zm0-4H4V9h2v2zm0-4H4V5h2v2zm4 12H8v-2h2v2zm0-4H8v-2h2v2zm0-4H8V9h2v2zm0-4H8V5h2v2zm9 12h-7v-2h2v-2h-2v-2h2v-2h-2V9h7c.55 0 1 .45 1 1v8c0 .55-.45 1-1 1zm-1-8h-2v2h2v-2zm0 4h-2v2h2v-2z"></path></svg>Companies</span></li><li aria-disabled="false" class="ipc-list__item searchCatSelector__item" role="menuitem" tabindex="0"><span class="ipc-list-item__text" role="presentation"><svg class="ipc-icon ipc-icon--label searchCatSelector__itemIcon" fill="currentColor" height="24" id="iconContext-label" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h24v24H0V0z" fill="none"></path><path d="M17.63 5.84C17.27 5.33 16.67 5 16 5L5 5.01C3.9 5.01 3 5.9 3 7v10c0 1.1.9 1.99 2 1.99L16 19c.67 0 1.27-.33 1.63-.84l3.96-5.58a.99.99 0 0 0 0-1.16l-3.96-5.58z"></path></svg>Keywords</span></li><li class="ipc-list-divider" role="separator"></li><a aria-disabled="false" class="ipc-list__item searchCatSelector__item" href="https://www.imdb.com/search/" role="menuitem" tabindex="0"><span class="ipc-list-item__text" role="presentation"><svg class="ipc-icon ipc-icon--find-in-page searchCatSelector__itemIcon" fill="currentColor" height="24" id="iconContext-find-in-page" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h24v24H0V0z" fill="none"></path><path d="M20 19.59V8.83c0-.53-.21-1.04-.59-1.41l-4.83-4.83c-.37-.38-.88-.59-1.41-.59H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c.45 0 .85-.15 1.19-.4l-4.43-4.43c-.86.56-1.89.88-3 .82-2.37-.11-4.4-1.96-4.72-4.31a5.013 5.013 0 0 1 5.83-5.61c1.95.33 3.57 1.85 4 3.78.33 1.46.01 2.82-.7 3.9L20 19.59zM9 13c0 1.66 1.34 3 3 3s3-1.34 3-3-1.34-3-3-3-3 1.34-3 3z"></path></svg>Advanced Search</span><span class="ipc-list-item__icon ipc-list-item__icon--post" role="presentation"><svg class="ipc-icon ipc-icon--chevron-right" fill="currentColor" height="24" id="iconContext-chevron-right" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h24v24H0V0z" fill="none"></path><path d="M9.29 6.71a.996.996 0 0 0 0 1.41L13.17 12l-3.88 3.88a.996.996 0 1 0 1.41 1.41l4.59-4.59a.996.996 0 0 0 0-1.41L10.7 6.7c-.38-.38-1.02-.38-1.41.01z"></path></svg></span></a></ul></span></div></div></div></div><div class="sc-gKXOVf lbYfkb searchform__inputContainer"><div aria-expanded="false" aria-haspopup="listbox" aria-owns="react-autowhatever-1" class="react-autosuggest__container" role="combobox"><input aria-autocomplete="list" aria-controls="react-autowhatever-1" aria-label="Search IMDb" autocapitalize="off" autocomplete="off" autocorrect="off" class="imdb-header-search__input searchTypeahead__input react-autosuggest__input" id="suggestion-search" name="q" placeholder="Search IMDb" type="text" value=""/></div></div><button aria-label="Submit Search" class="nav-search__search-submit searchform__submit" id="suggestion-search-button" type="submit"><svg class="ipc-icon ipc-icon--magnify" fill="currentColor" height="24" id="iconContext-magnify" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h24v24H0V0z" fill="none"></path><path d="M15.5 14h-.79l-.28-.27a6.5 6.5 0 0 0 1.48-5.34c-.47-2.78-2.79-5-5.59-5.34a6.505 6.505 0 0 0-7.27 7.27c.34 2.8 2.56 5.12 5.34 5.59a6.5 6.5 0 0 0 5.34-1.48l.27.28v.79l4.25 4.25c.41.41 1.08.41 1.49 0 .41-.41.41-1.08 0-1.49L15.5 14zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"></path></svg></button><input name="ref_" type="hidden" value="nv_sr_sm"/></form><label aria-disabled="false" aria-label="Close Search" class="ipc-icon-button imdb-header-search__state-closer ipc-icon-button--baseAlt ipc-icon-button--onBase" for="navSearch-searchState" id="imdbHeader-searchClose" role="button" tabindex="0" title="Close Search"><svg class="ipc-icon ipc-icon--clear" fill="currentColor" height="24" id="iconContext-clear" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h24v24H0V0z" fill="none"></path><path d="M18.3 5.71a.996.996 0 0 0-1.41 0L12 10.59 7.11 5.7A.996.996 0 1 0 5.7 7.11L10.59 12 5.7 16.89a.996.996 0 1 0 1.41 1.41L12 13.41l4.89 4.89a.996.996 0 1 0 1.41-1.41L13.41 12l4.89-4.89c.38-.38.38-1.02 0-1.4z"></path></svg></label></div><label aria-disabled="false" aria-label="Open Search" class="ipc-icon-button sc-kDDrLX cxVnln imdb-header-search__state-opener ipc-icon-button--baseAlt ipc-icon-button--onBase" for="navSearch-searchState" id="imdbHeader-searchOpen" role="button" tabindex="0" title="Open Search"><svg class="ipc-icon ipc-icon--magnify" fill="currentColor" height="24" id="iconContext-magnify" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h24v24H0V0z" fill="none"></path><path d="M15.5 14h-.79l-.28-.27a6.5 6.5 0 0 0 1.48-5.34c-.47-2.78-2.79-5-5.59-5.34a6.505 6.505 0 0 0-7.27 7.27c.34 2.8 2.56 5.12 5.34 5.59a6.5 6.5 0 0 0 5.34-1.48l.27.28v.79l4.25 4.25c.41.41 1.08.41 1.49 0 .41-.41.41-1.08 0-1.49L15.5 14zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"></path></svg></label><div class="navbar__imdbpro sc-kgflAQ jjOyce"><div class="sc-iBkjds iosfhR navbar__imdbpro-content navbar__flyout--breakpoint-l"><a aria-disabled="false" aria-label="Go To IMDb Pro" class="ipc-button ipc-button--single-padding ipc-button--center-align-content ipc-button--default-height ipc-button--core-baseAlt ipc-button--theme-baseAlt ipc-button--on-textPrimary ipc-text-button navbar__flyout__text-button-after-mobile navbar__imdb-pro--toggle" href="https://pro.imdb.com/login/ap?u=/login/lwa&imdbPageAction=signUp&rf=cons_nb_hm&ref_=cons_nb_hm" role="button" tabindex="0"><div class="ipc-button__text"><svg class="ipc-logo navbar__imdbpro-menu-toggle__name" height="14" version="1.1" viewbox="0 0 52 14" width="52" xmlns="http://www.w3.org/2000/svg"><g fill="currentColor"><rect height="12.34" width="3.21" x="0" y="1"></rect><path d="M10,1 L9.3,6.76 L8.84,3.63 C8.7,2.62 8.58,1.75 8.45,1 L4.3,1 L4.3,13.34 L7.11,13.34 L7.11,5.19 L8.3,13.34 L10.3,13.34 L11.42,5 L11.42,13.33 L14.22,13.33 L14.22,1 L10,1 Z"></path><path d="M19.24,3.22 C19.3711159,3.29185219 19.4602235,3.42180078 19.48,3.57 C19.5340993,3.92393477 19.554191,4.28223587 19.54,4.64 L19.54,9.42 C19.578852,9.92887392 19.5246327,10.4405682 19.38,10.93 C19.27,11.12 18.99,11.21 18.53,11.21 L18.53,3.11 C18.7718735,3.09406934 19.0142863,3.13162626 19.24,3.22 Z M19.24,13.34 C19.8163127,13.3574057 20.3928505,13.3138302 20.96,13.21 C21.3245396,13.1481159 21.6680909,12.9969533 21.96,12.77 C22.2288287,12.5438006 22.4209712,12.2398661 22.51,11.9 C22.643288,11.1679419 22.6969338,10.4236056 22.67,9.68 L22.67,5.34 C22.6662002,4.55669241 22.6060449,3.77467335 22.49,3 C22.43037,2.59841431 22.260779,2.22116094 22,1.91 C21.6636187,1.56093667 21.2326608,1.317654 20.76,1.21 C19.7709421,1.02848785 18.7647002,0.958050915 17.76,1 L15.32,1 L15.32,13.34 L19.24,13.34 Z"></path><path d="M27.86,10.34 C27.8769902,10.7218086 27.8501483,11.1043064 27.78,11.48 C27.72,11.63 27.46,11.71 27.26,11.71 C27.0954951,11.7299271 26.9386363,11.6349863 26.88,11.48 C26.7930212,11.1542289 26.7592527,10.8165437 26.78,10.48 L26.78,7.18 C26.7626076,6.84408875 26.7929089,6.50740774 26.87,6.18 C26.9317534,6.03447231 27.0833938,5.94840616 27.24,5.97 C27.43,5.97 27.7,6.05 27.76,6.21 C27.8468064,6.53580251 27.8805721,6.87345964 27.86,7.21 L27.86,10.34 Z M23.7,1 L23.7,13.34 L26.58,13.34 L26.78,12.55 C27.0112432,12.8467609 27.3048209,13.0891332 27.64,13.26 C28.0022345,13.4198442 28.394069,13.5016184 28.79,13.5 C29.2588971,13.515288 29.7196211,13.3746089 30.1,13.1 C30.4399329,12.8800058 30.6913549,12.5471372 30.81,12.16 C30.9423503,11.6167622 31.0061799,11.0590937 31,10.5 L31,7 C31.0087531,6.51279482 30.9920637,6.02546488 30.95,5.54 C30.904474,5.28996521 30.801805,5.05382649 30.65,4.85 C30.4742549,4.59691259 30.2270668,4.40194735 29.94,4.29 C29.5869438,4.15031408 29.2096076,4.08232558 28.83,4.09 C28.4361722,4.08961884 28.0458787,4.16428368 27.68,4.31 C27.3513666,4.46911893 27.0587137,4.693713 26.82,4.97 L26.82,1 L23.7,1 Z"></path></g><g fill="#33C5F3"><path d="M32.13,1 L35.32,1 C35.9925574,0.978531332 36.6650118,1.04577677 37.32,1.2 C37.717112,1.29759578 38.0801182,1.50157071 38.37,1.79 C38.6060895,2.05302496 38.7682605,2.37391646 38.84,2.72 C38.935586,3.27463823 38.9757837,3.8374068 38.96,4.4 L38.96,5.46 C38.9916226,6.03689533 38.9100917,6.61440551 38.72,7.16 C38.5402933,7.53432344 38.2260614,7.82713037 37.84,7.98 C37.3049997,8.18709035 36.7332458,8.28238268 36.16,8.26 L35.31,8.26 L35.31,13.16 L32.13,13.16 L32.13,1 Z M35.29,3.08 L35.29,6.18 L35.53,6.18 C35.7515781,6.20532753 35.9725786,6.12797738 36.13,5.97 C36.2717869,5.69610033 36.3308522,5.38687568 36.3,5.08 L36.3,4.08 C36.3390022,3.79579475 36.2713114,3.5072181 36.11,3.27 C35.8671804,3.11299554 35.5771259,3.04578777 35.29,3.08 Z"></path><path d="M42,4.36 L41.89,5.52 C42.28,4.69 43.67,4.42 44.41,4.37 L43.6,7.3 C43.2290559,7.27725357 42.8582004,7.34593052 42.52,7.5 C42.3057075,7.61238438 42.1519927,7.81367763 42.1,8.05 C42.0178205,8.59259006 41.9843538,9.14144496 42,9.69 L42,13.16 L39.34,13.16 L39.34,4.36 L42,4.36 Z"></path><path d="M51.63,9.71 C51.6472876,10.3265292 51.6003682,10.9431837 51.49,11.55 C51.376862,11.9620426 51.1639158,12.3398504 50.87,12.65 C50.5352227,13.001529 50.1148049,13.2599826 49.65,13.4 C49.0994264,13.5686585 48.5257464,13.6496486 47.95,13.64 C47.3333389,13.6524659 46.7178074,13.5818311 46.12,13.43 C45.6996896,13.322764 45.3140099,13.1092627 45,12.81 C44.7275808,12.5275876 44.5254637,12.1850161 44.41,11.81 C44.2627681,11.2181509 44.1921903,10.6098373 44.2,10 L44.2,7.64 C44.1691064,6.9584837 44.2780071,6.27785447 44.52,5.64 C44.7547114,5.12751365 45.1616363,4.71351186 45.67,4.47 C46.3337168,4.13941646 47.0688388,3.97796445 47.81,4 C48.4454888,3.98667568 49.0783958,4.08482705 49.68,4.29 C50.1352004,4.42444561 50.5506052,4.66819552 50.89,5 C51.1535526,5.26601188 51.3550281,5.58700663 51.48,5.94 C51.6001358,6.42708696 51.6506379,6.92874119 51.63,7.43 L51.63,9.71 Z M48.39,6.73 C48.412199,6.42705368 48.3817488,6.12255154 48.3,5.83 C48.2091142,5.71223121 48.0687606,5.64325757 47.92,5.64325757 C47.7712394,5.64325757 47.6308858,5.71223121 47.54,5.83 C47.447616,6.12046452 47.4136298,6.42634058 47.44,6.73 L47.44,10.93 C47.4168299,11.2204468 47.4508034,11.5126191 47.54,11.79 C47.609766,11.9270995 47.7570827,12.0067302 47.91,11.99 C48.0639216,12.0108082 48.2159732,11.9406305 48.3,11.81 C48.3790864,11.5546009 48.4096133,11.2866434 48.39,11.02 L48.39,6.73 Z"></path></g></svg></div></a></div></div><div class="sc-bZkfAO hMAZwf"></div><div class="sc-dmRaPn hCFCYu imdb-header__watchlist-button"><a aria-disabled="false" class="ipc-button ipc-button--single-padding ipc-button--center-align-content ipc-button--default-height ipc-button--core-baseAlt ipc-button--theme-baseAlt ipc-button--on-textPrimary ipc-text-button" href="/list/watchlist?ref_=nv_usr_wl_all_0" role="button" tabindex="0"><svg class="ipc-icon ipc-icon--watchlist ipc-button__icon ipc-button__icon--pre" fill="currentColor" height="24" id="iconContext-watchlist" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M17 3c1.05 0 1.918.82 1.994 1.851L19 5v16l-7-3-7 3V5c0-1.05.82-1.918 1.851-1.994L7 3h10zm-4 4h-2v3H8v2h3v3h2v-3h3v-2h-3V7z" fill="currentColor"></path></svg><div class="ipc-button__text">Watchlist</div></a></div><div class="nav__userMenu navbar__user sc-hHLeRK fFlqwB"><a aria-disabled="false" class="ipc-button ipc-button--single-padding ipc-button--center-align-content ipc-button--default-height ipc-button--core-baseAlt ipc-button--theme-baseAlt ipc-button--on-textPrimary ipc-text-button imdb-header__signin-text" href="/registration/signin?ref=nv_generic_lgin" role="button" tabindex="0"><div class="ipc-button__text">Sign In</div></a></div><div class="sc-iBkjds sc-llJcti iosfhR cmgxCq navbar__flyout--breakpoint-m"><label aria-disabled="false" aria-label="Toggle language selector" class="ipc-button ipc-button--single-padding ipc-button--center-align-content ipc-button--default-height ipc-button--core-baseAlt ipc-button--theme-baseAlt ipc-button--on-textDisabled ipc-text-button navbar__flyout__text-button-after-mobile" for="nav-language-selector" role="button" tabindex="0"><div class="ipc-button__text">EN<svg class="ipc-icon ipc-icon--arrow-drop-down navbar__flyout__button-pointer" fill="currentColor" height="24" id="iconContext-arrow-drop-down" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h24v24H0V0z" fill="none"></path><path d="M8.71 11.71l2.59 2.59c.39.39 1.02.39 1.41 0l2.59-2.59c.63-.63.18-1.71-.71-1.71H9.41c-.89 0-1.33 1.08-.7 1.71z"></path></svg></div></label><input aria-hidden="true" class="ipc-menu__focused-state" hidden="" id="nav-language-selector" name="nav-language-selector" tabindex="-1" type="checkbox"/><div class="ipc-menu mdc-menu ipc-menu--not-initialized ipc-menu--on-baseAlt ipc-menu--anchored ipc-menu--with-checkbox ipc-menu--expand-from-top-right navbar__flyout--menu" data-menu-id="nav-language-selector" role="presentation"><div class="ipc-menu__items mdc-menu__items" role="presentation"><span id="nav-language-selector-contents"><ul aria-orientation="vertical" class="ipc-list nav-fully-supported-languages ipc-list--baseAlt" role="menu"><li aria-disabled="false" class="ipc-list__item sc-iIPllB dpOEIG disabled" role="menuitem" tabindex="0"><span class="ipc-list-item__text" role="presentation">Fully supported</span></li><li class="ipc-list-divider" role="separator"></li><li aria-disabled="false" aria-label="English (United States)" class="ipc-list__item sc-bBrHrO dlnzbB language-option disabled selected" id="language-option-en-US" role="menuitem" tabindex="0"><span class="language-menu-item-span ipc-list-item__icon ipc-list-item__icon--pre" role="presentation"><svg class="ipc-icon ipc-icon--radio-button-checked language-menu-item-icon selected-language-icon" fill="currentColor" height="24" id="iconContext-radio-button-checked" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h24v24H0V0z" fill="none"></path><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z"></path><circle cx="12" cy="12" r="5"></circle></svg></span><span class="ipc-list-item__text" role="presentation">English (United States)</span></li><li class="ipc-list-divider" role="separator"></li></ul><ul aria-orientation="vertical" class="ipc-list nav-partially-supported-languages ipc-list--baseAlt" role="menu"><a aria-disabled="false" aria-label="Learn more about partially supported languages." class="ipc-list__item sc-iIPllB dpOEIG" href="https://help.imdb.com/article/issues/G6TCMBKAAR5G95EN?ref_=loc_nav_sel_hlp" role="menuitem" tabindex="0" target="_blank"><span class="ipc-list-item__text" role="presentation">Partially supported</span><span class="ipc-list-item__icon ipc-list-item__icon--post" role="presentation"><svg class="ipc-icon ipc-icon--help-outline" fill="currentColor" height="24" id="iconContext-help-outline" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h24v24H0V0z" fill="none"></path><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm-1-4h2v2h-2zm1.61-9.96c-2.06-.3-3.88.97-4.43 2.79-.18.58.26 1.17.87 1.17h.2c.41 0 .74-.29.88-.67.32-.89 1.27-1.5 2.3-1.28.95.2 1.65 1.13 1.57 2.1-.1 1.34-1.62 1.63-2.45 2.88 0 .01-.01.01-.01.02-.01.02-.02.03-.03.05-.09.15-.18.32-.25.5-.01.03-.03.05-.04.08-.01.02-.01.04-.02.07-.12.34-.2.75-.2 1.25h2c0-.42.11-.77.28-1.07.02-.03.03-.06.05-.09.08-.14.18-.27.28-.39.01-.01.02-.03.03-.04.1-.12.21-.23.33-.34.96-.91 2.26-1.65 1.99-3.56-.24-1.74-1.61-3.21-3.35-3.47z"></path></svg></span></a><li class="ipc-list-divider" role="separator"></li><li aria-disabled="false" aria-label="Français (Canada)" class="ipc-list__item sc-bBrHrO dlnzbB language-option disabled" id="language-option-fr-CA" role="menuitem" tabindex="0"><span class="language-menu-item-span ipc-list-item__icon ipc-list-item__icon--pre" role="presentation"><svg class="ipc-icon ipc-icon--radio-button-unchecked language-menu-item-icon" fill="currentColor" height="24" id="iconContext-radio-button-unchecked" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h24v24H0V0z" fill="none"></path><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z"></path></svg></span><span class="ipc-list-item__text" role="presentation">Français (Canada)</span></li><li aria-disabled="false" aria-label="Français (France)" class="ipc-list__item sc-bBrHrO dlnzbB language-option disabled" id="language-option-fr-FR" role="menuitem" tabindex="0"><span class="language-menu-item-span ipc-list-item__icon ipc-list-item__icon--pre" role="presentation"><svg class="ipc-icon ipc-icon--radio-button-unchecked language-menu-item-icon" fill="currentColor" height="24" id="iconContext-radio-button-unchecked" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h24v24H0V0z" fill="none"></path><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z"></path></svg></span><span class="ipc-list-item__text" role="presentation">Français (France)</span></li><li aria-disabled="false" aria-label="Deutsch (Deutschland)" class="ipc-list__item sc-bBrHrO dlnzbB language-option disabled" id="language-option-de-DE" role="menuitem" tabindex="0"><span class="language-menu-item-span ipc-list-item__icon ipc-list-item__icon--pre" role="presentation"><svg class="ipc-icon ipc-icon--radio-button-unchecked language-menu-item-icon" fill="currentColor" height="24" id="iconContext-radio-button-unchecked" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h24v24H0V0z" fill="none"></path><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z"></path></svg></span><span class="ipc-list-item__text" role="presentation">Deutsch (Deutschland)</span></li><li aria-disabled="false" aria-label="हिंदी (भारत)" class="ipc-list__item sc-bBrHrO dlnzbB language-option disabled" id="language-option-hi-IN" role="menuitem" tabindex="0"><span class="language-menu-item-span ipc-list-item__icon ipc-list-item__icon--pre" role="presentation"><svg class="ipc-icon ipc-icon--radio-button-unchecked language-menu-item-icon" fill="currentColor" height="24" id="iconContext-radio-button-unchecked" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h24v24H0V0z" fill="none"></path><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z"></path></svg></span><span class="ipc-list-item__text" role="presentation">हिंदी (भारत)</span></li><li aria-disabled="false" aria-label="Italiano (Italia)" class="ipc-list__item sc-bBrHrO dlnzbB language-option disabled" id="language-option-it-IT" role="menuitem" tabindex="0"><span class="language-menu-item-span ipc-list-item__icon ipc-list-item__icon--pre" role="presentation"><svg class="ipc-icon ipc-icon--radio-button-unchecked language-menu-item-icon" fill="currentColor" height="24" id="iconContext-radio-button-unchecked" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h24v24H0V0z" fill="none"></path><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z"></path></svg></span><span class="ipc-list-item__text" role="presentation">Italiano (Italia)</span></li><li aria-disabled="false" aria-label="Português (Brasil)" class="ipc-list__item sc-bBrHrO dlnzbB language-option disabled" id="language-option-pt-BR" role="menuitem" tabindex="0"><span class="language-menu-item-span ipc-list-item__icon ipc-list-item__icon--pre" role="presentation"><svg class="ipc-icon ipc-icon--radio-button-unchecked language-menu-item-icon" fill="currentColor" height="24" id="iconContext-radio-button-unchecked" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h24v24H0V0z" fill="none"></path><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z"></path></svg></span><span class="ipc-list-item__text" role="presentation">Português (Brasil)</span></li><li aria-disabled="false" aria-label="Español (España)" class="ipc-list__item sc-bBrHrO dlnzbB language-option disabled" id="language-option-es-ES" role="menuitem" tabindex="0"><span class="language-menu-item-span ipc-list-item__icon ipc-list-item__icon--pre" role="presentation"><svg class="ipc-icon ipc-icon--radio-button-unchecked language-menu-item-icon" fill="currentColor" height="24" id="iconContext-radio-button-unchecked" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h24v24H0V0z" fill="none"></path><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z"></path></svg></span><span class="ipc-list-item__text" role="presentation">Español (España)</span></li><li aria-disabled="false" aria-label="Español (México)" class="ipc-list__item sc-bBrHrO dlnzbB language-option disabled" id="language-option-es-MX" role="menuitem" tabindex="0"><span class="language-menu-item-span ipc-list-item__icon ipc-list-item__icon--pre" role="presentation"><svg class="ipc-icon ipc-icon--radio-button-unchecked language-menu-item-icon" fill="currentColor" height="24" id="iconContext-radio-button-unchecked" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h24v24H0V0z" fill="none"></path><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z"></path></svg></span><span class="ipc-list-item__text" role="presentation">Español (México)</span></li></ul></span></div></div></div></div></nav><script>if(typeof uet === 'function'){ uet('be', 'imdbHeader', {wb: 1}); }</script><script>if(typeof uex === 'function'){ uex('ld', 'imdbHeader', {wb: 1}); }</script><svg style="width:0;height:0;overflow:hidden;display:block" version="1.1" xmlns="http://www.w3.org/2000/svg"><defs><lineargradient id="ipc-svg-gradient-tv-logo-t" x1="31.973%" x2="153.413%" y1="53.409%" y2="-16.853%"><stop offset="21.89%" stop-color="#D01F49"></stop><stop offset="83.44%" stop-color="#E8138B"></stop></lineargradient><lineargradient id="ipc-svg-gradient-tv-logo-v" x1="-38.521%" x2="104.155%" y1="84.997%" y2="14.735%"><stop offset="21.89%" stop-color="#D01F49"></stop><stop offset="83.44%" stop-color="#E8138B"></stop></lineargradient></defs></svg></section> <script>
window.__NAVBAR_PROPS__ = {
locale: 'en-US',
isLoggedIn: false,
serviceName: 'Legacy',
showLanguageSelector: true
};
</script>
<script>
if (typeof uet == 'function') {
uet("ne");
}
</script>
<div id="wrapper">
<div class="redesign" id="root">
<div class="navbarSprite" id="nb20">
<div id="supertab">
<!-- no content received for slot: top_ad -->
<script>
var event = {
type: '',
slotName: 'top_ad',
timestamp: Date.now()
};
var mediaEvent = event;
mediaEvent.type = 'no-autoplay-video-ad-detected';
if (window && window.mediaOrchestrator) {
window.mediaOrchestrator.publish('mediaPlaybackEvent', mediaEvent);
window.mediaOrchestrator.publish('noAdToLoad', event);
}
</script>
</div>
<!-- no content received for slot: navstrip -->
<!-- no content received for slot: injected_navstrip -->
</div>
<div class="pagecontent" id="pagecontent">
<!-- no content received for slot: injected_billboard -->
<div id="content-2-wide">
<div id="main">
<div class="article listo">
<div class="overflow-menu">
<div class="circle">
<div class="vertical-ellipsis">
<svg fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9
2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z"></path>
</svg>
</div>
</div>
<div class="pop-up-dialog">
<ul class="pop-up-menu-list-items">
<li><a class="pop-up-menu-list-item-link" href="/list/ls055592025/copy">
Copy from this list
</a></li>
<li><a class="pop-up-menu-list-item-link" href="/list/ls055592025/export">
Export
</a></li>
<li><a class="pop-up-menu-list-item-link" href="/contact?deepLink=list_report&disableLoginPopup=true&list=ls055592025">
Report this list
</a></li>
</ul>
</div>
</div>
<h1 class="header list-name">Top 100 Greatest Movies of All Time (The Ultimate List)</h1>
<span class="list-overview text-small" id="list-overview-summary">
by <a href="/user/ur35202332/">ChrisWalczyk55</a>
<span class="ghost">|</span> <span class="text-muted" id="list-overview-created">created - 21 Dec 2012</span>
<span class="ghost">|</span> <span class="text-muted" id="list-overview-lastupdated">updated - 28 Mar 2017</span>
<span class="ghost">|</span> <svg class="privacy-public item-privacy-lock" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path class="path" d="M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm-6 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm3.1-9H8.9V6c0-1.71 1.39-3.1 3.1-3.1 1.71 0 3.1 1.39 3.1 3.1v2z"></path>
</svg>
<span class="privacy-overview text-muted">
Public
</span>
</span>
<div class="list-description"><p>The movies on this list are ranked according to their success (awards & nominations), their popularity, and their cinematic greatness from a directing/writing perspective. To me, accuracy when making a Top 10/Top 100 all time list is extremely important. My lists are not based on my own personal favorites; they are based on the true greatness and/or success of the person, place or thing being ranked. In other words, a film's commercial success (Oscars & BAFTA Awards), and greatness in direction, screenwriting and production, is how I ranked the films on this list. If you guys would like to view my other Top 10/Top 100 lists, feel free to check out my YouTube page and/or my IMDb page at *ChrisWalczyk55*.<br/><br/>Thanks guys and don't forget to LIKE & comment! :)</p></div>
<div class="faceter nojs-hidden">
<div class="faceter-header">
<span class="expand">
<span class="global-sprite double-arrow down active"></span> <strong>Refine</strong>
</span>
<span class="facets-active">
<span class="empty text-muted">See titles to watch instantly, titles you haven't rated, etc</span>
</span>
</div>
<div class="faceter-content">
<div class="faceter-categories">
<ul>
<li class="faceter-category" data-for="watch_options">
<strong>Instant Watch Options</strong>
</li>
<li class="faceter-category" data-for="genres">
<strong>Genres</strong>
</li>
<li class="faceter-category" data-for="title_type">
<strong>Movies or TV</strong>
</li>
<li class="faceter-category" data-for="imdb_rating">
<strong>IMDb Rating</strong>
</li>
<li class="faceter-category" data-for="in_theaters">
<strong>In Theaters</strong>
</li>
<li class="faceter-category" data-for="release_date">
<strong>Release Year</strong>
</li>
<li class="faceter-category" data-for="keywords">
<strong>Keywords</strong>
</li>
</ul>
</div><div class="faceter-facets">
<div class="faceter-fieldset watch_options">
<fieldset data-join="and" name="watch_option">
<label class="unbold">
<input data-count="8" name="has_video_prime_instant_video" ref-marker="ttls_ref_inst_piv" type="checkbox"/>
<span class="faceter-facet-text">Prime Video</span>
<span class="text-muted text-small">(8)</span>
</label>
<br/>
<label class="unbold">
<input data-count="26" name="has_video_amazon_instant_video" ref-marker="ttls_ref_inst_aiv" type="checkbox"/>
<span class="faceter-facet-text">Prime Video (Rent or Buy)</span>
<span class="text-muted text-small">(26)</span>
</label>
<br/>
</fieldset>
</div>
<div class="faceter-fieldset genres">
<fieldset data-join="and" name="genres">
<span class="col-2">
<label class="unbold">
<input data-count="77" name="Drama" ref-marker="ttls_ref_gnr" type="checkbox"/>
<span class="faceter-facet-text">Drama</span>
<span class="text-muted text-small">(77)</span>
</label>
</span>
<span class="col-2">
<label class="unbold">
<input data-count="27" name="Romance" ref-marker="ttls_ref_gnr" type="checkbox"/>
<span class="faceter-facet-text">Romance</span>
<span class="text-muted text-small">(27)</span>
</label>
</span>
<span class="col-2">
<label class="unbold">
<input data-count="20" name="Adventure" ref-marker="ttls_ref_gnr" type="checkbox"/>
<span class="faceter-facet-text">Adventure</span>
<span class="text-muted text-small">(20)</span>
</label>
</span>
<span class="col-2">
<label class="unbold">
<input data-count="18" name="Crime" ref-marker="ttls_ref_gnr" type="checkbox"/>
<span class="faceter-facet-text">Crime</span>
<span class="text-muted text-small">(18)</span>
</label>
</span>
<span class="col-2">
<label class="unbold">
<input data-count="18" name="War" ref-marker="ttls_ref_gnr" type="checkbox"/>
<span class="faceter-facet-text">War</span>
<span class="text-muted text-small">(18)</span>
</label>
</span>
<span class="col-2">
<label class="unbold">
<input data-count="14" name="Comedy" ref-marker="ttls_ref_gnr" type="checkbox"/>
<span class="faceter-facet-text">Comedy</span>
<span class="text-muted text-small">(14)</span>
</label>
</span>
<span class="col-2">
<label class="unbold">
<input data-count="14" name="Thriller" ref-marker="ttls_ref_gnr" type="checkbox"/>
<span class="faceter-facet-text">Thriller</span>
<span class="text-muted text-small">(14)</span>
</label>
</span>
<span class="col-2">
<label class="unbold">
<input data-count="13" name="Biography" ref-marker="ttls_ref_gnr" type="checkbox"/>
<span class="faceter-facet-text">Biography</span>
<span class="text-muted text-small">(13)</span>
</label>
</span>
<span class="col-2">
<label class="unbold">
<input data-count="11" name="Mystery" ref-marker="ttls_ref_gnr" type="checkbox"/>
<span class="faceter-facet-text">Mystery</span>
<span class="text-muted text-small">(11)</span>
</label>
</span>
<span class="col-2">
<label class="unbold">
<input data-count="10" name="Western" ref-marker="ttls_ref_gnr" type="checkbox"/>
<span class="faceter-facet-text">Western</span>
<span class="text-muted text-small">(10)</span>
</label>
</span>
<span class="col-2">
<label class="unbold">
<input data-count="8" name="Action" ref-marker="ttls_ref_gnr" type="checkbox"/>
<span class="faceter-facet-text">Action</span>
<span class="text-muted text-small">(8)</span>
</label>
</span>
<span class="col-2">
<label class="unbold">
<input data-count="7" name="Musical" ref-marker="ttls_ref_gnr" type="checkbox"/>
<span class="faceter-facet-text">Musical</span>
<span class="text-muted text-small">(7)</span>
</label>
</span>
<span class="col-2">
<label class="unbold">
<input data-count="6" name="Family" ref-marker="ttls_ref_gnr" type="checkbox"/>
<span class="faceter-facet-text">Family</span>
<span class="text-muted text-small">(6)</span>
</label>
</span>
<span class="col-2">
<label class="unbold">
<input data-count="6" name="Sci-Fi" ref-marker="ttls_ref_gnr" type="checkbox"/>
<span class="faceter-facet-text">Sci-Fi</span>
<span class="text-muted text-small">(6)</span>
</label>
</span>
<span class="col-2">
<label class="unbold">
<input data-count="5" name="Fantasy" ref-marker="ttls_ref_gnr" type="checkbox"/>
<span class="faceter-facet-text">Fantasy</span>
<span class="text-muted text-small">(5)</span>
</label>
</span>
<span class="col-2">
<label class="unbold">
<input data-count="5" name="Music" ref-marker="ttls_ref_gnr" type="checkbox"/>
<span class="faceter-facet-text">Music</span>
<span class="text-muted text-small">(5)</span>
</label>
</span>
<span class="col-2">
<label class="unbold">
<input data-count="4" name="Film-Noir" ref-marker="ttls_ref_gnr" type="checkbox"/>
<span class="faceter-facet-text">Film-Noir</span>
<span class="text-muted text-small">(4)</span>
</label>
</span>
<span class="col-2">
<label class="unbold">
<input data-count="3" name="History" ref-marker="ttls_ref_gnr" type="checkbox"/>
<span class="faceter-facet-text">History</span>
<span class="text-muted text-small">(3)</span>
</label>
</span>
<span class="col-2">
<label class="unbold">
<input data-count="2" name="Horror" ref-marker="ttls_ref_gnr" type="checkbox"/>
<span class="faceter-facet-text">Horror</span>
<span class="text-muted text-small">(2)</span>
</label>
</span>
<span class="col-2">
<label class="unbold">
<input data-count="2" name="Sport" ref-marker="ttls_ref_gnr" type="checkbox"/>
<span class="faceter-facet-text">Sport</span>
<span class="text-muted text-small">(2)</span>
</label>
</span>
</fieldset>
</div>
<div class="faceter-fieldset title_type">
<fieldset data-join="or" name="title_type">
<label class="unbold">
<input data-count="100" name="movie" ref-marker="ttls_ref_typ" type="checkbox"/>
<span class="faceter-facet-text">Feature Film</span>
<span class="text-muted text-small">(100)</span>
</label>
<br/>
</fieldset>
</div>
<div class="faceter-fieldset imdb_rating">
<fieldset data-join="between" name="user_rating">
<legend class="text-muted unbold" data-tag="IMDb Rating">IMDb user rating (average)</legend>
<span></span>
<select name="min" ref-marker="ttls_ref_rt_usr" value="0.0">
<option value="1">1</option>
<option value="1.1">1.1</option>
<option value="1.2">1.2</option>
<option value="1.3">1.3</option>
<option value="1.4">1.4</option>
<option value="1.5">1.5</option>
<option value="1.6">1.6</option>
<option value="1.7">1.7</option>
<option value="1.8">1.8</option>
<option value="1.9">1.9</option>
<option value="2.0">2.0</option>
<option value="2.1">2.1</option>
<option value="2.2">2.2</option>
<option value="2.3">2.3</option>
<option value="2.4">2.4</option>
<option value="2.5">2.5</option>
<option value="2.6">2.6</option>
<option value="2.7">2.7</option>
<option value="2.8">2.8</option>
<option value="2.9">2.9</option>
<option value="3.0">3.0</option>
<option value="3.1">3.1</option>
<option value="3.2">3.2</option>
<option value="3.3">3.3</option>
<option value="3.4">3.4</option>
<option value="3.5">3.5</option>
<option value="3.6">3.6</option>
<option value="3.7">3.7</option>
<option value="3.8">3.8</option>
<option value="3.9">3.9</option>
<option value="4.0">4.0</option>
<option value="4.1">4.1</option>
<option value="4.2">4.2</option>
<option value="4.3">4.3</option>
<option value="4.4">4.4</option>
<option value="4.5">4.5</option>
<option value="4.6">4.6</option>
<option value="4.7">4.7</option>
<option value="4.8">4.8</option>
<option value="4.9">4.9</option>
<option value="5.0">5.0</option>
<option value="5.1">5.1</option>
<option value="5.2">5.2</option>
<option value="5.3">5.3</option>
<option value="5.4">5.4</option>
<option value="5.5">5.5</option>
<option value="5.6">5.6</option>
<option value="5.7">5.7</option>
<option value="5.8">5.8</option>
<option value="5.9">5.9</option>
<option value="6.0">6.0</option>
<option value="6.1">6.1</option>
<option value="6.2">6.2</option>
<option value="6.3">6.3</option>
<option value="6.4">6.4</option>
<option value="6.5">6.5</option>
<option value="6.6">6.6</option>
<option value="6.7">6.7</option>
<option value="6.8">6.8</option>
<option value="6.9">6.9</option>
<option value="7.0">7.0</option>
<option value="7.1">7.1</option>
<option value="7.2">7.2</option>
<option value="7.3">7.3</option>
<option value="7.4">7.4</option>
<option value="7.5">7.5</option>
<option value="7.6">7.6</option>
<option value="7.7">7.7</option>
<option value="7.8">7.8</option>
<option value="7.9">7.9</option>
<option value="8.0">8.0</option>
<option value="8.1">8.1</option>
<option value="8.2">8.2</option>
<option value="8.3">8.3</option>
<option value="8.4">8.4</option>
<option value="8.5">8.5</option>
<option value="8.6">8.6</option>
<option value="8.7">8.7</option>
<option value="8.8">8.8</option>
<option value="8.9">8.9</option>
<option value="9.0">9.0</option>
<option value="9.1">9.1</option>
<option value="9.2">9.2</option>
<option value="9.3">9.3</option>
<option value="9.4">9.4</option>
<option value="9.5">9.5</option>
<option value="9.6">9.6</option>
<option value="9.7">9.7</option>
<option value="9.8">9.8</option>
<option value="9.9">9.9</option>
<option value="10">10</option>
</select>
<span>to</span>
<select name="max" ref-marker="ttls_ref_rt_usr" value="0.0">
<option value="10">10</option>
<option value="9.9">9.9</option>
<option value="9.8">9.8</option>
<option value="9.7">9.7</option>
<option value="9.6">9.6</option>
<option value="9.5">9.5</option>
<option value="9.4">9.4</option>
<option value="9.3">9.3</option>
<option value="9.2">9.2</option>
<option value="9.1">9.1</option>
<option value="9.0">9.0</option>
<option value="8.9">8.9</option>
<option value="8.8">8.8</option>
<option value="8.7">8.7</option>
<option value="8.6">8.6</option>
<option value="8.5">8.5</option>
<option value="8.4">8.4</option>
<option value="8.3">8.3</option>
<option value="8.2">8.2</option>
<option value="8.1">8.1</option>
<option value="8.0">8.0</option>
<option value="7.9">7.9</option>
<option value="7.8">7.8</option>
<option value="7.7">7.7</option>
<option value="7.6">7.6</option>
<option value="7.5">7.5</option>
<option value="7.4">7.4</option>
<option value="7.3">7.3</option>
<option value="7.2">7.2</option>
<option value="7.1">7.1</option>
<option value="7.0">7.0</option>
<option value="6.9">6.9</option>
<option value="6.8">6.8</option>
<option value="6.7">6.7</option>
<option value="6.6">6.6</option>
<option value="6.5">6.5</option>
<option value="6.4">6.4</option>
<option value="6.3">6.3</option>
<option value="6.2">6.2</option>
<option value="6.1">6.1</option>
<option value="6.0">6.0</option>
<option value="5.9">5.9</option>
<option value="5.8">5.8</option>
<option value="5.7">5.7</option>
<option value="5.6">5.6</option>
<option value="5.5">5.5</option>
<option value="5.4">5.4</option>
<option value="5.3">5.3</option>
<option value="5.2">5.2</option>
<option value="5.1">5.1</option>
<option value="5.0">5.0</option>
<option value="4.9">4.9</option>
<option value="4.8">4.8</option>
<option value="4.7">4.7</option>
<option value="4.6">4.6</option>
<option value="4.5">4.5</option>
<option value="4.4">4.4</option>
<option value="4.3">4.3</option>
<option value="4.2">4.2</option>
<option value="4.1">4.1</option>
<option value="4.0">4.0</option>
<option value="3.9">3.9</option>
<option value="3.8">3.8</option>
<option value="3.7">3.7</option>
<option value="3.6">3.6</option>
<option value="3.5">3.5</option>
<option value="3.4">3.4</option>
<option value="3.3">3.3</option>
<option value="3.2">3.2</option>
<option value="3.1">3.1</option>
<option value="3.0">3.0</option>
<option value="2.9">2.9</option>
<option value="2.8">2.8</option>
<option value="2.7">2.7</option>
<option value="2.6">2.6</option>
<option value="2.5">2.5</option>
<option value="2.4">2.4</option>
<option value="2.3">2.3</option>
<option value="2.2">2.2</option>
<option value="2.1">2.1</option>
<option value="2.0">2.0</option>
<option value="1.9">1.9</option>
<option value="1.8">1.8</option>
<option value="1.7">1.7</option>
<option value="1.6">1.6</option>
<option value="1.5">1.5</option>
<option value="1.4">1.4</option>
<option value="1.3">1.3</option>
<option value="1.2">1.2</option>
<option value="1.1">1.1</option>
<option value="1">1</option>
</select>
</fieldset>
<fieldset data-join="between" name="num_votes">
<legend class="text-muted unbold" data-tag="Votes">Number of votes</legend>
<span></span>
<input data-validation="^[0-9]\d*$" name="min" ref-marker="ttls_ref_rt_vt" size="10" type="text" value=""/>
<span>to</span>
<input data-validation="^[0-9]\d*$" name="max" ref-marker="ttls_ref_rt_vt" size="10" type="text" value=""/>
<a class="btn small secondary faceter-search-btn" data-group="num_votes" href="#" title="Search"> »
</a> </fieldset>
</div>
<div class="faceter-fieldset in_theaters">
<fieldset data-join="and" name="now_playing">
<label class="unbold">
<input data-count="" name="in_theaters" ref-marker="ttls_ref_sh_fav" type="radio" value="favorite">
<span class="faceter-facet-text">In Favorite Theaters</span>
</input></label>
<br/>
<label class="unbold">
<input data-count="" name="in_theaters" ref-marker="ttls_ref_sh_you" type="radio" value="restrict">
<span class="faceter-facet-text">In Theaters Near You</span>
</input></label>
<br/>
<hr/>
</fieldset>
<a class="faceter-reset" data-fieldset="in_theaters" href="#">Reset</a>
</div>
<div class="faceter-fieldset release_date">
<fieldset data-join="between" name="release_date">
<legend class="text-muted unbold" data-tag="Released">Release year or range</legend>
<span></span>
<input data-validation="^[0-9]\d*$" name="min" ref-marker="ttls_ref_yr" size="10" type="text" value=""/>
<span>to</span>
<input data-validation="^[0-9]\d*$" name="max" ref-marker="ttls_ref_yr" size="10" type="text" value=""/>
<a class="btn small secondary faceter-search-btn" data-group="release_date" href="#" title="Search"> »
</a> </fieldset>
</div>
<div class="faceter-fieldset keywords">
<fieldset data-join="and" name="keywords">
<label class="unbold">
<input data-count="80" name="national-film-registry" ref-marker="ttls_ref_key" type="checkbox">
<span class="faceter-facet-text">National Film Registry</span>
<span class="text-muted text-small">(80)</span>
</input></label>
<br/>
<label class="unbold">
<input data-count="70" name="blockbuster" ref-marker="ttls_ref_key" type="checkbox">
<span class="faceter-facet-text">Blockbuster</span>
<span class="text-muted text-small">(70)</span>
</input></label>
<br/>
<label class="unbold">
<input data-count="62" name="afi" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Afi</span>
<span class="text-muted text-small">(62)</span>
</label>
<br/>
<label class="unbold">
<input data-count="55" name="cult-film" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Cult Film</span>
<span class="text-muted text-small">(55)</span>
</label>
<br/>
<label class="unbold">
<input data-count="53" name="murder" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Murder</span>
<span class="text-muted text-small">(53)</span>
</label>
<br/>
<label class="unbold">
<input data-count="52" name="death" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Death</span>
<span class="text-muted text-small">(52)</span>
</label>
<br/>
<label class="unbold">
<input data-count="47" name="famous-score" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Famous Score</span>
<span class="text-muted text-small">(47)</span>
</label>
<br/>
<label class="unbold">
<input data-count="46" name="violence" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Violence</span>
<span class="text-muted text-small">(46)</span>
</label>
<br/>
<label class="unbold">
<input data-count="43" name="blood" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Blood</span>
<span class="text-muted text-small">(43)</span>
</label>
<br/>
<label class="unbold">
<input data-count="42" name="based-on-novel" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Based On Novel</span>
<span class="text-muted text-small">(42)</span>
</label>
<br/>
<label class="unbold">
<input data-count="41" name="husband-wife-relationship" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Husband Wife Relationship</span>
<span class="text-muted text-small">(41)</span>
</label>
<br/>
<label class="unbold">
<input data-count="40" name="cigarette-smoking" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Cigarette Smoking</span>
<span class="text-muted text-small">(40)</span>
</label>
<br/>
<label class="unbold">
<input data-count="40" name="friendship" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Friendship</span>
<span class="text-muted text-small">(40)</span>
</label>
<br/>
<label class="unbold">
<input data-count="39" name="title-spoken-by-character" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Title Spoken By Character</span>
<span class="text-muted text-small">(39)</span>
</label>
<br/>
<label class="unbold">
<input data-count="37" name="cult-classic" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Cult Classic</span>
<span class="text-muted text-small">(37)</span>
</label>
<br/>
<label class="unbold">
<input data-count="37" name="drunkenness" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Drunkenness</span>
<span class="text-muted text-small">(37)</span>
</label>
<br/>
<label class="unbold">
<input data-count="35" name="male-protagonist" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Male Protagonist</span>
<span class="text-muted text-small">(35)</span>
</label>
<br/>
<label class="unbold">
<input data-count="33" name="kiss" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Kiss</span>
<span class="text-muted text-small">(33)</span>
</label>
<br/>
<label class="unbold">
<input data-count="33" name="singing" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Singing</span>
<span class="text-muted text-small">(33)</span>
</label>
<br/>
<label class="unbold">
<input data-count="32" name="marriage" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Marriage</span>
<span class="text-muted text-small">(32)</span>
</label>
<br/>
<label class="unbold">
<input data-count="31" name="father-daughter-relationship" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Father Daughter Relationship</span>
<span class="text-muted text-small">(31)</span>
</label>
<br/>
<label class="unbold">
<input data-count="31" name="mother-son-relationship" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Mother Son Relationship</span>
<span class="text-muted text-small">(31)</span>
</label>
<br/>
<label class="unbold">
<input data-count="30" name="betrayal" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Betrayal</span>
<span class="text-muted text-small">(30)</span>
</label>
<br/>
<label class="unbold">
<input data-count="30" name="famous-line" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Famous Line</span>
<span class="text-muted text-small">(30)</span>
</label>
<br/>
<label class="unbold">
<input data-count="30" name="slapped-in-the-face" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Slapped In The Face</span>
<span class="text-muted text-small">(30)</span>
</label>
<br/>
<label class="unbold">
<input data-count="29" name="bare-chested-male" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Bare Chested Male</span>
<span class="text-muted text-small">(29)</span>
</label>
<br/>
<label class="unbold">
<input data-count="29" name="cigarette" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Cigarette</span>
<span class="text-muted text-small">(29)</span>
</label>
<br/>
<label class="unbold">
<input data-count="29" name="father-son-relationship" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Father Son Relationship</span>
<span class="text-muted text-small">(29)</span>
</label>
<br/>
<label class="unbold">
<input data-count="29" name="police" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Police</span>
<span class="text-muted text-small">(29)</span>
</label>
<br/>
<label class="unbold">
<input data-count="29" name="revenge" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Revenge</span>
<span class="text-muted text-small">(29)</span>
</label>
<br/>
<label class="unbold">
<input data-count="29" name="timeframe-20th-century" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Timeframe 20th Century</span>
<span class="text-muted text-small">(29)</span>
</label>
<br/>
<label class="unbold">
<input data-count="28" name="car" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Car</span>
<span class="text-muted text-small">(28)</span>
</label>
<br/>
<label class="unbold">
<input data-count="28" name="dancing" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Dancing</span>
<span class="text-muted text-small">(28)</span>
</label>
<br/>
<label class="unbold">
<input data-count="28" name="rain" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Rain</span>
<span class="text-muted text-small">(28)</span>
</label>
<br/>
<label class="unbold">
<input data-count="28" name="singer" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Singer</span>
<span class="text-muted text-small">(28)</span>
</label>
<br/>
<label class="unbold">
<input data-count="28" name="telephone-call" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Telephone Call</span>
<span class="text-muted text-small">(28)</span>
</label>
<br/>
<label class="unbold">
<input data-count="27" name="bar" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Bar</span>
<span class="text-muted text-small">(27)</span>
</label>
<br/>
<label class="unbold">
<input data-count="27" name="escape" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Escape</span>
<span class="text-muted text-small">(27)</span>
</label>
<br/>
<label class="unbold">
<input data-count="27" name="family-relationships" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Family Relationships</span>
<span class="text-muted text-small">(27)</span>
</label>
<br/>
<label class="unbold">
<input data-count="27" name="gun" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Gun</span>
<span class="text-muted text-small">(27)</span>
</label>
<br/>
<label class="unbold">
<input data-count="27" name="love" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Love</span>
<span class="text-muted text-small">(27)</span>
</label>
<br/>
<label class="unbold">
<input data-count="27" name="soldier" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Soldier</span>
<span class="text-muted text-small">(27)</span>
</label>
<br/>
<label class="unbold">
<input data-count="26" name="crying" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Crying</span>
<span class="text-muted text-small">(26)</span>
</label>
<br/>
<label class="unbold">
<input data-count="26" name="fear" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Fear</span>
<span class="text-muted text-small">(26)</span>
</label>
<br/>
<label class="unbold">
<input data-count="26" name="flashback" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Flashback</span>
<span class="text-muted text-small">(26)</span>
</label>
<br/>
<label class="unbold">
<input data-count="26" name="pistol" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Pistol</span>
<span class="text-muted text-small">(26)</span>
</label>
<br/>
<label class="unbold">
<input data-count="26" name="police-officer" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Police Officer</span>
<span class="text-muted text-small">(26)</span>
</label>
<br/>
<label class="unbold">
<input data-count="25" name="deception" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Deception</span>
<span class="text-muted text-small">(25)</span>
</label>
<br/>
<label class="unbold">
<input data-count="25" name="man-wears-eyeglasses" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Man Wears Eyeglasses</span>
<span class="text-muted text-small">(25)</span>
</label>
<br/>
<label class="unbold">
<input data-count="24" name="beating" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Beating</span>
<span class="text-muted text-small">(24)</span>
</label>
<br/>
<label class="unbold">
<input data-count="24" name="brother-sister-relationship" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Brother Sister Relationship</span>
<span class="text-muted text-small">(24)</span>
</label>
<br/>
<label class="unbold">
<input data-count="24" name="cigar-smoking" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Cigar Smoking</span>
<span class="text-muted text-small">(24)</span>
</label>
<br/>
<label class="unbold">
<input data-count="24" name="epic" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Epic</span>
<span class="text-muted text-small">(24)</span>
</label>
<br/>
<label class="unbold">
<input data-count="24" name="mother-daughter-relationship" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Mother Daughter Relationship</span>
<span class="text-muted text-small">(24)</span>
</label>
<br/>
<label class="unbold">
<input data-count="24" name="new-york-city" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">New York City</span>
<span class="text-muted text-small">(24)</span>
</label>
<br/>
<label class="unbold">
<input data-count="24" name="shot-to-death" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Shot To Death</span>
<span class="text-muted text-small">(24)</span>
</label>
<br/>
<label class="unbold">
<input data-count="24" name="surprise-ending" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Surprise Ending</span>
<span class="text-muted text-small">(24)</span>
</label>
<br/>
<label class="unbold">
<input data-count="23" name="fight" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Fight</span>
<span class="text-muted text-small">(23)</span>
</label>
<br/>
<label class="unbold">
<input data-count="23" name="fistfight" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Fistfight</span>
<span class="text-muted text-small">(23)</span>
</label>
<br/>
<label class="unbold">
<input data-count="23" name="horse" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Horse</span>
<span class="text-muted text-small">(23)</span>
</label>
<br/>
<label class="unbold">
<input data-count="23" name="rescue" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Rescue</span>
<span class="text-muted text-small">(23)</span>
</label>
<br/>
<label class="unbold">
<input data-count="22" name="anger" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Anger</span>
<span class="text-muted text-small">(22)</span>
</label>
<br/>
<label class="unbold">
<input data-count="22" name="automobile" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Automobile</span>
<span class="text-muted text-small">(22)</span>
</label>
<br/>
<label class="unbold">
<input data-count="22" name="brutality" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Brutality</span>
<span class="text-muted text-small">(22)</span>
</label>
<br/>
<label class="unbold">
<input data-count="22" name="doctor" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Doctor</span>
<span class="text-muted text-small">(22)</span>
</label>
<br/>
<label class="unbold">
<input data-count="22" name="female-nudity" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Female Nudity</span>
<span class="text-muted text-small">(22)</span>
</label>
<br/>
<label class="unbold">
<input data-count="22" name="friend" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Friend</span>
<span class="text-muted text-small">(22)</span>
</label>
<br/>
<label class="unbold">
<input data-count="22" name="jealousy" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Jealousy</span>
<span class="text-muted text-small">(22)</span>
</label>
<br/>
<label class="unbold">
<input data-count="22" name="lifting-someone-into-the-air" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Lifting Someone Into The Air</span>
<span class="text-muted text-small">(22)</span>
</label>
<br/>
<label class="unbold">
<input data-count="22" name="punched-in-the-face" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Punched In The Face</span>
<span class="text-muted text-small">(22)</span>
</label>
<br/>
<label class="unbold">
<input data-count="22" name="restaurant" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Restaurant</span>
<span class="text-muted text-small">(22)</span>
</label>
<br/>
<label class="unbold">
<input data-count="22" name="revolver" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Revolver</span>
<span class="text-muted text-small">(22)</span>
</label>
<br/>
<label class="unbold">
<input data-count="22" name="shot-in-the-chest" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Shot In The Chest</span>
<span class="text-muted text-small">(22)</span>
</label>
<br/>
<label class="unbold">
<input data-count="22" name="tough-guy" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Tough Guy</span>
<span class="text-muted text-small">(22)</span>
</label>
<br/>
<label class="unbold">
<input data-count="22" name="voice-over-narration" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Voice Over Narration</span>
<span class="text-muted text-small">(22)</span>
</label>
<br/>
<label class="unbold">
<input data-count="22" name="wedding" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Wedding</span>
<span class="text-muted text-small">(22)</span>
</label>
<br/>
<label class="unbold">
<input data-count="21" name="chase" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Chase</span>
<span class="text-muted text-small">(21)</span>
</label>
<br/>
<label class="unbold">
<input data-count="21" name="hotel" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Hotel</span>
<span class="text-muted text-small">(21)</span>
</label>
<br/>
<label class="unbold">
<input data-count="21" name="photograph" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Photograph</span>
<span class="text-muted text-small">(21)</span>
</label>
<br/>
<label class="unbold">
<input data-count="21" name="shootout" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Shootout</span>
<span class="text-muted text-small">(21)</span>
</label>
<br/>
<label class="unbold">
<input data-count="21" name="song" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Song</span>
<span class="text-muted text-small">(21)</span>
</label>
<br/>
<label class="unbold">
<input data-count="20" name="corpse" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Corpse</span>
<span class="text-muted text-small">(20)</span>
</label>
<br/>
<label class="unbold">
<input data-count="20" name="evil-man" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Evil Man</span>
<span class="text-muted text-small">(20)</span>
</label>
<br/>
<label class="unbold">
<input data-count="20" name="explosion" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Explosion</span>
<span class="text-muted text-small">(20)</span>
</label>
<br/>
<label class="unbold">
<input data-count="20" name="fire" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Fire</span>
<span class="text-muted text-small">(20)</span>
</label>
<br/>
<label class="unbold">
<input data-count="20" name="funeral" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Funeral</span>
<span class="text-muted text-small">(20)</span>
</label>
<br/>
<label class="unbold">
<input data-count="20" name="hero" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Hero</span>
<span class="text-muted text-small">(20)</span>
</label>
<br/>
<label class="unbold">
<input data-count="20" name="mirror" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Mirror</span>
<span class="text-muted text-small">(20)</span>
</label>
<br/>
<label class="unbold">
<input data-count="20" name="rainstorm" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Rainstorm</span>
<span class="text-muted text-small">(20)</span>
</label>
<br/>
<label class="unbold">
<input data-count="20" name="rifle" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Rifle</span>
<span class="text-muted text-small">(20)</span>
</label>
<br/>
<label class="unbold">
<input data-count="20" name="subjective-camera" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Subjective Camera</span>
<span class="text-muted text-small">(20)</span>
</label>
<br/>
<label class="unbold">
<input data-count="20" name="train" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Train</span>
<span class="text-muted text-small">(20)</span>
</label>
<br/>
<label class="unbold">
<input data-count="19" name="arrest" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Arrest</span>
<span class="text-muted text-small">(19)</span>
</label>
<br/>
<label class="unbold">
<input data-count="19" name="blood-splatter" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Blood Splatter</span>
<span class="text-muted text-small">(19)</span>
</label>
<br/>
<label class="unbold">
<input data-count="19" name="cemetery" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Cemetery</span>
<span class="text-muted text-small">(19)</span>
</label>
<br/>
<label class="unbold">
<input data-count="19" name="knife" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Knife</span>
<span class="text-muted text-small">(19)</span>
</label>
<br/>
<label class="unbold">
<input data-count="19" name="love-triangle" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Love Triangle</span>
<span class="text-muted text-small">(19)</span>
</label>
<br/>
<label class="unbold">
<input data-count="19" name="money" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Money</span>
<span class="text-muted text-small">(19)</span>
</label>
<br/>
<label class="unbold">
<input data-count="19" name="no-opening-credits" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">No Opening Credits</span>
<span class="text-muted text-small">(19)</span>
</label>
<br/>
<label class="unbold">
<input data-count="19" name="two-word-title" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Two Word Title</span>
<span class="text-muted text-small">(19)</span>
</label>
<br/>
</fieldset>
</div>
</div>
</div>
<div class="hidden faceter-working">
</div>
</div>
<div class="lister list detail sub-list">
<div class="header filmosearch">
<div class="nav">
<div class="lister-controls float-right lister-activated">
<div class="lister-control-group">
Sort by: <br/>
<select class="lister-sort-by" name="sort">
<option selected="selected" value="list_order:ascending">List Order</option>
<option value="moviemeter:ascending">Popularity</option>
<option value="alpha:ascending">Alphabetical</option>
<option value="user_rating:descending">IMDb Rating</option>
<option value="num_votes:descending">Number of Votes</option>
<option value="release_date:descending">Release Date</option>
<option value="runtime:descending">Runtime</option>
<option value="date_added:descending">Date Added</option>
</select>
<span class="global-sprite lister-sort-reverse descending" data-sort="list_order:descending" title="Ascending order"></span>
</div>
<div class="lister-control-group">
View: <br/>
<span +="" class="global-sprite lister-mode grid" data-mode="grid" ref-marker="ttls_vw_grd" title="Grid view"></span>
<span +="" class="global-sprite lister-mode detail" data-mode="detail" ref-marker="ttls_vm_dtl" title="Detail view"></span>
<span +="" class="global-sprite lister-mode simple" data-mode="simple" ref-marker="ttls_vw_smp" title="Compact view"></span>
</div>
</div>
<div class="desc lister-total-num-results">
100 titles
</div>
<div class="clear"></div>
</div>
</div>
<div class="clear"></div>
<div class="lister-list">
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0068646">
<a href="/title/tt0068646/"> <img alt="The Godfather" class="loadlate" data-tconst="tt0068646" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BM2MyNjYxNmUtYTAwNi00MTYxLWJmNWYtYzZlODY3ZTk3OTFlXkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_UY209_CR3,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">1.</span>
<a href="/title/tt0068646/">The Godfather</a>
<span class="lister-item-year text-muted unbold">(1972)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">A</span>
<span class="ghost">|</span>
<span class="runtime">175 min</span>
<span class="ghost">|</span>
<span class="genre">
Crime, Drama </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9.2</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0068646" id="checkbox-tt0068646" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0068646">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0068646">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0068646">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">100 </span>
Metascore
</div>
<p class="">
The aging patriarch of an organized crime dynasty in postwar New York City transfers control of his clandestine empire to his reluctant youngest son.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0000338/">Francis Ford Coppola</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0000008/">Marlon Brando</a>,
<a href="/name/nm0000199/">Al Pacino</a>,
<a href="/name/nm0001001/">James Caan</a>,
<a href="/name/nm0000473/">Diane Keaton</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="1832434" name="nv">1,832,434</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="134,966,411" name="nv">$134.97M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0068646" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
<div class="list-description"><p>Actors: 5 Stars
Direction: 5 Stars
Screenplay: 5 Stars<br/><br/>Oscars: 3
Oscar Nominations: 11
BAFTA Awards: 0
BAFTA Nominations: 4
Golden Globes: 6
Golden Globe Nominations: 8</p></div> </div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0111161">
<a href="/title/tt0111161/"> <img alt="The Shawshank Redemption" class="loadlate" data-tconst="tt0111161" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BMDFkYTc0MGEtZmNhMC00ZDIzLWFmNTEtODM1ZmRlYWMwMWFmXkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_UY209_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">2.</span>
<a href="/title/tt0111161/">The Shawshank Redemption</a>
<span class="lister-item-year text-muted unbold">(1994)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">A</span>
<span class="ghost">|</span>
<span class="runtime">142 min</span>
<span class="ghost">|</span>
<span class="genre">
Drama </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9.3</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0111161" id="checkbox-tt0111161" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0111161">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0111161">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0111161">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">81 </span>
Metascore
</div>
<p class="">
Two imprisoned men bond over a number of years, finding solace and eventual redemption through acts of common decency.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0001104/">Frank Darabont</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0000209/">Tim Robbins</a>,
<a href="/name/nm0000151/">Morgan Freeman</a>,
<a href="/name/nm0348409/">Bob Gunton</a>,
<a href="/name/nm0006669/">William Sadler</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="2643363" name="nv">2,643,363</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="28,341,469" name="nv">$28.34M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0111161" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
<div class="list-description"><p>Actors: 4.8 Stars
Direction: 5 Stars
Screenplay: 4.9 Stars<br/><br/>Oscars: 0
Oscar Nominations: 7
BAFTA Awards: 0
BAFTA Nominations: 0
Golden Globes: 0
Golden Globe Nominations: 2</p></div> </div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0108052">
<a href="/title/tt0108052/"> <img alt="Schindler's List" class="loadlate" data-tconst="tt0108052" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BNDE4OTMxMTctNmRhYy00NWE2LTg3YzItYTk3M2UwOTU5Njg4XkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UX140_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">3.</span>
<a href="/title/tt0108052/">Schindler's List</a>
<span class="lister-item-year text-muted unbold">(1993)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">A</span>
<span class="ghost">|</span>
<span class="runtime">195 min</span>
<span class="ghost">|</span>
<span class="genre">
Biography, Drama, History </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0108052" id="checkbox-tt0108052" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0108052">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0108052">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0108052">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">94 </span>
Metascore
</div>
<p class="">
In German-occupied Poland during World War II, industrialist <a href="/name/nm0771861">Oskar Schindler</a> gradually becomes concerned for his Jewish workforce after witnessing their persecution by the Nazis.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0000229/">Steven Spielberg</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0000553/">Liam Neeson</a>,
<a href="/name/nm0000146/">Ralph Fiennes</a>,
<a href="/name/nm0001426/">Ben Kingsley</a>,
<a href="/name/nm0328751/">Caroline Goodall</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="1340054" name="nv">1,340,054</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="96,898,818" name="nv">$96.90M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0108052" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
<div class="list-description"><p>Actors: 4.9 Stars
Direction: 5 Stars
Screenplay: 5 Stars<br/><br/>Oscars: 7
Oscar Nominations: 12
BAFTA Awards: 6
BAFTA Nominations: 12
Golden Globes: 3
Golden Globe Nominations: 6</p></div> </div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0081398">
<a href="/title/tt0081398/"> <img alt="Raging Bull" class="loadlate" data-tconst="tt0081398" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BYjRmODkzNDItMTNhNi00YjJlLTg0ZjAtODlhZTM0YzgzYThlXkEyXkFqcGdeQXVyNzQ1ODk3MTQ@._V1_UY209_CR1,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">4.</span>
<a href="/title/tt0081398/">Raging Bull</a>
<span class="lister-item-year text-muted unbold">(1980)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">A</span>
<span class="ghost">|</span>
<span class="runtime">129 min</span>
<span class="ghost">|</span>
<span class="genre">
Biography, Drama, Sport </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8.2</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0081398" id="checkbox-tt0081398" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0081398">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0081398">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0081398">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">89 </span>
Metascore
</div>
<p class="">
The life of boxer <a href="/name/nm0483766">Jake LaMotta</a>, whose violence and temper that led him to the top in the ring destroyed his life outside of it.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0000217/">Martin Scorsese</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0000134/">Robert De Niro</a>,
<a href="/name/nm0001550/">Cathy Moriarty</a>,
<a href="/name/nm0000582/">Joe Pesci</a>,
<a href="/name/nm0898634/">Frank Vincent</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="352064" name="nv">352,064</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="23,383,987" name="nv">$23.38M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0081398" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
<div class="list-description"><p>Actors: 5 Stars
Direction: 5 Stars
Screenplay: 5 Stars<br/><br/>Oscars: 2
Oscar Nominations: 8
BAFTA Awards: 2
BAFTA Nominations: 4
Golden Globes: 1
Golden Globe Nominations: 7</p></div> </div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0034583">
<a href="/title/tt0034583/"> <img alt="Casablanca" class="loadlate" data-tconst="tt0034583" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BY2IzZGY2YmEtYzljNS00NTM5LTgwMzUtMzM1NjQ4NGI0OTk0XkEyXkFqcGdeQXVyNDYyMDk5MTU@._V1_UX140_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">5.</span>
<a href="/title/tt0034583/">Casablanca</a>
<span class="lister-item-year text-muted unbold">(1942)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">U</span>
<span class="ghost">|</span>
<span class="runtime">102 min</span>
<span class="ghost">|</span>
<span class="genre">
Drama, Romance, War </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8.5</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0034583" id="checkbox-tt0034583" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0034583">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0034583">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0034583">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">100 </span>
Metascore
</div>
<p class="">
A cynical expatriate American cafe owner struggles to decide whether or not to help his former lover and her fugitive husband escape the Nazis in French Morocco.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0002031/">Michael Curtiz</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0000007/">Humphrey Bogart</a>,
<a href="/name/nm0000006/">Ingrid Bergman</a>,
<a href="/name/nm0002134/">Paul Henreid</a>,
<a href="/name/nm0001647/">Claude Rains</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="567495" name="nv">567,495</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="1,024,560" name="nv">$1.02M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0034583" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
<div class="list-description"><p>Actors: 5 Stars
Direction: 5 Stars
Screenplay: 5 Stars<br/><br/>Oscars: 3
Oscar Nominations: 8
BAFTA Awards: N/A
BAFTA Nominations: N/A
Golden Globes: N/A
Golden Globe Nominations: N/A</p></div> </div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0033467">
<a href="/title/tt0033467/"> <img alt="Citizen Kane" class="loadlate" data-tconst="tt0033467" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BYjBiOTYxZWItMzdiZi00NjlkLWIzZTYtYmFhZjhiMTljOTdkXkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_UX140_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">6.</span>
<a href="/title/tt0033467/">Citizen Kane</a>
<span class="lister-item-year text-muted unbold">(1941)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">UA</span>
<span class="ghost">|</span>
<span class="runtime">119 min</span>
<span class="ghost">|</span>
<span class="genre">
Drama, Mystery </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8.3</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0033467" id="checkbox-tt0033467" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0033467">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0033467">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0033467">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">100 </span>
Metascore
</div>
<p class="">
Following the death of publishing tycoon Charles Foster Kane, reporters scramble to uncover the meaning of his final utterance: 'Rosebud.'</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0000080/">Orson Welles</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0000080/">Orson Welles</a>,
<a href="/name/nm0001072/">Joseph Cotten</a>,
<a href="/name/nm0173827/">Dorothy Comingore</a>,
<a href="/name/nm0001547/">Agnes Moorehead</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="439896" name="nv">439,896</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="1,585,634" name="nv">$1.59M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0033467" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
<div class="list-description"><p>Actors: 5 Stars
Direction: 5 Stars
Screenplay: 5 Stars<br/><br/>Oscars: 1
Oscar Nominations: 9
BAFTA Awards: N/A
BAFTA Nominations: N/A
Golden Globes: N/A
Golden Globe Nominations: N/A</p></div> </div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0031381">
<a href="/title/tt0031381/"> <img alt="Gone with the Wind" class="loadlate" data-tconst="tt0031381" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BYjUyZWZkM2UtMzYxYy00ZmQ3LWFmZTQtOGE2YjBkNjA3YWZlXkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_UX140_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">7.</span>
<a href="/title/tt0031381/">Gone with the Wind</a>
<span class="lister-item-year text-muted unbold">(1939)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">U</span>
<span class="ghost">|</span>
<span class="runtime">238 min</span>
<span class="ghost">|</span>
<span class="genre">
Drama, Romance, War </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8.2</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0031381" id="checkbox-tt0031381" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0031381">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0031381">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0031381">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">97 </span>
Metascore
</div>
<p class="">
The manipulative daughter of a Georgia plantation owner conducts a turbulent romance with a roguish profiteer during the American Civil War and Reconstruction periods.</p>
<p class="text-muted text-small">
Directors:
<a href="/name/nm0281808/">Victor Fleming</a>,
<a href="/name/nm0002030/">George Cukor</a>,
<a href="/name/nm0939992/">Sam Wood</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0000022/">Clark Gable</a>,
<a href="/name/nm0000046/">Vivien Leigh</a>,
<a href="/name/nm0593775/">Thomas Mitchell</a>,
<a href="/name/nm0641966/">Barbara O'Neil</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="314366" name="nv">314,366</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="198,676,459" name="nv">$198.68M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0031381" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
<div class="list-description"><p>*****
Actors: 5 Stars
Direction: 5 Stars
Screenplay: 5 Stars<br/><br/>Oscars: 8
Oscar Nominations: 13
BAFTA Awards: N/A
BAFTA Nominations: N/A
Golden Globes: N/A
Golden Globe Nominations: N/A</p></div> </div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0032138">
<a href="/title/tt0032138/"> <img alt="The Wizard of Oz" class="loadlate" data-tconst="tt0032138" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BNjUyMTc4MDExMV5BMl5BanBnXkFtZTgwNDg0NDIwMjE@._V1_UY209_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">8.</span>
<a href="/title/tt0032138/">The Wizard of Oz</a>
<span class="lister-item-year text-muted unbold">(1939)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">U</span>
<span class="ghost">|</span>
<span class="runtime">102 min</span>
<span class="ghost">|</span>
<span class="genre">
Adventure, Family, Fantasy </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8.1</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0032138" id="checkbox-tt0032138" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0032138">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0032138">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0032138">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">92 </span>
Metascore
</div>
<p class="">
Young Dorothy Gale and her dog Toto are swept away by a tornado from their Kansas farm to the magical Land of Oz, and embark on a quest with three new friends to see the Wizard, who can return her to her home and fulfill the others' wishes.</p>
<p class="text-muted text-small">
Directors:
<a href="/name/nm0281808/">Victor Fleming</a>,
<a href="/name/nm0002030/">George Cukor</a>,
<a href="/name/nm0503777/">Mervyn LeRoy</a>,
<a href="/name/nm0851537/">Norman Taurog</a>,
<a href="/name/nm0861703/">Richard Thorpe</a>,
<a href="/name/nm0896542/">King Vidor</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0000023/">Judy Garland</a>,
<a href="/name/nm0604656/">Frank Morgan</a>,
<a href="/name/nm0001961/">Ray Bolger</a>,
<a href="/name/nm0481618/">Bert Lahr</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="397187" name="nv">397,187</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="2,076,020" name="nv">$2.08M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0032138" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
<div class="list-description"><p>*****
Actors: 5 Stars
Direction: 5 Stars
Screenplay: 5 Stars<br/><br/>Oscars: 2
Oscar Nominations: 6
BAFTA Awards: N/A
BAFTA Nominations: N/A
Golden Globes: N/A
Golden Globe Nominations: N/A</p></div> </div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0073486">
<a href="/title/tt0073486/"> <img alt="One Flew Over the Cuckoo's Nest" class="loadlate" data-tconst="tt0073486" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BZjA0OWVhOTAtYWQxNi00YzNhLWI4ZjYtNjFjZTEyYjJlNDVlL2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UY209_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">9.</span>
<a href="/title/tt0073486/">One Flew Over the Cuckoo's Nest</a>
<span class="lister-item-year text-muted unbold">(1975)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">A</span>
<span class="ghost">|</span>
<span class="runtime">133 min</span>
<span class="ghost">|</span>
<span class="genre">
Drama </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8.7</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0073486" id="checkbox-tt0073486" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0073486">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0073486">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0073486">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">84 </span>
Metascore
</div>
<p class="">
In the Fall of 1963, a Korean War veteran and criminal pleads insanity and is admitted to a mental institution, where he rallies up the scared patients against the tyrannical nurse.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0001232/">Milos Forman</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0000197/">Jack Nicholson</a>,
<a href="/name/nm0001221/">Louise Fletcher</a>,
<a href="/name/nm0077720/">Michael Berryman</a>,
<a href="/name/nm0110480/">Peter Brocco</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="998484" name="nv">998,484</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="112,000,000" name="nv">$112.00M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0073486" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
<div class="list-description"><p>*****
Actors: 5 Stars
Direction: 5 Stars
Screenplay: 5 Stars<br/><br/>Oscars: 5
Oscar Nominations: 9
BAFTA Awards: 6
BAFTA Nominations: 9
Golden Globes: 6
Golden Globe Nominations: 6</p></div> </div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0056172">
<a href="/title/tt0056172/"> <img alt="Lawrence of Arabia" class="loadlate" data-tconst="tt0056172" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BYWY5ZjhjNGYtZmI2Ny00ODM0LWFkNzgtZmI1YzA2N2MxMzA0XkEyXkFqcGdeQXVyNjUwNzk3NDc@._V1_UY209_CR2,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">10.</span>
<a href="/title/tt0056172/">Lawrence of Arabia</a>
<span class="lister-item-year text-muted unbold">(1962)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">U</span>
<span class="ghost">|</span>
<span class="runtime">218 min</span>
<span class="ghost">|</span>
<span class="genre">
Adventure, Biography, Drama </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8.3</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0056172" id="checkbox-tt0056172" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0056172">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0056172">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0056172">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">100 </span>
Metascore
</div>
<p class="">
The story of <a href="/name/nm0493042">T.E. Lawrence</a>, the English officer who successfully united and led the diverse, often warring, Arab tribes during World War I in order to fight the Turks.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0000180/">David Lean</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0000564/">Peter O'Toole</a>,
<a href="/name/nm0000027/">Alec Guinness</a>,
<a href="/name/nm0000063/">Anthony Quinn</a>,
<a href="/name/nm0370144/">Jack Hawkins</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="292367" name="nv">292,367</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="44,824,144" name="nv">$44.82M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0056172" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
<div class="list-description"><p>Actors: 5 Stars
Direction: 5 Stars
Screenplay: 5 Stars<br/><br/>Oscars: 7
Oscar Nominations: 10
BAFTA Awards: 4
BAFTA Nominations: 5
Golden Globes: 4
Golden Globe Nominations: 7</p></div> </div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0052357">
<a href="/title/tt0052357/"> <img alt="Vertigo" class="loadlate" data-tconst="tt0052357" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BYTE4ODEwZDUtNDFjOC00NjAxLWEzYTQtYTI1NGVmZmFlNjdiL2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_UX140_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">11.</span>
<a href="/title/tt0052357/">Vertigo</a>
<span class="lister-item-year text-muted unbold">(1958)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">A</span>
<span class="ghost">|</span>
<span class="runtime">128 min</span>
<span class="ghost">|</span>
<span class="genre">
Mystery, Romance, Thriller </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8.3</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0052357" id="checkbox-tt0052357" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0052357">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0052357">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0052357">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">100 </span>
Metascore
</div>
<p class="">
A former San Francisco police detective juggles wrestling with his personal demons and becoming obsessed with the hauntingly beautiful woman he has been hired to trail, who may be deeply disturbed.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0000033/">Alfred Hitchcock</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0000071/">James Stewart</a>,
<a href="/name/nm0001571/">Kim Novak</a>,
<a href="/name/nm0000895/">Barbara Bel Geddes</a>,
<a href="/name/nm0375738/">Tom Helmore</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="399975" name="nv">399,975</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="3,200,000" name="nv">$3.20M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0052357" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
<div class="list-description"><p>Actors: 5 Stars
Direction: 5 Stars
Screenplay: 5 Stars<br/><br/>Oscars: 0
Oscar Nominations: 2
BAFTA Awards: 0
BAFTA Nominations: 0
Golden Globes: 0
Golden Globe Nominations: 0</p></div> </div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0054215">
<a href="/title/tt0054215/"> <img alt="Psycho" class="loadlate" data-tconst="tt0054215" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BNTQwNDM1YzItNDAxZC00NWY2LTk0M2UtNDIwNWI5OGUyNWUxXkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_UY209_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">12.</span>
<a href="/title/tt0054215/">Psycho</a>
<span class="lister-item-year text-muted unbold">(1960)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">A</span>
<span class="ghost">|</span>
<span class="runtime">109 min</span>
<span class="ghost">|</span>
<span class="genre">
Horror, Mystery, Thriller </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8.5</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0054215" id="checkbox-tt0054215" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0054215">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0054215">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0054215">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">97 </span>
Metascore
</div>
<p class="">
A Phoenix secretary embezzles $40,000 from her employer's client, goes on the run, and checks into a remote motel run by a young man under the domination of his mother.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0000033/">Alfred Hitchcock</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0000578/">Anthony Perkins</a>,
<a href="/name/nm0001463/">Janet Leigh</a>,
<a href="/name/nm0587256/">Vera Miles</a>,
<a href="/name/nm0001260/">John Gavin</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="664977" name="nv">664,977</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="32,000,000" name="nv">$32.00M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0054215" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
<div class="list-description"><p>*****
Actors: 5 Stars
Direction: 5 Stars
Screenplay: 5 Stars<br/><br/>Oscars: 0
Oscar Nominations: 4
BAFTA Awards: 0
BAFTA Nominations: 0
Golden Globes: 1
Golden Globe Nominations: 1</p></div> </div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0071562">
<a href="/title/tt0071562/"> <img alt="The Godfather Part II" class="loadlate" data-tconst="tt0071562" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BMWMwMGQzZTItY2JlNC00OWZiLWIyMDctNDk2ZDQ2YjRjMWQ0XkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_UY209_CR3,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">13.</span>
<a href="/title/tt0071562/">The Godfather Part II</a>
<span class="lister-item-year text-muted unbold">(1974)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">A</span>
<span class="ghost">|</span>
<span class="runtime">202 min</span>
<span class="ghost">|</span>
<span class="genre">
Crime, Drama </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0071562" id="checkbox-tt0071562" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0071562">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0071562">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0071562">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">90 </span>
Metascore
</div>
<p class="">
The early life and career of Vito Corleone in 1920s New York City is portrayed, while his son, Michael, expands and tightens his grip on the family crime syndicate.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0000338/">Francis Ford Coppola</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0000199/">Al Pacino</a>,
<a href="/name/nm0000134/">Robert De Niro</a>,
<a href="/name/nm0000380/">Robert Duvall</a>,
<a href="/name/nm0000473/">Diane Keaton</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="1256053" name="nv">1,256,053</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="57,300,000" name="nv">$57.30M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0071562" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
<div class="list-description"><p>Actors: 5 Stars
Direction: 5 Stars
Screenplay: 5 Stars<br/><br/>Oscars: 6
Oscar Nominations: 11
BAFTA Awards: 1
BAFTA Nominations: 3
Golden Globes: 0
Golden Globe Nominations: 6</p></div> </div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0047296">
<a href="/title/tt0047296/"> <img alt="On the Waterfront" class="loadlate" data-tconst="tt0047296" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BY2I0MWFiZDMtNWQyYy00Njk5LTk3MDktZjZjNTNmZmVkYjkxXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_UX140_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">14.</span>
<a href="/title/tt0047296/">On the Waterfront</a>
<span class="lister-item-year text-muted unbold">(1954)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">A</span>
<span class="ghost">|</span>
<span class="runtime">108 min</span>
<span class="ghost">|</span>
<span class="genre">
Crime, Drama, Thriller </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8.1</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0047296" id="checkbox-tt0047296" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0047296">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0047296">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0047296">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">91 </span>
Metascore
</div>
<p class="">
An ex-prize fighter turned New Jersey longshoreman struggles to stand up to his corrupt union bosses, including his older brother, as he starts to connect with the grieving sister of one of the syndicate's victims.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0001415/">Elia Kazan</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0000008/">Marlon Brando</a>,
<a href="/name/nm0001500/">Karl Malden</a>,
<a href="/name/nm0002011/">Lee J. Cobb</a>,
<a href="/name/nm0001768/">Rod Steiger</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="154861" name="nv">154,861</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="9,600,000" name="nv">$9.60M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0047296" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
<div class="list-description"><p>*****
Actors: 5 Stars
Direction: 5 Stars
Screenplay: 5 Stars<br/><br/>Oscars: 8
Oscar Nominations: 12
BAFTA Awards: 1
BAFTA Nominations: 3
Golden Globes: 4
Golden Globe Nominations: 4</p></div> </div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0043014">
<a href="/title/tt0043014/"> <img alt="Sunset Blvd." class="loadlate" data-tconst="tt0043014" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BMTU0NTkyNzYwMF5BMl5BanBnXkFtZTgwMDU0NDk5MTI@._V1_UX140_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">15.</span>
<a href="/title/tt0043014/">Sunset Blvd.</a>
<span class="lister-item-year text-muted unbold">(1950)</span>
</h3>
<p class="text-muted text-small">
<span class="runtime">110 min</span>
<span class="ghost">|</span>
<span class="genre">
Drama, Film-Noir </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8.4</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0043014" id="checkbox-tt0043014" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0043014">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0043014">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0043014">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
A screenwriter develops a dangerous relationship with a faded film star determined to make a triumphant return.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0000697/">Billy Wilder</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0000034/">William Holden</a>,
<a href="/name/nm0841797/">Gloria Swanson</a>,
<a href="/name/nm0002233/">Erich von Stroheim</a>,
<a href="/name/nm0647970/">Nancy Olson</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="221013" name="nv">221,013</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0043014" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
<div class="list-description"><p>*****
Actors: 5 Stars
Direction: 5 Stars
Screenplay: 5 Stars<br/><br/>Oscars: 3
Oscar Nominations: 11
BAFTA Awards: 0
BAFTA Nominations: 0
Golden Globes: 4
Golden Globe Nominations: 7</p></div> </div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0109830">
<a href="/title/tt0109830/"> <img alt="Forrest Gump" class="loadlate" data-tconst="tt0109830" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BNWIwODRlZTUtY2U3ZS00Yzg1LWJhNzYtMmZiYmEyNmU1NjMzXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UY209_CR2,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">16.</span>
<a href="/title/tt0109830/">Forrest Gump</a>
<span class="lister-item-year text-muted unbold">(1994)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">UA</span>
<span class="ghost">|</span>
<span class="runtime">142 min</span>
<span class="ghost">|</span>
<span class="genre">
Drama, Romance </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8.8</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0109830" id="checkbox-tt0109830" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0109830">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0109830">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0109830">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">82 </span>
Metascore
</div>
<p class="">
The presidencies of Kennedy and Johnson, the Vietnam War, the Watergate scandal and other historical events unfold from the perspective of an Alabama man with an IQ of 75, whose only desire is to be reunited with his childhood sweetheart.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0000709/">Robert Zemeckis</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0000158/">Tom Hanks</a>,
<a href="/name/nm0000705/">Robin Wright</a>,
<a href="/name/nm0000641/">Gary Sinise</a>,
<a href="/name/nm0000398/">Sally Field</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="2046503" name="nv">2,046,503</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="330,252,182" name="nv">$330.25M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0109830" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
<div class="list-description"><p>Actors: 5 Stars
Direction: 5 Stars
Screenplay: 5 Stars<br/><br/>Oscars: 6
Oscar Nominations: 13
BAFTA Awards: 1
BAFTA Nominations: 7
Golden Globes: 3
Golden Globe Nominations: 7</p></div> </div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0059742">
<a href="/title/tt0059742/"> <img alt="The Sound of Music" class="loadlate" data-tconst="tt0059742" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BODIxNjhkYjEtYzUyMi00YTNjLWE1YjktNjAyY2I2MWNkNmNmL2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UY209_CR3,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">17.</span>
<a href="/title/tt0059742/">The Sound of Music</a>
<span class="lister-item-year text-muted unbold">(1965)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">U</span>
<span class="ghost">|</span>
<span class="runtime">172 min</span>
<span class="ghost">|</span>
<span class="genre">
Biography, Drama, Family </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8.1</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0059742" id="checkbox-tt0059742" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0059742">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0059742">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0059742">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">63 </span>
Metascore
</div>
<p class="">
A young novitiate is sent by her convent in 1930s Austria to become a governess to the seven children of a widowed naval officer.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0936404/">Robert Wise</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0000267/">Julie Andrews</a>,
<a href="/name/nm0001626/">Christopher Plummer</a>,
<a href="/name/nm0662223/">Eleanor Parker</a>,
<a href="/name/nm0370821/">Richard Haydn</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="232707" name="nv">232,707</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="163,214,286" name="nv">$163.21M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0059742" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
<div class="list-description"><p>*****
Actors: 5 Stars
Direction: 5 Stars
Screenplay: 5 Stars<br/><br/>Oscars: 5
Oscar Nominations: 10
BAFTA Awards: 0
BAFTA Nominations: 1
Golden Globes: 2
Golden Globe Nominations: 4</p></div> </div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0050083">
<a href="/title/tt0050083/"> <img alt="12 Angry Men" class="loadlate" data-tconst="tt0050083" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BMWU4N2FjNzYtNTVkNC00NzQ0LTg0MjAtYTJlMjFhNGUxZDFmXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_UX140_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">18.</span>
<a href="/title/tt0050083/">12 Angry Men</a>
<span class="lister-item-year text-muted unbold">(1957)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">U</span>
<span class="ghost">|</span>
<span class="runtime">96 min</span>
<span class="ghost">|</span>
<span class="genre">
Crime, Drama </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0050083" id="checkbox-tt0050083" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0050083">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0050083">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0050083">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">96 </span>
Metascore
</div>
<p class="">
The jury in a New York City murder trial is frustrated by a single member whose skeptical caution forces them to more carefully consider the evidence before jumping to a hasty verdict.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0001486/">Sidney Lumet</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0000020/">Henry Fonda</a>,
<a href="/name/nm0002011/">Lee J. Cobb</a>,
<a href="/name/nm0000842/">Martin Balsam</a>,
<a href="/name/nm0275835/">John Fiedler</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="780462" name="nv">780,462</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="4,360,000" name="nv">$4.36M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0050083" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
<div class="list-description"><p>*****
Actors: 5 Stars
Direction: 5 Stars
Screenplay: 5 Stars<br/><br/>Oscars: 0
Oscar Nominations: 3
BAFTA Awards: 1
BAFTA Nominations: 2
Golden Globes: 0
Golden Globe Nominations: 4</p></div> </div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0055614">
<a href="/title/tt0055614/"> <img alt="West Side Story" class="loadlate" data-tconst="tt0055614" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BMTM0NDAxOTI5MF5BMl5BanBnXkFtZTcwNjI4Mjg3NA@@._V1_UX140_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">19.</span>
<a href="/title/tt0055614/">West Side Story</a>
<span class="lister-item-year text-muted unbold">(1961)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">A</span>
<span class="ghost">|</span>
<span class="runtime">153 min</span>
<span class="ghost">|</span>
<span class="genre">
Crime, Drama, Musical </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7.6</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0055614" id="checkbox-tt0055614" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0055614">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0055614">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0055614">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">86 </span>
Metascore
</div>
<p class="">
Two youngsters from rival New York City gangs fall in love, but tensions between their respective friends build toward tragedy.</p>
<p class="text-muted text-small">
Directors:
<a href="/name/nm0730385/">Jerome Robbins</a>,
<a href="/name/nm0936404/">Robert Wise</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0000081/">Natalie Wood</a>,
<a href="/name/nm0001995/">George Chakiris</a>,
<a href="/name/nm0000937/">Richard Beymer</a>,
<a href="/name/nm0848560/">Russ Tamblyn</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="114069" name="nv">114,069</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="43,656,822" name="nv">$43.66M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0055614" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
<div class="list-description"><p>*****
Actors: 4.9 Stars
Direction: 4.9 Stars
Screenplay: 4.8 Stars<br/><br/>Oscars: 10
Oscar Nominations: 11
BAFTA Awards: 0
BAFTA Nominations: 1
Golden Globes: 3
Golden Globe Nominations: 5</p></div> </div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0076759">
<a href="/title/tt0076759/"> <img alt="Star Wars" class="loadlate" data-tconst="tt0076759" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BOTA5NjhiOTAtZWM0ZC00MWNhLThiMzEtZDFkOTk2OTU1ZDJkXkEyXkFqcGdeQXVyMTA4NDI1NTQx._V1_UX140_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">20.</span>
<a href="/title/tt0076759/">Star Wars</a>
<span class="lister-item-year text-muted unbold">(1977)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">U</span>
<span class="ghost">|</span>
<span class="runtime">121 min</span>
<span class="ghost">|</span>
<span class="genre">
Action, Adventure, Fantasy </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8.6</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0076759" id="checkbox-tt0076759" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0076759">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0076759">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0076759">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">90 </span>
Metascore
</div>
<p class="">
Luke Skywalker joins forces with a Jedi Knight, a cocky pilot, a Wookiee and two droids to save the galaxy from the Empire's world-destroying battle station, while also attempting to rescue Princess Leia from the mysterious Darth Vader.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0000184/">George Lucas</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0000434/">Mark Hamill</a>,
<a href="/name/nm0000148/">Harrison Ford</a>,
<a href="/name/nm0000402/">Carrie Fisher</a>,
<a href="/name/nm0000027/">Alec Guinness</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="1350260" name="nv">1,350,260</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="322,740,140" name="nv">$322.74M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0076759" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
<div class="list-description"><p>Actors: 4.8 Stars
Direction: 5 Stars
Screenplay: 4.9 Stars<br/><br/>Oscars: 6
Oscar Nominations: 10
BAFTA Awards: 1
BAFTA Nominations: 5
Golden Globes: 1
Golden Globe Nominations: 4</p></div> </div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0062622">
<a href="/title/tt0062622/"> <img alt="2001: A Space Odyssey" class="loadlate" data-tconst="tt0062622" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BMmNlYzRiNDctZWNhMi00MzI4LThkZTctMTUzMmZkMmFmNThmXkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_UY209_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">21.</span>
<a href="/title/tt0062622/">2001: A Space Odyssey</a>
<span class="lister-item-year text-muted unbold">(1968)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">U</span>
<span class="ghost">|</span>
<span class="runtime">149 min</span>
<span class="ghost">|</span>
<span class="genre">
Adventure, Sci-Fi </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8.3</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0062622" id="checkbox-tt0062622" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0062622">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0062622">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0062622">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">84 </span>
Metascore
</div>
<p class="">
After uncovering a mysterious artifact buried beneath the Lunar surface, a spacecraft is sent to Jupiter to find its origins - a spacecraft manned by two men and the supercomputer H.A.L. 9000.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0000040/">Stanley Kubrick</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0001158/">Keir Dullea</a>,
<a href="/name/nm0516972/">Gary Lockwood</a>,
<a href="/name/nm0843213/">William Sylvester</a>,
<a href="/name/nm0725220/">Daniel Richter</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="662791" name="nv">662,791</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="56,954,992" name="nv">$56.95M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0062622" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
<div class="list-description"><p>Actors: 5 Stars
Direction: 5 Stars
Screenplay: 5 Stars<br/><br/>Oscars: 1
Oscar Nominations: 4
BAFTA Awards: 3
BAFTA Nominations: 5
Golden Globes: 0
Golden Globe Nominations: 0</p></div> </div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0083866">
<a href="/title/tt0083866/"> <img alt="E.T. the Extra-Terrestrial" class="loadlate" data-tconst="tt0083866" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BMTQ2ODFlMDAtNzdhOC00ZDYzLWE3YTMtNDU4ZGFmZmJmYTczXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UX140_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">22.</span>
<a href="/title/tt0083866/">E.T. the Extra-Terrestrial</a>
<span class="lister-item-year text-muted unbold">(1982)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">U</span>
<span class="ghost">|</span>
<span class="runtime">115 min</span>
<span class="ghost">|</span>
<span class="genre">
Adventure, Family, Sci-Fi </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7.9</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0083866" id="checkbox-tt0083866" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0083866">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0083866">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0083866">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">91 </span>
Metascore
</div>
<p class="">
A troubled child summons the courage to help a friendly alien escape from Earth and return to his home planet.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0000229/">Steven Spielberg</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0001794/">Henry Thomas</a>,
<a href="/name/nm0000106/">Drew Barrymore</a>,
<a href="/name/nm0001075/">Peter Coyote</a>,
<a href="/name/nm0908914/">Dee Wallace</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="406546" name="nv">406,546</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="435,110,554" name="nv">$435.11M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0083866" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
<div class="list-description"><p>*****
Actors: 4.8 Stars
Direction: 4.9 Stars
Screenplay: 4.9 Stars<br/><br/>Oscars: 4
Oscar Nominations: 9
BAFTA Awards: 1
BAFTA Nominations: 12
Golden Globes: 2
Golden Globe Nominations: 5</p></div> </div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0102926">
<a href="/title/tt0102926/"> <img alt="The Silence of the Lambs" class="loadlate" data-tconst="tt0102926" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BNjNhZTk0ZmEtNjJhMi00YzFlLWE1MmEtYzM1M2ZmMGMwMTU4XkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UY209_CR1,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">23.</span>
<a href="/title/tt0102926/">The Silence of the Lambs</a>
<span class="lister-item-year text-muted unbold">(1991)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">A</span>
<span class="ghost">|</span>
<span class="runtime">118 min</span>
<span class="ghost">|</span>
<span class="genre">
Crime, Drama, Thriller </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8.6</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0102926" id="checkbox-tt0102926" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0102926">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0102926">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0102926">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">85 </span>
Metascore
</div>
<p class="">
A young F.B.I. cadet must receive the help of an incarcerated and manipulative cannibal killer to help catch another serial killer, a madman who skins his victims.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0001129/">Jonathan Demme</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0000149/">Jodie Foster</a>,
<a href="/name/nm0000164/">Anthony Hopkins</a>,
<a href="/name/nm0095029/">Lawrence A. Bonney</a>,
<a href="/name/nm0501435/">Kasi Lemmons</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="1412774" name="nv">1,412,774</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="130,742,922" name="nv">$130.74M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0102926" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
<div class="list-description"><p>Actors: 5 Stars
Direction: 5 Stars
Screenplay: 5 Stars<br/><br/>Oscars: 5
Oscar Nominations: 7
BAFTA Awards: 2
BAFTA Nominations: 9
Golden Globes: 1
Golden Globe Nominations: 5</p></div> </div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0071315">
<a href="/title/tt0071315/"> <img alt="Chinatown" class="loadlate" data-tconst="tt0071315" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BMjJkMDZhYzItZTFhMi00ZGI4LThlNTAtZDNlYmEwNjFkNDYzXkEyXkFqcGdeQXVyMjUzOTY1NTc@._V1_UX140_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">24.</span>
<a href="/title/tt0071315/">Chinatown</a>
<span class="lister-item-year text-muted unbold">(1974)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">UA</span>
<span class="ghost">|</span>
<span class="runtime">130 min</span>
<span class="ghost">|</span>
<span class="genre">
Drama, Mystery, Thriller </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8.2</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0071315" id="checkbox-tt0071315" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0071315">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0071315">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0071315">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">92 </span>
Metascore
</div>
<p class="">
A private detective hired to expose an adulterer in 1930s Los Angeles finds himself caught up in a web of deceit, corruption, and murder.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0000591/">Roman Polanski</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0000197/">Jack Nicholson</a>,
<a href="/name/nm0001159/">Faye Dunaway</a>,
<a href="/name/nm0001379/">John Huston</a>,
<a href="/name/nm0520164/">Perry Lopez</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="325071" name="nv">325,071</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="8,486,653" name="nv">$8.49M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0071315" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
<div class="list-description"><p>*****
Actors: 4.8 Stars
Direction: 4.8 Stars
Screenplay: 4.8 Stars<br/><br/>Oscars: 1
Oscar Nominations: 11
BAFTA Awards: 3
BAFTA Nominations: 10
Golden Globes: 4
Golden Globe Nominations: 7</p></div> </div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0050212">
<a href="/title/tt0050212/"> <img alt="The Bridge on the River Kwai" class="loadlate" data-tconst="tt0050212" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BOGY5NmNlMmQtYzRlYy00NGQ5LWFkYjYtNzExZmQyMTg0ZDA0XkEyXkFqcGdeQXVyNDIzMzcwNjc@._V1_UX140_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">25.</span>
<a href="/title/tt0050212/">The Bridge on the River Kwai</a>
<span class="lister-item-year text-muted unbold">(1957)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">U</span>
<span class="ghost">|</span>
<span class="runtime">161 min</span>
<span class="ghost">|</span>
<span class="genre">
Adventure, Drama, War </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8.2</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0050212" id="checkbox-tt0050212" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0050212">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0050212">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0050212">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">87 </span>
Metascore
</div>
<p class="">
British POWs are forced to build a railway bridge across the river Kwai for their Japanese captors in occupied Burma, not knowing that the allied forces are planning a daring commando raid through the jungle to destroy it.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0000180/">David Lean</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0000034/">William Holden</a>,
<a href="/name/nm0000027/">Alec Guinness</a>,
<a href="/name/nm0370144/">Jack Hawkins</a>,
<a href="/name/nm0370564/">Sessue Hayakawa</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="220080" name="nv">220,080</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="44,908,000" name="nv">$44.91M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0050212" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
<div class="list-description"><p>Actors: 4.8 Stars
Direction: 4.9 Stars
Screenplay: 4.9 Stars<br/><br/>Oscars: 7
Oscar Nominations: 8
BAFTA Awards: 4
BAFTA Nominations: 4
Golden Globes: 3
Golden Globe Nominations: 4</p></div> </div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0045152">
<a href="/title/tt0045152/"> <img alt="Singin' in the Rain" class="loadlate" data-tconst="tt0045152" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BZDRjNGViMjQtOThlMi00MTA3LThkYzQtNzJkYjBkMGE0YzE1XkEyXkFqcGdeQXVyNDYyMDk5MTU@._V1_UY209_CR1,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">26.</span>
<a href="/title/tt0045152/">Singin' in the Rain</a>
<span class="lister-item-year text-muted unbold">(1952)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">G</span>
<span class="ghost">|</span>
<span class="runtime">103 min</span>
<span class="ghost">|</span>
<span class="genre">
Comedy, Musical, Romance </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8.3</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0045152" id="checkbox-tt0045152" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0045152">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0045152">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0045152">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">99 </span>
Metascore
</div>
<p class="">
A silent film star falls for a chorus girl just as he and his delusionally jealous screen partner are trying to make the difficult transition to talking pictures in 1920s Hollywood.</p>
<p class="text-muted text-small">
Directors:
<a href="/name/nm0002045/">Stanley Donen</a>,
<a href="/name/nm0000037/">Gene Kelly</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0000037/">Gene Kelly</a>,
<a href="/name/nm0640307/">Donald O'Connor</a>,
<a href="/name/nm0001666/">Debbie Reynolds</a>,
<a href="/name/nm0353405/">Jean Hagen</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="241183" name="nv">241,183</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="8,819,028" name="nv">$8.82M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0045152" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
<div class="list-description"><p>*****
Actors: 5 Stars
Direction: 5 Stars
Screenplay: 5 Stars<br/><br/>Oscars: 0
Oscar Nominations: 2
BAFTA Awards: 0
BAFTA Nominations: 1
Golden Globes: 1
Golden Globe Nominations: 2</p></div> </div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0038650">
<a href="/title/tt0038650/"> <img alt="It's a Wonderful Life" class="loadlate" data-tconst="tt0038650" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BZjc4NDZhZWMtNGEzYS00ZWU2LThlM2ItNTA0YzQ0OTExMTE2XkEyXkFqcGdeQXVyNjUwMzI2NzU@._V1_UY209_CR2,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">27.</span>
<a href="/title/tt0038650/">It's a Wonderful Life</a>
<span class="lister-item-year text-muted unbold">(1946)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">PG</span>
<span class="ghost">|</span>
<span class="runtime">130 min</span>
<span class="ghost">|</span>
<span class="genre">
Drama, Family, Fantasy </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8.6</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0038650" id="checkbox-tt0038650" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0038650">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0038650">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0038650">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">89 </span>
Metascore
</div>
<p class="">
An angel is sent from Heaven to help a desperately frustrated businessman by showing him what life would have been like if he had never existed.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0001008/">Frank Capra</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0000071/">James Stewart</a>,
<a href="/name/nm0001656/">Donna Reed</a>,
<a href="/name/nm0000859/">Lionel Barrymore</a>,
<a href="/name/nm0593775/">Thomas Mitchell</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="451756" name="nv">451,756</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0038650" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
<div class="list-description"><p>*****
Actors: 5 Stars
Direction: 4.9 Stars
Screenplay: 4.9 Stars<br/><br/>Oscars: 0
Oscar Nominations: 5
BAFTA Awards: 0
BAFTA Nominations: 0
Golden Globes: 1
Golden Globe Nominations: 1</p></div> </div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0057012">
<a href="/title/tt0057012/"> <img alt="Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb" class="loadlate" data-tconst="tt0057012" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BZWI3ZTMxNjctMjdlNS00NmUwLWFiM2YtZDUyY2I3N2MxYTE0XkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_UX140_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">28.</span>
<a href="/title/tt0057012/">Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb</a>
<span class="lister-item-year text-muted unbold">(1964)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">A</span>
<span class="ghost">|</span>
<span class="runtime">95 min</span>
<span class="ghost">|</span>
<span class="genre">
Comedy, War </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8.4</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0057012" id="checkbox-tt0057012" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0057012">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0057012">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0057012">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">97 </span>
Metascore
</div>
<p class="">
An insane American general orders a bombing attack on the Soviet Union, triggering a path to nuclear holocaust that a war room full of politicians and generals frantically tries to stop.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0000040/">Stanley Kubrick</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0000634/">Peter Sellers</a>,
<a href="/name/nm0001715/">George C. Scott</a>,
<a href="/name/nm0001330/">Sterling Hayden</a>,
<a href="/name/nm0943978/">Keenan Wynn</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="487849" name="nv">487,849</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="275,902" name="nv">$0.28M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0057012" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
<div class="list-description"><p>Actors: 5 Stars
Direction: 5 Stars
Screenplay: 5 Stars<br/><br/>Oscars: 0
Oscar Nominations: 4
BAFTA Awards: 3
BAFTA Nominations: 6
Golden Globes: 0
Golden Globe Nominations: 0</p></div> </div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0053291">
<a href="/title/tt0053291/"> <img alt="Some Like It Hot" class="loadlate" data-tconst="tt0053291" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BNzAyOGIxYjAtMGY2NC00ZTgyLWIwMWEtYzY0OWQ4NDFjOTc5XkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UX140_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">29.</span>
<a href="/title/tt0053291/">Some Like It Hot</a>
<span class="lister-item-year text-muted unbold">(1959)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">U</span>
<span class="ghost">|</span>
<span class="runtime">121 min</span>
<span class="ghost">|</span>
<span class="genre">
Comedy, Music, Romance </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8.2</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0053291" id="checkbox-tt0053291" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0053291">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0053291">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0053291">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">98 </span>
Metascore
</div>
<p class="">
After two male musicians witness a mob hit, they flee the state in an all-female band disguised as women, but further complications set in.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0000697/">Billy Wilder</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0000054/">Marilyn Monroe</a>,
<a href="/name/nm0000348/">Tony Curtis</a>,
<a href="/name/nm0000493/">Jack Lemmon</a>,
<a href="/name/nm0706368/">George Raft</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="266088" name="nv">266,088</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="25,000,000" name="nv">$25.00M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0053291" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
<div class="list-description"><p>Actors: 5 Stars
Direction: 5 Stars
Screenplay: 5 Stars<br/><br/>Oscars: 1
Oscar Nominations: 6
BAFTA Awards: 1
BAFTA Nominations: 2
Golden Globes: 3
Golden Globe Nominations: 3</p></div> </div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0052618">
<a href="/title/tt0052618/"> <img alt="Ben-Hur" class="loadlate" data-tconst="tt0052618" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BNjgxY2JiZDYtZmMwOC00ZmJjLWJmODUtMTNmNWNmYWI5ODkwL2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_UX140_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">30.</span>
<a href="/title/tt0052618/">Ben-Hur</a>
<span class="lister-item-year text-muted unbold">(1959)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">U</span>
<span class="ghost">|</span>
<span class="runtime">212 min</span>
<span class="ghost">|</span>
<span class="genre">
Adventure, Drama </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8.1</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0052618" id="checkbox-tt0052618" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0052618">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0052618">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0052618">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">90 </span>
Metascore
</div>
<p class="">
After a Jewish prince is betrayed and sent into slavery by a Roman friend in 1st-century Jerusalem, he regains his freedom and comes back for revenge.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0943758/">William Wyler</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0000032/">Charlton Heston</a>,
<a href="/name/nm0370144/">Jack Hawkins</a>,
<a href="/name/nm0000963/">Stephen Boyd</a>,
<a href="/name/nm0361823/">Haya Harareet</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="238718" name="nv">238,718</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="74,700,000" name="nv">$74.70M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0052618" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
<div class="list-description"><p>Actors: 5 Stars
Direction: 5 Stars
Screenplay: 5 Stars<br/><br/>Oscars: 11
Oscar Nominations: 12
BAFTA Awards: 1
BAFTA Nominations: 1
Golden Globes: 3
Golden Globe Nominations: 4</p></div> </div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0078788">
<a href="/title/tt0078788/"> <img alt="Apocalypse Now" class="loadlate" data-tconst="tt0078788" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BYmQyNTA1ZGItNjZjMi00NzFlLWEzMWEtNWMwN2Q2MjJhYzEyXkEyXkFqcGdeQXVyMjUzOTY1NTc@._V1_UX140_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">31.</span>
<a href="/title/tt0078788/">Apocalypse Now</a>
<span class="lister-item-year text-muted unbold">(1979)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">R</span>
<span class="ghost">|</span>
<span class="runtime">147 min</span>
<span class="ghost">|</span>
<span class="genre">
Drama, Mystery, War </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8.5</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0078788" id="checkbox-tt0078788" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0078788">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0078788">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0078788">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">94 </span>
Metascore
</div>
<p class="">
A U.S. Army officer serving in Vietnam is tasked with assassinating a renegade Special Forces Colonel who sees himself as a god.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0000338/">Francis Ford Coppola</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0000640/">Martin Sheen</a>,
<a href="/name/nm0000008/">Marlon Brando</a>,
<a href="/name/nm0000380/">Robert Duvall</a>,
<a href="/name/nm0002078/">Frederic Forrest</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="661886" name="nv">661,886</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="83,471,511" name="nv">$83.47M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0078788" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
<div class="list-description"><p>Actors: 5 Stars
Direction: 5 Stars
Screenplay: 5 Stars<br/><br/>Oscars: 2
Oscar Nominations: 8
BAFTA Awards: 2
BAFTA Nominations: 8
Golden Globes: 3
Golden Globe Nominations: 4</p></div> </div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0086879">
<a href="/title/tt0086879/"> <img alt="Amadeus" class="loadlate" data-tconst="tt0086879" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BNWJlNzUzNGMtYTAwMS00ZjI2LWFmNWQtODcxNWUxODA5YmU1XkEyXkFqcGdeQXVyNTIzOTk5ODM@._V1_UX140_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">32.</span>
<a href="/title/tt0086879/">Amadeus</a>
<span class="lister-item-year text-muted unbold">(1984)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">R</span>
<span class="ghost">|</span>
<span class="runtime">160 min</span>
<span class="ghost">|</span>
<span class="genre">
Biography, Drama, Music </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8.4</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0086879" id="checkbox-tt0086879" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0086879">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0086879">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0086879">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">88 </span>
Metascore
</div>
<p class="">
The life, success and troubles of <a href="/name/nm0003665">Wolfgang Amadeus Mozart</a>, as told by <a href="/name/nm0758283">Antonio Salieri</a>, the contemporaneous composer who was insanely jealous of Mozart's talent and claimed to have murdered him.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0001232/">Milos Forman</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0000719/">F. Murray Abraham</a>,
<a href="/name/nm0001371/">Tom Hulce</a>,
<a href="/name/nm0000931/">Elizabeth Berridge</a>,
<a href="/name/nm0234541/">Roy Dotrice</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="398928" name="nv">398,928</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="51,973,029" name="nv">$51.97M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0086879" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
<div class="list-description"><p>*****
Actors: 5 Stars
Direction: 5 Stars
Screenplay: 5 Stars<br/><br/>Oscars: 8
Oscar Nominations: 11
BAFTA Awards: 4
BAFTA Nominations: 9
Golden Globes: 4
Golden Globe Nominations: 6</p></div> </div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0167260">
<a href="/title/tt0167260/"> <img alt="The Lord of the Rings: The Return of the King" class="loadlate" data-tconst="tt0167260" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BNzA5ZDNlZWMtM2NhNS00NDJjLTk4NDItYTRmY2EwMWZlMTY3XkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_UY209_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">33.</span>
<a href="/title/tt0167260/">The Lord of the Rings: The Return of the King</a>
<span class="lister-item-year text-muted unbold">(2003)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">U</span>
<span class="ghost">|</span>
<span class="runtime">201 min</span>
<span class="ghost">|</span>
<span class="genre">
Action, Adventure, Drama </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0167260" id="checkbox-tt0167260" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0167260">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0167260">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0167260">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">94 </span>
Metascore
</div>
<p class="">
Gandalf and Aragorn lead the World of Men against Sauron's army to draw his gaze from Frodo and Sam as they approach Mount Doom with the One Ring.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0001392/">Peter Jackson</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0000704/">Elijah Wood</a>,
<a href="/name/nm0001557/">Viggo Mortensen</a>,
<a href="/name/nm0005212/">Ian McKellen</a>,
<a href="/name/nm0089217/">Orlando Bloom</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="1819558" name="nv">1,819,558</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="377,845,905" name="nv">$377.85M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0167260" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
<div class="list-description"><p>Actors: 4.8 Stars
Direction: 5 Stars
Screenplay: 4.9 Stars<br/><br/>Oscars: 11
Oscar Nominations: 11
BAFTA Awards: 4
BAFTA Nominations: 10
Golden Globes: 4
Golden Globe Nominations: 4</p></div> </div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0172495">
<a href="/title/tt0172495/"> <img alt="Gladiator" class="loadlate" data-tconst="tt0172495" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BMDliMmNhNDEtODUyOS00MjNlLTgxODEtN2U3NzIxMGVkZTA1L2ltYWdlXkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UY209_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">34.</span>
<a href="/title/tt0172495/">Gladiator</a>
<span class="lister-item-year text-muted unbold">(2000)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">UA</span>
<span class="ghost">|</span>
<span class="runtime">155 min</span>
<span class="ghost">|</span>
<span class="genre">
Action, Adventure, Drama </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8.5</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0172495" id="checkbox-tt0172495" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0172495">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0172495">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0172495">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">67 </span>
Metascore
</div>
<p class="">
A former Roman General sets out to exact vengeance against the corrupt emperor who murdered his family and sent him into slavery.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0000631/">Ridley Scott</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0000128/">Russell Crowe</a>,
<a href="/name/nm0001618/">Joaquin Phoenix</a>,
<a href="/name/nm0001567/">Connie Nielsen</a>,
<a href="/name/nm0001657/">Oliver Reed</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="1481780" name="nv">1,481,780</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="187,705,427" name="nv">$187.71M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0172495" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
<div class="list-description"><p>*****
Actors: 5 Stars
Direction: 4.7 Stars
Screenplay: 4.7 Stars<br/><br/>Oscars: 5
Oscar Nominations: 12
BAFTA Awards: 4
BAFTA Nominations: 12
Golden Globes: 2
Golden Globe Nominations: 5</p></div> </div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0120338">
<a href="/title/tt0120338/"> <img alt="Titanic" class="loadlate" data-tconst="tt0120338" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BMDdmZGU3NDQtY2E5My00ZTliLWIzOTUtMTY4ZGI1YjdiNjk3XkEyXkFqcGdeQXVyNTA4NzY1MzY@._V1_UY209_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">35.</span>
<a href="/title/tt0120338/">Titanic</a>
<span class="lister-item-year text-muted unbold">(1997)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">UA</span>
<span class="ghost">|</span>
<span class="runtime">194 min</span>
<span class="ghost">|</span>
<span class="genre">
Drama, Romance </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7.9</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0120338" id="checkbox-tt0120338" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0120338">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0120338">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0120338">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">75 </span>
Metascore
</div>
<p class="">
A seventeen-year-old aristocrat falls in love with a kind but poor artist aboard the luxurious, ill-fated R.M.S. Titanic.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0000116/">James Cameron</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0000138/">Leonardo DiCaprio</a>,
<a href="/name/nm0000701/">Kate Winslet</a>,
<a href="/name/nm0000708/">Billy Zane</a>,
<a href="/name/nm0000870/">Kathy Bates</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="1158914" name="nv">1,158,914</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="659,325,379" name="nv">$659.33M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0120338" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
<div class="list-description"><p>*****
Actors: 4.7 Stars
Direction: 4.9 Stars
Screenplay: 4.5 Stars<br/><br/>Oscars: 11
Oscar Nominations: 14
BAFTA Awards: 0
BAFTA Nominations: 8
Golden Globes: 4
Golden Globe Nominations: 8</p></div> </div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0045793">
<a href="/title/tt0045793/"> <img alt="From Here to Eternity" class="loadlate" data-tconst="tt0045793" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BM2U3YzkxNGMtYWE0YS00ODk0LTk1ZGEtNjk3ZTE0MTk4MzJjXkEyXkFqcGdeQXVyNDk0MDg4NDk@._V1_UY209_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">36.</span>
<a href="/title/tt0045793/">From Here to Eternity</a>
<span class="lister-item-year text-muted unbold">(1953)</span>
</h3>
<p class="text-muted text-small">
<span class="runtime">118 min</span>
<span class="ghost">|</span>
<span class="genre">
Drama, Romance, War </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7.6</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0045793" id="checkbox-tt0045793" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0045793">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0045793">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0045793">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">85 </span>
Metascore
</div>
<p class="">
At a U.S. Army base in 1941 Hawaii, a private is cruelly punished for not boxing on his unit's team, while his commanding officer's wife and top aide begin a tentative affair.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0003593/">Fred Zinnemann</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0000044/">Burt Lancaster</a>,
<a href="/name/nm0001050/">Montgomery Clift</a>,
<a href="/name/nm0000039/">Deborah Kerr</a>,
<a href="/name/nm0001656/">Donna Reed</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="47199" name="nv">47,199</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="30,500,000" name="nv">$30.50M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0045793" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
<div class="list-description"><p>Actors: 4.8 Stars
Direction: 5 Stars
Screenplay: 4.8 Stars<br/><br/>Oscars: 8
Oscar Nominations: 13
BAFTA Awards: 0
BAFTA Nominations: 1
Golden Globes: 2
Golden Globe Nominations: 2</p></div> </div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0120815">
<a href="/title/tt0120815/"> <img alt="Saving Private Ryan" class="loadlate" data-tconst="tt0120815" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BZjhkMDM4MWItZTVjOC00ZDRhLThmYTAtM2I5NzBmNmNlMzI1XkEyXkFqcGdeQXVyNDYyMDk5MTU@._V1_UY209_CR1,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">37.</span>
<a href="/title/tt0120815/">Saving Private Ryan</a>
<span class="lister-item-year text-muted unbold">(1998)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">A</span>
<span class="ghost">|</span>
<span class="runtime">169 min</span>
<span class="ghost">|</span>
<span class="genre">
Drama, War </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8.6</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0120815" id="checkbox-tt0120815" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0120815">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0120815">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0120815">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">91 </span>
Metascore
</div>
<p class="">
Following the Normandy Landings, a group of U.S. soldiers go behind enemy lines to retrieve a paratrooper whose brothers have been killed in action.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0000229/">Steven Spielberg</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0000158/">Tom Hanks</a>,
<a href="/name/nm0000354/">Matt Damon</a>,
<a href="/name/nm0001744/">Tom Sizemore</a>,
<a href="/name/nm0122653/">Edward Burns</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="1374138" name="nv">1,374,138</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="216,540,909" name="nv">$216.54M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0120815" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
<div class="list-description"><p>Actors: 4.9 Stars
Direction: 4.9 Stars
Screenplay: 4.9 Stars<br/><br/>Oscars: 5
Oscar Nominations: 11
BAFTA Awards: 2
BAFTA Nominations: 8
Golden Globes: 2
Golden Globe Nominations: 5</p></div> </div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0105695">
<a href="/title/tt0105695/"> <img alt="Unforgiven" class="loadlate" data-tconst="tt0105695" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BODM3YWY4NmQtN2Y3Ni00OTg0LWFhZGQtZWE3ZWY4MTJlOWU4XkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UX140_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">38.</span>
<a href="/title/tt0105695/">Unforgiven</a>
<span class="lister-item-year text-muted unbold">(1992)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">A</span>
<span class="ghost">|</span>
<span class="runtime">130 min</span>
<span class="ghost">|</span>
<span class="genre">
Drama, Western </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8.2</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0105695" id="checkbox-tt0105695" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0105695">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0105695">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0105695">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">85 </span>
Metascore
</div>
<p class="">
Retired Old West gunslinger William Munny reluctantly takes on one last job, with the help of his old partner Ned Logan and a young man, The "Schofield Kid."</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0000142/">Clint Eastwood</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0000142/">Clint Eastwood</a>,
<a href="/name/nm0000432/">Gene Hackman</a>,
<a href="/name/nm0000151/">Morgan Freeman</a>,
<a href="/name/nm0001321/">Richard Harris</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="410057" name="nv">410,057</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="101,157,447" name="nv">$101.16M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0105695" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
<div class="list-description"><p>Actors: 4.8 Stars
Direction: 4.9 Stars
Screenplay: 4.9 Stars<br/><br/>Oscars: 4
Oscar Nominations: 9
BAFTA Awards: 1
BAFTA Nominations: 6
Golden Globes: 2
Golden Globe Nominations: 4</p></div> </div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0082971">
<a href="/title/tt0082971/"> <img alt="Raiders of the Lost Ark" class="loadlate" data-tconst="tt0082971" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BNTU2ODkyY2MtMjU1NC00NjE1LWEzYjgtMWQ3MzRhMTE0NDc0XkEyXkFqcGdeQXVyMjM4MzQ4OTQ@._V1_UY209_CR1,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">39.</span>
<a href="/title/tt0082971/">Raiders of the Lost Ark</a>
<span class="lister-item-year text-muted unbold">(1981)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">A</span>
<span class="ghost">|</span>
<span class="runtime">115 min</span>
<span class="ghost">|</span>
<span class="genre">
Action, Adventure </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8.4</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0082971" id="checkbox-tt0082971" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0082971">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0082971">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0082971">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">85 </span>
Metascore
</div>
<p class="">
Archaeology professor Indiana Jones ventures to seize a biblical artefact known as the Ark of the Covenant. While doing so, he puts up a fight against Renee and a troop of Nazis.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0000229/">Steven Spielberg</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0000148/">Harrison Ford</a>,
<a href="/name/nm0000261/">Karen Allen</a>,
<a href="/name/nm0293550/">Paul Freeman</a>,
<a href="/name/nm0722636/">John Rhys-Davies</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="957680" name="nv">957,680</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="248,159,971" name="nv">$248.16M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0082971" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
<div class="list-description"><p>Actors: 4.7 Stars
Direction: 4.9 Stars
Screenplay: 4.8 Stars<br/><br/>Oscars: 4
Oscar Nominations: 8
BAFTA Awards: 1
BAFTA Nominations: 6
Golden Globes: 0
Golden Globe Nominations: 1</p></div> </div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0075148">
<a href="/title/tt0075148/"> <img alt="Rocky" class="loadlate" data-tconst="tt0075148" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BNTBkMjg2MjYtYTZjOS00ODQ0LTg0MDEtM2FiNmJmOGU1NGEwXkEyXkFqcGdeQXVyMjUzOTY1NTc@._V1_UX140_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">40.</span>
<a href="/title/tt0075148/">Rocky</a>
<span class="lister-item-year text-muted unbold">(1976)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">U</span>
<span class="ghost">|</span>
<span class="runtime">120 min</span>
<span class="ghost">|</span>
<span class="genre">
Drama, Sport </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8.1</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0075148" id="checkbox-tt0075148" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0075148">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0075148">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0075148">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">70 </span>
Metascore
</div>
<p class="">
A small-time Philadelphia boxer gets a supremely rare chance to fight the world heavyweight champion in a bout in which he strives to go the distance for his self-respect.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0000814/">John G. Avildsen</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0000230/">Sylvester Stallone</a>,
<a href="/name/nm0001735/">Talia Shire</a>,
<a href="/name/nm0949350/">Burt Young</a>,
<a href="/name/nm0001835/">Carl Weathers</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="570761" name="nv">570,761</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="117,235,247" name="nv">$117.24M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0075148" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
<div class="list-description"><p>Actors: 4.6 Stars
Direction: 4.8 Stars
Screenplay: 4.6 Stars<br/><br/>Oscars: 3
Oscar Nominations: 10
BAFTA Awards: 0
BAFTA Nominations: 5
Golden Globes: 1
Golden Globe Nominations: 6</p></div> </div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0044081">
<a href="/title/tt0044081/"> <img alt="A Streetcar Named Desire" class="loadlate" data-tconst="tt0044081" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BNzk2M2Y3MzYtNGMzMi00Y2FjLTkwODQtNmExYWU3ZWY3NzExXkEyXkFqcGdeQXVyNTA4NzY1MzY@._V1_UX140_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">41.</span>
<a href="/title/tt0044081/">A Streetcar Named Desire</a>
<span class="lister-item-year text-muted unbold">(1951)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">A</span>
<span class="ghost">|</span>
<span class="runtime">122 min</span>
<span class="ghost">|</span>
<span class="genre">
Drama </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7.9</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0044081" id="checkbox-tt0044081" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0044081">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0044081">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0044081">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">97 </span>
Metascore
</div>
<p class="">
Disturbed Blanche DuBois moves in with her sister in New Orleans and is tormented by her brutish brother-in-law while her reality crumbles around her.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0001415/">Elia Kazan</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0000046/">Vivien Leigh</a>,
<a href="/name/nm0000008/">Marlon Brando</a>,
<a href="/name/nm0001375/">Kim Hunter</a>,
<a href="/name/nm0001500/">Karl Malden</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="108296" name="nv">108,296</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="8,000,000" name="nv">$8.00M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0044081" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
<div class="list-description"><p>Actors: 4.9 Stars
Direction: 4.9 Stars
Screenplay: 4.9 Stars<br/><br/>Oscars: 4
Oscar Nominations: 12
BAFTA Awards: 1
BAFTA Nominations: 2
Golden Globes: 1
Golden Globe Nominations: 3</p></div> </div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0032904">
<a href="/title/tt0032904/"> <img alt="The Philadelphia Story" class="loadlate" data-tconst="tt0032904" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BYjQ4ZDA4NGMtMTkwYi00NThiLThhZDUtZTEzNTAxOWYyY2E4XkEyXkFqcGdeQXVyMjUxODE0MDY@._V1_UY209_CR1,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">42.</span>
<a href="/title/tt0032904/">The Philadelphia Story</a>
<span class="lister-item-year text-muted unbold">(1940)</span>
</h3>
<p class="text-muted text-small">
<span class="runtime">112 min</span>
<span class="ghost">|</span>
<span class="genre">
Comedy, Romance </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7.9</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0032904" id="checkbox-tt0032904" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0032904">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0032904">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0032904">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">96 </span>
Metascore
</div>
<p class="">
When a rich woman's ex-husband and a tabloid-type reporter turn up just before her planned remarriage, she begins to learn the truth about herself.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0002030/">George Cukor</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0000026/">Cary Grant</a>,
<a href="/name/nm0000031/">Katharine Hepburn</a>,
<a href="/name/nm0000071/">James Stewart</a>,
<a href="/name/nm0404046/">Ruth Hussey</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="69416" name="nv">69,416</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0032904" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
<div class="list-description"><p>Actors: 4.9 Stars
Direction: 4.8 Stars
Screenplay: 4.8 Stars<br/><br/>Oscars: 2
Oscar Nominations: 6
BAFTA Awards: N/A
BAFTA Nominations: N/A
Golden Globes: N/A
Golden Globe Nominations: N/A</p></div> </div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0056592">
<a href="/title/tt0056592/"> <img alt="To Kill a Mockingbird" class="loadlate" data-tconst="tt0056592" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BNmVmYzcwNzMtMWM1NS00MWIyLThlMDEtYzUwZDgzODE1NmE2XkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_UX140_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">43.</span>
<a href="/title/tt0056592/">To Kill a Mockingbird</a>
<span class="lister-item-year text-muted unbold">(1962)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">U</span>
<span class="ghost">|</span>
<span class="runtime">129 min</span>
<span class="ghost">|</span>
<span class="genre">
Crime, Drama </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8.3</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0056592" id="checkbox-tt0056592" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0056592">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0056592">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0056592">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">88 </span>
Metascore
</div>
<p class="">
Atticus Finch, a widowed lawyer in Depression-era Alabama, defends a black man against an undeserved rape charge, and his children against prejudice.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0612322/">Robert Mulligan</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0000060/">Gregory Peck</a>,
<a href="/name/nm0576345/">John Megna</a>,
<a href="/name/nm0653942/">Frank Overton</a>,
<a href="/name/nm0614677/">Rosemary Murphy</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="315424" name="nv">315,424</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0056592" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
<div class="list-description"><p>Actors: 4.8 Stars
Direction: 4.8 Stars
Screenplay: 4.7 Stars<br/><br/>Oscars: 3
Oscar Nominations: 8
BAFTA Awards: 0
BAFTA Nominations: 2
Golden Globes: 3
Golden Globe Nominations: 5</p></div> </div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0043278">
<a href="/title/tt0043278/"> <img alt="An American in Paris" class="loadlate" data-tconst="tt0043278" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BMzFkNGM0YTUtZjY5Ny00NzBkLWE1NTAtYzUxNjUyZmJlODMwL2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_UX140_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">44.</span>
<a href="/title/tt0043278/">An American in Paris</a>
<span class="lister-item-year text-muted unbold">(1951)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">U</span>
<span class="ghost">|</span>
<span class="runtime">114 min</span>
<span class="ghost">|</span>
<span class="genre">
Drama, Musical, Romance </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7.2</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0043278" id="checkbox-tt0043278" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0043278">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0043278">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0043278">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">83 </span>
Metascore
</div>
<p class="">
Three friends struggle to find work in Paris. Things become more complicated when two of them fall in love with the same woman.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0591486/">Vincente Minnelli</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0000037/">Gene Kelly</a>,
<a href="/name/nm0001989/">Leslie Caron</a>,
<a href="/name/nm0505157/">Oscar Levant</a>,
<a href="/name/nm0350250/">Georges Guétary</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="34047" name="nv">34,047</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="4,500,000" name="nv">$4.50M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0043278" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
<div class="list-description"><p>Actors: 4.8 Stars
Direction: 4.8 Stars
Screenplay: 4.9 Stars<br/><br/>Oscars: 6
Oscar Nominations: 8
BAFTA Awards: 0
BAFTA Nominations: 1
Golden Globes: 1
Golden Globe Nominations: 3</p></div> </div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0036868">
<a href="/title/tt0036868/"> <img alt="The Best Years of Our Lives" class="loadlate" data-tconst="tt0036868" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BY2RmNTRjYzctODI4Ni00MzQyLWEyNTAtNjU0N2JkMTNhNjJkXkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UX140_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">45.</span>
<a href="/title/tt0036868/">The Best Years of Our Lives</a>
<span class="lister-item-year text-muted unbold">(1946)</span>
</h3>
<p class="text-muted text-small">
<span class="runtime">170 min</span>
<span class="ghost">|</span>
<span class="genre">
Drama, Romance, War </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8.1</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0036868" id="checkbox-tt0036868" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0036868">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0036868">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0036868">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">93 </span>
Metascore
</div>
<p class="">
Three World War II veterans, two of them traumatized or disabled, return home to the American midwest to discover that they and their families have been irreparably changed.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0943758/">William Wyler</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0001485/">Myrna Loy</a>,
<a href="/name/nm0000763/">Dana Andrews</a>,
<a href="/name/nm0545298/">Fredric March</a>,
<a href="/name/nm0942863/">Teresa Wright</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="64564" name="nv">64,564</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="23,650,000" name="nv">$23.65M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0036868" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
<div class="list-description"><p>Actors: 4.8 Stars
Direction: 4.9 Stars
Screenplay: 4.9 Stars<br/><br/>Oscars: 7
Oscar Nominations: 8
BAFTA Awards: 1
BAFTA Nominations: 1
Golden Globes: 1
Golden Globe Nominations: 1</p></div> </div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0058385">
<a href="/title/tt0058385/"> <img alt="My Fair Lady" class="loadlate" data-tconst="tt0058385" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BNGM0ZTU3NmItZmRmMy00YWNjLWEzMWItYzg3MzcwZmM5NjdiXkEyXkFqcGdeQXVyNDYyMDk5MTU@._V1_UY209_CR6,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">46.</span>
<a href="/title/tt0058385/">My Fair Lady</a>
<span class="lister-item-year text-muted unbold">(1964)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">U</span>
<span class="ghost">|</span>
<span class="runtime">170 min</span>
<span class="ghost">|</span>
<span class="genre">
Drama, Family, Musical </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7.8</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0058385" id="checkbox-tt0058385" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0058385">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0058385">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0058385">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">95 </span>
Metascore
</div>
<p class="">
In 1910s London, snobbish phonetics professor Henry Higgins agrees to a wager that he can make crude flower girl, Eliza Doolittle, presentable in high society.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0002030/">George Cukor</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0000030/">Audrey Hepburn</a>,
<a href="/name/nm0001322/">Rex Harrison</a>,
<a href="/name/nm0391361/">Stanley Holloway</a>,
<a href="/name/nm0405035/">Wilfrid Hyde-White</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="95607" name="nv">95,607</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="72,000,000" name="nv">$72.00M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0058385" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
<div class="list-description"><p>Actors: 4.9 Stars
Direction: 4.9 Stars
Screenplay: 4.8 Stars<br/><br/>Oscars: 8
Oscar Nominations: 12
BAFTA Awards: 1
BAFTA Nominations: 2
Golden Globes: 3
Golden Globe Nominations: 5</p></div> </div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0066921">
<a href="/title/tt0066921/"> <img alt="A Clockwork Orange" class="loadlate" data-tconst="tt0066921" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BMTY3MjM1Mzc4N15BMl5BanBnXkFtZTgwODM0NzAxMDE@._V1_UY209_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">47.</span>
<a href="/title/tt0066921/">A Clockwork Orange</a>
<span class="lister-item-year text-muted unbold">(1971)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">A</span>
<span class="ghost">|</span>
<span class="runtime">136 min</span>
<span class="ghost">|</span>
<span class="genre">
Crime, Sci-Fi </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8.3</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0066921" id="checkbox-tt0066921" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0066921">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0066921">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0066921">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">77 </span>
Metascore
</div>
<p class="">
In the future, a sadistic gang leader is imprisoned and volunteers for a conduct-aversion experiment, but it doesn't go as planned.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0000040/">Stanley Kubrick</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0000532/">Malcolm McDowell</a>,
<a href="/name/nm0535861/">Patrick Magee</a>,
<a href="/name/nm0060988/">Michael Bates</a>,
<a href="/name/nm0165049/">Warren Clarke</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="822518" name="nv">822,518</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="6,207,725" name="nv">$6.21M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0066921" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
<div class="list-description"><p>Actors: 5 Stars
Direction: 5 Stars
Screenplay: 5 Stars<br/><br/>Oscars: 0
Oscar Nominations: 4
BAFTA Awards: 0
BAFTA Nominations: 7
Golden Globes: 0
Golden Globe Nominations: 3</p></div> </div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0059113">
<a href="/title/tt0059113/"> <img alt="Doctor Zhivago" class="loadlate" data-tconst="tt0059113" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BNzdmZTk4MTktZmExNi00OWEwLTgxZDctNTE4NWMwNjc1Nzg2XkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_UX140_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">48.</span>
<a href="/title/tt0059113/">Doctor Zhivago</a>
<span class="lister-item-year text-muted unbold">(1965)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">A</span>
<span class="ghost">|</span>
<span class="runtime">197 min</span>
<span class="ghost">|</span>
<span class="genre">
Drama, Romance, War </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7.9</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0059113" id="checkbox-tt0059113" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0059113">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0059113">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0059113">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">69 </span>
Metascore
</div>
<p class="">
The life of a Russian physician and poet who, although married to another, falls in love with a political activist's wife and experiences hardship during World War I and then the October Revolution.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0000180/">David Lean</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0001725/">Omar Sharif</a>,
<a href="/name/nm0001046/">Julie Christie</a>,
<a href="/name/nm0001036/">Geraldine Chaplin</a>,
<a href="/name/nm0001768/">Rod Steiger</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="76701" name="nv">76,701</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="111,722,000" name="nv">$111.72M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0059113" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
<div class="list-description"><p>Actors: 5 Stars
Direction: 5 Stars
Screenplay: 5 Stars<br/><br/>Oscars: 5
Oscar Nominations: 10
BAFTA Awards: 0
BAFTA Nominations: 3
Golden Globes: 5
Golden Globe Nominations: 6</p></div> </div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0049730">
<a href="/title/tt0049730/"> <img alt="The Searchers" class="loadlate" data-tconst="tt0049730" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BYWQ3YWJiMDEtMDBhNS00YjY1LTkzNmEtY2U4Njg4MjQ3YWE3XkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_UX140_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">49.</span>
<a href="/title/tt0049730/">The Searchers</a>
<span class="lister-item-year text-muted unbold">(1956)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">U</span>
<span class="ghost">|</span>
<span class="runtime">119 min</span>
<span class="ghost">|</span>
<span class="genre">
Adventure, Drama, Western </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7.9</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0049730" id="checkbox-tt0049730" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0049730">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0049730">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0049730">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">94 </span>
Metascore
</div>
<p class="">
An American Civil War veteran embarks on a years-long journey to rescue his niece from the Comanches after the rest of his brother's family is massacred in a raid on their Texas farm.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0000406/">John Ford</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0000078/">John Wayne</a>,
<a href="/name/nm0001374/">Jeffrey Hunter</a>,
<a href="/name/nm0587256/">Vera Miles</a>,
<a href="/name/nm0000955/">Ward Bond</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="89455" name="nv">89,455</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0049730" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
<div class="list-description"><p>*****
Actors: 4.9 Stars
Direction: 5 Stars
Screenplay: 5 Stars<br/><br/>Oscars: 0
Oscar Nominations: 0
BAFTA Awards: 0
BAFTA Award Nominations: 0
Golden Globes: 0
Golden Globe Nominations: 0</p></div> </div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0073195">
<a href="/title/tt0073195/"> <img alt="Jaws" class="loadlate" data-tconst="tt0073195" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BMmVmODY1MzEtYTMwZC00MzNhLWFkNDMtZjAwM2EwODUxZTA5XkEyXkFqcGdeQXVyNTAyODkwOQ@@._V1_UX140_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">50.</span>
<a href="/title/tt0073195/">Jaws</a>
<span class="lister-item-year text-muted unbold">(1975)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">A</span>
<span class="ghost">|</span>
<span class="runtime">124 min</span>
<span class="ghost">|</span>
<span class="genre">
Adventure, Thriller </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8.1</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0073195" id="checkbox-tt0073195" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0073195">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0073195">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0073195">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">87 </span>
Metascore
</div>
<p class="">
When a killer shark unleashes chaos on a beach community off Cape Cod, it's up to a local sheriff, a marine biologist, and an old seafarer to hunt the beast down.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0000229/">Steven Spielberg</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0001702/">Roy Scheider</a>,
<a href="/name/nm0001727/">Robert Shaw</a>,
<a href="/name/nm0000377/">Richard Dreyfuss</a>,
<a href="/name/nm0308882/">Lorraine Gary</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="600522" name="nv">600,522</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="260,000,000" name="nv">$260.00M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0073195" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
<div class="list-description"><p>Actors: 4.7 Stars
Direction: 4.8 Stars
Screenplay: 4.7 Stars<br/><br/>Oscars: 3
Oscar Nominations: 4
BAFTA Awards: 0
BAFTA Nominations: 6
Golden Globes: 1
Golden Globe Nominations: 4</p></div> </div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0066206">
<a href="/title/tt0066206/"> <img alt="Patton" class="loadlate" data-tconst="tt0066206" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BMmNhZmJhMmYtNjlkMC00MjhjLTk1NzMtMTNlMzYzNjZlMjNiXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UX140_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">51.</span>
<a href="/title/tt0066206/">Patton</a>
<span class="lister-item-year text-muted unbold">(1970)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">U</span>
<span class="ghost">|</span>
<span class="runtime">172 min</span>
<span class="ghost">|</span>
<span class="genre">
Biography, Drama, War </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7.9</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0066206" id="checkbox-tt0066206" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0066206">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0066206">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0066206">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">91 </span>
Metascore
</div>
<p class="">
The World War II phase of the career of controversial American general <a href="/name/nm0666567">George S. Patton</a>.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0769874/">Franklin J. Schaffner</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0001715/">George C. Scott</a>,
<a href="/name/nm0001500/">Karl Malden</a>,
<a href="/name/nm0950079/">Stephen Young</a>,
<a href="/name/nm0835021/">Michael Strong</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="102226" name="nv">102,226</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="61,700,000" name="nv">$61.70M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0066206" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
<div class="list-description"><p>*****
Actors: 5 Stars
Direction: 5 Stars
Screenplay: 5 Stars<br/><br/>Oscars: 7
Oscar Nominations: 10
BAFTA Awards: 0
BAFTA Nominations: 2
Golden Globes: 1
Golden Globe Nominations: 3</p></div> </div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0064115">
<a href="/title/tt0064115/"> <img alt="Butch Cassidy and the Sundance Kid" class="loadlate" data-tconst="tt0064115" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BMTkyMTM2NDk5Nl5BMl5BanBnXkFtZTgwNzY1NzEyMDE@._V1_UY209_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">52.</span>
<a href="/title/tt0064115/">Butch Cassidy and the Sundance Kid</a>
<span class="lister-item-year text-muted unbold">(1969)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">U</span>
<span class="ghost">|</span>
<span class="runtime">110 min</span>
<span class="ghost">|</span>
<span class="genre">
Biography, Crime, Drama </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0064115" id="checkbox-tt0064115" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0064115">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0064115">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0064115">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">66 </span>
Metascore
</div>
<p class="">
Wyoming, early 1900s. Butch Cassidy and The Sundance Kid are the leaders of a band of outlaws. After a train robbery goes wrong they find themselves on the run with a posse hard on their heels. Their solution - escape to Bolivia.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0001351/">George Roy Hill</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0000056/">Paul Newman</a>,
<a href="/name/nm0000602/">Robert Redford</a>,
<a href="/name/nm0001684/">Katharine Ross</a>,
<a href="/name/nm0001510/">Strother Martin</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="215635" name="nv">215,635</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="102,308,889" name="nv">$102.31M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0064115" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
<div class="list-description"><p>*****
Actors: 4.6 Stars
Direction: 4.8 Stars
Screenplay: 4.7 Stars<br/><br/>Oscars: 4
Oscar Nominations: 7
BAFTA Awards: 8
BAFTA Nominations: 9
Golden Globes: 1
Golden Globe Nominations: 4</p></div> </div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0040897">
<a href="/title/tt0040897/"> <img alt="The Treasure of the Sierra Madre" class="loadlate" data-tconst="tt0040897" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BOTJlZWMxYzEtMjlkMS00ODE0LThlM2ItMDI3NGQ2YjhmMzkxXkEyXkFqcGdeQXVyMDI2NDg0NQ@@._V1_UX140_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">53.</span>
<a href="/title/tt0040897/">The Treasure of the Sierra Madre</a>
<span class="lister-item-year text-muted unbold">(1948)</span>
</h3>
<p class="text-muted text-small">
<span class="runtime">126 min</span>
<span class="ghost">|</span>
<span class="genre">
Adventure, Drama, Western </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8.2</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0040897" id="checkbox-tt0040897" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0040897">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0040897">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0040897">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">98 </span>
Metascore
</div>
<p class="">
Two down-on-their-luck Americans searching for work in 1920s Mexico convince an old prospector to help them mine for gold in the Sierra Madre Mountains.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0001379/">John Huston</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0000007/">Humphrey Bogart</a>,
<a href="/name/nm0404158/">Walter Huston</a>,
<a href="/name/nm0392529/">Tim Holt</a>,
<a href="/name/nm0071636/">Bruce Bennett</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="124852" name="nv">124,852</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="5,014,000" name="nv">$5.01M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0040897" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
<div class="list-description"><p>Actors: 4.7 Stars
Direction: 4.8 Stars
Screenplay: 4.8 Stars<br/><br/>Oscars: 3
Oscar Nominations: 4
BAFTA Awards: 0
BAFTA Nominations: 1
Golden Globes: 3
Golden Globe Nominations: 3</p></div> </div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0060196">
<a href="/title/tt0060196/"> <img alt="Il buono, il brutto, il cattivo" class="loadlate" data-tconst="tt0060196" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BNjJlYmNkZGItM2NhYy00MjlmLTk5NmQtNjg1NmM2ODU4OTMwXkEyXkFqcGdeQXVyMjUzOTY1NTc@._V1_UX140_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">54.</span>
<a href="/title/tt0060196/">Il buono, il brutto, il cattivo</a>
<span class="lister-item-year text-muted unbold">(1966)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">A</span>
<span class="ghost">|</span>
<span class="runtime">161 min</span>
<span class="ghost">|</span>
<span class="genre">
Adventure, Western </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8.8</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0060196" id="checkbox-tt0060196" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0060196">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0060196">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0060196">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">90 </span>
Metascore
</div>
<p class="">
A bounty hunting scam joins two men in an uneasy alliance against a third in a race to find a fortune in gold buried in a remote cemetery.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0001466/">Sergio Leone</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0000142/">Clint Eastwood</a>,
<a href="/name/nm0908919/">Eli Wallach</a>,
<a href="/name/nm0001812/">Lee Van Cleef</a>,
<a href="/name/nm0321294/">Aldo Giuffrè</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="754723" name="nv">754,723</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="6,100,000" name="nv">$6.10M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0060196" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
<div class="list-description"><p>Actors: 5 Stars
Direction: 5 Stars
Screenplay: 5 Stars<br/><br/>Oscars: 0
Oscar Nominations: 0
BAFTA Awards: 0
BAFTA Award Nominations: 0
Golden Globes: 0
Golden Globe Nominations: 0</p></div> </div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0053604">
<a href="/title/tt0053604/"> <img alt="The Apartment" class="loadlate" data-tconst="tt0053604" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BNzkwODFjNzItMmMwNi00MTU5LWE2MzktM2M4ZDczZGM1MmViXkEyXkFqcGdeQXVyNDY2MTk1ODk@._V1_UX140_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">55.</span>
<a href="/title/tt0053604/">The Apartment</a>
<span class="lister-item-year text-muted unbold">(1960)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">U</span>
<span class="ghost">|</span>
<span class="runtime">125 min</span>
<span class="ghost">|</span>
<span class="genre">
Comedy, Drama, Romance </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8.3</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0053604" id="checkbox-tt0053604" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0053604">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0053604">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0053604">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">94 </span>
Metascore
</div>
<p class="">
A Manhattan insurance clerk tries to rise in his company by letting its executives use his apartment for trysts, but complications and a romance of his own ensue.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0000697/">Billy Wilder</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0000493/">Jack Lemmon</a>,
<a href="/name/nm0000511/">Shirley MacLaine</a>,
<a href="/name/nm0534045/">Fred MacMurray</a>,
<a href="/name/nm0001827/">Ray Walston</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="180890" name="nv">180,890</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="18,600,000" name="nv">$18.60M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0053604" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
<div class="list-description"><p>Actors: 5 Stars
Direction: 5 Stars
Screenplay: 5 Stars<br/><br/>Oscars: 5
Oscar Nominations: 10
BAFTA Awards: 3
BAFTA Nominations: 3
Golden Globes: 3
Golden Globe Nominations: 4</p></div> </div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0091763">
<a href="/title/tt0091763/"> <img alt="Platoon" class="loadlate" data-tconst="tt0091763" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BMzRjZjdlMjQtODVkYS00N2YzLWJlYWYtMGVlN2E5MWEwMWQzXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UX140_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">56.</span>
<a href="/title/tt0091763/">Platoon</a>
<span class="lister-item-year text-muted unbold">(1986)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">UA</span>
<span class="ghost">|</span>
<span class="runtime">120 min</span>
<span class="ghost">|</span>
<span class="genre">
Drama, War </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8.1</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0091763" id="checkbox-tt0091763" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0091763">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0091763">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0091763">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">92 </span>
Metascore
</div>
<p class="">
Chris Taylor, a neophyte recruit in Vietnam, finds himself caught in a battle of wills between two sergeants, one good and the other evil. A shrewd examination of the brutality of war and the duality of man in conflict.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0000231/">Oliver Stone</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0000221/">Charlie Sheen</a>,
<a href="/name/nm0000297/">Tom Berenger</a>,
<a href="/name/nm0000353/">Willem Dafoe</a>,
<a href="/name/nm0202966/">Keith David</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="412357" name="nv">412,357</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="138,530,565" name="nv">$138.53M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0091763" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
<div class="list-description"><p>*****
Actors: 4.8 Stars
Direction: 5 Stars
Screenplay: 5 Stars<br/><br/>Oscars: 4
Oscar Nominations: 8
BAFTA Awards: 2
BAFTA Nominations: 3
Golden Globes: 3
Golden Globe Nominations: 4</p></div> </div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0044706">
<a href="/title/tt0044706/"> <img alt="High Noon" class="loadlate" data-tconst="tt0044706" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BOWIzZGUxZmItOThkMS00Y2QxLTg0MTYtMDdhMjRlNTNlYTI3L2ltYWdlXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_UX140_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">57.</span>
<a href="/title/tt0044706/">High Noon</a>
<span class="lister-item-year text-muted unbold">(1952)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">U</span>
<span class="ghost">|</span>
<span class="runtime">85 min</span>
<span class="ghost">|</span>
<span class="genre">
Drama, Thriller, Western </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0044706" id="checkbox-tt0044706" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0044706">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0044706">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0044706">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">89 </span>
Metascore
</div>
<p class="">
A town Marshal, despite the disagreements of his newlywed bride and the townspeople around him, must face a gang of deadly killers alone at "high noon" when the gang leader, an outlaw he "sent up" years ago, arrives on the noon train.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0003593/">Fred Zinnemann</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0000011/">Gary Cooper</a>,
<a href="/name/nm0000038/">Grace Kelly</a>,
<a href="/name/nm0593775/">Thomas Mitchell</a>,
<a href="/name/nm0000978/">Lloyd Bridges</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="104338" name="nv">104,338</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="9,450,000" name="nv">$9.45M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0044706" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
<div class="list-description"><p>*****
Actors: 4.6 Stars
Direction: 4.7 Stars
Screenplay: 4.7 Stars<br/><br/>Oscars: 4
Oscar Nominations: 7
BAFTA Awards: 0
BAFTA Nominations: 0
Golden Globes: 4
Golden Globe Nominations: 7</p></div> </div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0112573">
<a href="/title/tt0112573/"> <img alt="Braveheart" class="loadlate" data-tconst="tt0112573" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BMzkzMmU0YTYtOWM3My00YzBmLWI0YzctOGYyNTkwMWE5MTJkXkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_UY209_CR1,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">58.</span>
<a href="/title/tt0112573/">Braveheart</a>
<span class="lister-item-year text-muted unbold">(1995)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">A</span>
<span class="ghost">|</span>
<span class="runtime">178 min</span>
<span class="ghost">|</span>
<span class="genre">
Biography, Drama, History </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8.4</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0112573" id="checkbox-tt0112573" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0112573">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0112573">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0112573">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">68 </span>
Metascore
</div>
<p class="">
Scottish warrior William Wallace leads his countrymen in a rebellion to free his homeland from the tyranny of King Edward I of England.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0000154/">Mel Gibson</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0000154/">Mel Gibson</a>,
<a href="/name/nm0000521/">Sophie Marceau</a>,
<a href="/name/nm0001526/">Patrick McGoohan</a>,
<a href="/name/nm0005171/">Angus Macfadyen</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="1030137" name="nv">1,030,137</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="75,600,000" name="nv">$75.60M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0112573" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
<div class="list-description"><p>Actors: 4.7 Stars
Direction: 4.8 Stars
Screenplay: 4.7 Stars<br/><br/>Oscars: 5
Oscar Nominations: 10
BAFTA Awards: 3
BAFTA Nominations: 5
Golden Globes: 1
Golden Globe Nominations: 4</p></div> </div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0099348">
<a href="/title/tt0099348/"> <img alt="Dances with Wolves" class="loadlate" data-tconst="tt0099348" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BMTY3OTI5NDczN15BMl5BanBnXkFtZTcwNDA0NDY3Mw@@._V1_UX140_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">59.</span>
<a href="/title/tt0099348/">Dances with Wolves</a>
<span class="lister-item-year text-muted unbold">(1990)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">U</span>
<span class="ghost">|</span>
<span class="runtime">181 min</span>
<span class="ghost">|</span>
<span class="genre">
Adventure, Drama, Western </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0099348" id="checkbox-tt0099348" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0099348">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0099348">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0099348">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">72 </span>
Metascore
</div>
<p class="">
Lieutenant John Dunbar, assigned to a remote western Civil War outpost, befriends wolves and Native Americans, making him an intolerable aberration in the military.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0000126/">Kevin Costner</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0000126/">Kevin Costner</a>,
<a href="/name/nm0001521/">Mary McDonnell</a>,
<a href="/name/nm0001295/">Graham Greene</a>,
<a href="/name/nm0002110/">Rodney A. Grant</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="264569" name="nv">264,569</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="184,208,848" name="nv">$184.21M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0099348" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
<div class="list-description"><p>*****
Actors: 4.5 Stars
Direction: 4.8 Stars
Screenplay: 4.6 Stars<br/><br/>Oscars: 7
Oscar Nominations: 12
BAFTA Awards: 0
BAFTA Nominations: 9
Golden Globes: 3
Golden Globe Nominations: 6</p></div> </div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0107290">
<a href="/title/tt0107290/"> <img alt="Jurassic Park" class="loadlate" data-tconst="tt0107290" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BMjM2MDgxMDg0Nl5BMl5BanBnXkFtZTgwNTM2OTM5NDE@._V1_UX140_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">60.</span>
<a href="/title/tt0107290/">Jurassic Park</a>
<span class="lister-item-year text-muted unbold">(1993)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">UA</span>
<span class="ghost">|</span>
<span class="runtime">127 min</span>
<span class="ghost">|</span>
<span class="genre">
Action, Adventure, Sci-Fi </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8.2</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0107290" id="checkbox-tt0107290" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0107290">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0107290">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0107290">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">68 </span>
Metascore
</div>
<p class="">
A pragmatic paleontologist touring an almost complete theme park on an island in Central America is tasked with protecting a couple of kids after a power failure causes the park's cloned dinosaurs to run loose.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0000229/">Steven Spielberg</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0000554/">Sam Neill</a>,
<a href="/name/nm0000368/">Laura Dern</a>,
<a href="/name/nm0000156/">Jeff Goldblum</a>,
<a href="/name/nm0000277/">Richard Attenborough</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="978549" name="nv">978,549</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="402,453,882" name="nv">$402.45M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0107290" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
<div class="list-description"><p>Actors: 4.6 Stars
Direction: 4.9 Stars
Screenplay: 4.7 Stars<br/><br/>Oscars: 3
Oscar Nominations: 3
BAFTA Awards: 1
BAFTA Nominations: 2
Golden Globes: 0
Golden Globe Nominations: 0</p></div> </div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0070047">
<a href="/title/tt0070047/"> <img alt="The Exorcist" class="loadlate" data-tconst="tt0070047" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BYWFlZGY2NDktY2ZjOS00ZWNkLTg0ZDAtZDY4MTM1ODU4ZjljXkEyXkFqcGdeQXVyMjUzOTY1NTc@._V1_UX140_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">61.</span>
<a href="/title/tt0070047/">The Exorcist</a>
<span class="lister-item-year text-muted unbold">(1973)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">A</span>
<span class="ghost">|</span>
<span class="runtime">122 min</span>
<span class="ghost">|</span>
<span class="genre">
Horror </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8.1</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0070047" id="checkbox-tt0070047" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0070047">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0070047">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0070047">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">81 </span>
Metascore
</div>
<p class="">
When a teenage girl is possessed by a mysterious entity, her mother seeks the help of two priests to save her daughter.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0001243/">William Friedkin</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0000995/">Ellen Burstyn</a>,
<a href="/name/nm0001884/">Max von Sydow</a>,
<a href="/name/nm0000304/">Linda Blair</a>,
<a href="/name/nm0002011/">Lee J. Cobb</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="401942" name="nv">401,942</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="232,906,145" name="nv">$232.91M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0070047" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
<div class="list-description"><p>Actors: 4.8 Stars
Direction: 4.8 Stars
Screenplay: 4.8 Stars<br/><br/>Oscars: 2
Oscar Nominations: 10
BAFTA Awards: 0
BAFTA Nominations: 1
Golden Globes: 4
Golden Globe Nominations: 7</p></div> </div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0253474">
<a href="/title/tt0253474/"> <img alt="The Pianist" class="loadlate" data-tconst="tt0253474" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BOWRiZDIxZjktMTA1NC00MDQ2LWEzMjUtMTliZmY3NjQ3ODJiXkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UY209_CR5,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">62.</span>
<a href="/title/tt0253474/">The Pianist</a>
<span class="lister-item-year text-muted unbold">(2002)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">13</span>
<span class="ghost">|</span>
<span class="runtime">150 min</span>
<span class="ghost">|</span>
<span class="genre">
Biography, Drama, Music </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8.5</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0253474" id="checkbox-tt0253474" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0253474">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0253474">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0253474">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">85 </span>
Metascore
</div>
<p class="">
A Polish Jewish musician struggles to survive the destruction of the Warsaw ghetto of World War II.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0000591/">Roman Polanski</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0004778/">Adrien Brody</a>,
<a href="/name/nm0470981/">Thomas Kretschmann</a>,
<a href="/name/nm0277975/">Frank Finlay</a>,
<a href="/name/nm0288976/">Emilia Fox</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="821498" name="nv">821,498</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="32,572,577" name="nv">$32.57M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0253474" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
<div class="list-description"><p>*****
Actors: 4.9 Stars
Direction: 4.8 Stars
Screenplay: 4.7 Stars<br/><br/>Oscars: 3
Oscar Nominations: 7
BAFTA Awards: 1
BAFTA Nominations: 5
Golden Globes: 0
Golden Globe Nominations: 2</p></div> </div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0099685">
<a href="/title/tt0099685/"> <img alt="Goodfellas" class="loadlate" data-tconst="tt0099685" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BY2NkZjEzMDgtN2RjYy00YzM1LWI4ZmQtMjIwYjFjNmI3ZGEwXkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_UX140_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">63.</span>
<a href="/title/tt0099685/">Goodfellas</a>
<span class="lister-item-year text-muted unbold">(1990)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">A</span>
<span class="ghost">|</span>
<span class="runtime">145 min</span>
<span class="ghost">|</span>
<span class="genre">
Biography, Crime, Drama </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8.7</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0099685" id="checkbox-tt0099685" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0099685">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0099685">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0099685">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">90 </span>
Metascore
</div>
<p class="">
The story of <a href="/name/nm1453737">Henry Hill</a> and his life in the mob, covering his relationship with his wife Karen Hill and his mob partners Jimmy Conway and Tommy DeVito in the Italian-American crime syndicate.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0000217/">Martin Scorsese</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0000134/">Robert De Niro</a>,
<a href="/name/nm0000501/">Ray Liotta</a>,
<a href="/name/nm0000582/">Joe Pesci</a>,
<a href="/name/nm0000966/">Lorraine Bracco</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="1145195" name="nv">1,145,195</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="46,836,394" name="nv">$46.84M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0099685" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
<div class="list-description"><p>*****
Actors: 4.8 Stars
Direction: 4.9 Stars
Screenplay: 5 Stars<br/><br/>Oscars: 1
Oscar Nominations: 6
BAFTA Awards: 5
BAFTA Nominations: 7
Golden Globes: 0
Golden Globe Nominations: 5</p></div> </div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0077416">
<a href="/title/tt0077416/"> <img alt="The Deer Hunter" class="loadlate" data-tconst="tt0077416" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BNDhmNTA0ZDMtYjhkNS00NzEzLWIzYTItOGNkMTVmYjE2YmI3XkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_UY209_CR1,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">64.</span>
<a href="/title/tt0077416/">The Deer Hunter</a>
<span class="lister-item-year text-muted unbold">(1978)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">A</span>
<span class="ghost">|</span>
<span class="runtime">183 min</span>
<span class="ghost">|</span>
<span class="genre">
Drama, War </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8.1</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0077416" id="checkbox-tt0077416" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0077416">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0077416">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0077416">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">86 </span>
Metascore
</div>
<p class="">
An in-depth examination of the ways in which the Vietnam War impacts and disrupts the lives of several friends in a small steel mill town in Pennsylvania.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0001047/">Michael Cimino</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0000134/">Robert De Niro</a>,
<a href="/name/nm0000686/">Christopher Walken</a>,
<a href="/name/nm0001030/">John Cazale</a>,
<a href="/name/nm0001698/">John Savage</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="337992" name="nv">337,992</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="48,979,328" name="nv">$48.98M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0077416" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
<div class="list-description"><p>Actors: 5 Stars
Direction: 4.8 Stars
Screenplay: 4.9 Stars<br/><br/>Oscars: 5
Oscar Nominations: 9
BAFTA Awards: 2
BAFTA Nominations: 9
Golden Globes: 1
Golden Globe Nominations: 6</p></div> </div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0020629">
<a href="/title/tt0020629/"> <img alt="All Quiet on the Western Front" class="loadlate" data-tconst="tt0020629" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BMDdlMzRjM2MtNjcxNy00MjgyLTkyZmYtY2ExODM0OTBkMzI0XkEyXkFqcGdeQXVyMzg1ODEwNQ@@._V1_UX140_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">65.</span>
<a href="/title/tt0020629/">All Quiet on the Western Front</a>
<span class="lister-item-year text-muted unbold">(1930)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">U</span>
<span class="ghost">|</span>
<span class="runtime">152 min</span>
<span class="ghost">|</span>
<span class="genre">
Drama, War </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8.1</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0020629" id="checkbox-tt0020629" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0020629">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0020629">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0020629">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">91 </span>
Metascore
</div>
<p class="">
A German youth eagerly enters World War I, but his enthusiasm wanes as he gets a firsthand view of the horror.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0587277/">Lewis Milestone</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0000817/">Lew Ayres</a>,
<a href="/name/nm0938464/">Louis Wolheim</a>,
<a href="/name/nm0942046/">John Wray</a>,
<a href="/name/nm0524803/">Arnold Lucy</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="61616" name="nv">61,616</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="3,270,000" name="nv">$3.27M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0020629" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
<div class="list-description"><p>*****
Actors: 4.7 Stars
Direction: 4.9 Stars
Screenplay: 4.7 Stars<br/><br/>Oscars: 2
Oscar Nominations: 4
BAFTA Awards: N/A
BAFTA Nominations: N/A
Golden Globes: N/A
Golden Globe Nominations: N/A</p></div> </div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0061418">
<a href="/title/tt0061418/"> <img alt="Bonnie and Clyde" class="loadlate" data-tconst="tt0061418" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BMTNjNzBlY2QtNmY1Ni00MzhkLThmODgtMzc3ZDQ0YzJjZjNlXkEyXkFqcGdeQXVyMjUzOTY1NTc@._V1_UX140_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">66.</span>
<a href="/title/tt0061418/">Bonnie and Clyde</a>
<span class="lister-item-year text-muted unbold">(1967)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">A</span>
<span class="ghost">|</span>
<span class="runtime">111 min</span>
<span class="ghost">|</span>
<span class="genre">
Action, Biography, Crime </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7.7</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0061418" id="checkbox-tt0061418" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0061418">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0061418">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0061418">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">86 </span>
Metascore
</div>
<p class="">
Bored waitress <a href="/name/nm1369634">Bonnie Parker</a> falls in love with an ex-con named <a href="/name/nm1352425">Clyde Barrow</a> and together they start a violent crime spree through the country, stealing cars and robbing banks.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0671957/">Arthur Penn</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0000886/">Warren Beatty</a>,
<a href="/name/nm0001159/">Faye Dunaway</a>,
<a href="/name/nm0689488/">Michael J. Pollard</a>,
<a href="/name/nm0000432/">Gene Hackman</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="113101" name="nv">113,101</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0061418" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
<div class="list-description"><p>Actors: 4.8 Stars
Direction: 4.7 Stars
Screenplay: 4.8 Stars<br/><br/>Oscars: 2
Oscar Nominations: 10
BAFTA Awards: 2
BAFTA Nominations: 4
Golden Globes: 0
Golden Globe Nominations: 7</p></div> </div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0067116">
<a href="/title/tt0067116/"> <img alt="The French Connection" class="loadlate" data-tconst="tt0067116" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BOTZhY2E3NmItMGIwNi00OTA2LThkYmEtODFiZTM0NGI0ZWU5XkEyXkFqcGdeQXVyNTc1NTQxODI@._V1_UY209_CR4,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">67.</span>
<a href="/title/tt0067116/">The French Connection</a>
<span class="lister-item-year text-muted unbold">(1971)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">A</span>
<span class="ghost">|</span>
<span class="runtime">104 min</span>
<span class="ghost">|</span>
<span class="genre">
Action, Crime, Drama </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7.7</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0067116" id="checkbox-tt0067116" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0067116">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0067116">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0067116">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">94 </span>
Metascore
</div>
<p class="">
A pair of NYPD detectives in the Narcotics Bureau stumble onto a heroin smuggling ring based in Marseilles, but stopping them and capturing their leaders proves an elusive goal.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0001243/">William Friedkin</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0000432/">Gene Hackman</a>,
<a href="/name/nm0001702/">Roy Scheider</a>,
<a href="/name/nm0721073/">Fernando Rey</a>,
<a href="/name/nm0516215/">Tony Lo Bianco</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="122828" name="nv">122,828</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="15,630,710" name="nv">$15.63M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0067116" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
<div class="list-description"><p>*****
Actors: 4.9 Stars
Direction: 4.8 Stars
Screenplay: 4.8 Stars<br/><br/>Oscars: 5
Oscar Nominations: 8
BAFTA Awards: 2
BAFTA Nominations: 5
Golden Globes: 3
Golden Globe Nominations: 4</p></div> </div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0021749">
<a href="/title/tt0021749/"> <img alt="City Lights" class="loadlate" data-tconst="tt0021749" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BY2I4MmM1N2EtM2YzOS00OWUzLTkzYzctNDc5NDg2N2IyODJmXkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_UX140_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">68.</span>
<a href="/title/tt0021749/">City Lights</a>
<span class="lister-item-year text-muted unbold">(1931)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">G</span>
<span class="ghost">|</span>
<span class="runtime">87 min</span>
<span class="ghost">|</span>
<span class="genre">
Comedy, Drama, Romance </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8.5</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0021749" id="checkbox-tt0021749" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0021749">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0021749">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0021749">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">99 </span>
Metascore
</div>
<p class="">
With the aid of a wealthy erratic tippler, a dewy-eyed tramp who has fallen in love with a sightless flower girl accumulates money to be able to help her medically.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0000122/">Charles Chaplin</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0000122/">Charles Chaplin</a>,
<a href="/name/nm0156039/">Virginia Cherrill</a>,
<a href="/name/nm5681967/">Florence Lee</a>,
<a href="/name/nm0616729/">Harry Myers</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="184061" name="nv">184,061</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="19,181" name="nv">$0.02M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0021749" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
<div class="list-description"><p>*****
Actors: 4.9 Stars
Direction: 4.9 Stars
Screenplay: 4.8 Stars<br/><br/>Oscars: 0
Oscar Nominations: 0
BAFTA Awards: N/A
BAFTA Nominations: N/A
Golden Globes: N/A
Golden Globe Nominations: N/A</p></div> </div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0025316">
<a href="/title/tt0025316/"> <img alt="It Happened One Night" class="loadlate" data-tconst="tt0025316" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BYzJmMWE5NjAtNWMyZS00NmFiLWIwMDgtZDE2NzczYWFhNzIzXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_UX140_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">69.</span>
<a href="/title/tt0025316/">It Happened One Night</a>
<span class="lister-item-year text-muted unbold">(1934)</span>
</h3>
<p class="text-muted text-small">
<span class="runtime">105 min</span>
<span class="ghost">|</span>
<span class="genre">
Comedy, Romance </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8.1</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0025316" id="checkbox-tt0025316" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0025316">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0025316">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0025316">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">87 </span>
Metascore
</div>
<p class="">
A renegade reporter trailing a young runaway heiress for a big story joins her on a bus heading from Florida to New York, and they end up stuck with each other when the bus leaves them behind at one of the stops.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0001008/">Frank Capra</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0000022/">Clark Gable</a>,
<a href="/name/nm0001055/">Claudette Colbert</a>,
<a href="/name/nm0175369/">Walter Connolly</a>,
<a href="/name/nm0439850/">Roscoe Karns</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="103817" name="nv">103,817</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="4,360,000" name="nv">$4.36M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0025316" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
<div class="list-description"><p>*****
Actors: 4.7 Stars
Direction: 4.8 Stars
Screenplay: 4.8 Stars<br/><br/>Oscars: 5
Oscar Nominations: 5
BAFTA Awards: N/A
BAFTA Nominations: N/A
Golden Globes: N/A
Golden Globe Nominations: N/A</p></div> </div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0043924">
<a href="/title/tt0043924/"> <img alt="A Place in the Sun" class="loadlate" data-tconst="tt0043924" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BMmNjMjE2ZDMtODQzYS00ZDc2LTk0ODgtNjI1NTNhZWI5MmE0XkEyXkFqcGdeQXVyNjUwNzk3NDc@._V1_UX140_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">70.</span>
<a href="/title/tt0043924/">A Place in the Sun</a>
<span class="lister-item-year text-muted unbold">(1951)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">A</span>
<span class="ghost">|</span>
<span class="runtime">122 min</span>
<span class="ghost">|</span>
<span class="genre">
Drama, Romance </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7.7</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0043924" id="checkbox-tt0043924" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0043924">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0043924">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0043924">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">76 </span>
Metascore
</div>
<p class="">
A poor boy gets a job working for his rich uncle and ends up falling in love with two women.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0828419/">George Stevens</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0001050/">Montgomery Clift</a>,
<a href="/name/nm0000072/">Elizabeth Taylor</a>,
<a href="/name/nm0001859/">Shelley Winters</a>,
<a href="/name/nm0720843/">Anne Revere</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="22807" name="nv">22,807</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0043924" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
<div class="list-description"><p>*****
Actors: 4.6 Stars
Direction: 4.8 Stars
Screenplay: 4.7 Stars<br/><br/>Oscars: 6
Oscar Nominations: 9
BAFTA Awards: 0
BAFTA Nominations: 0
Golden Globes: 1
Golden Globe Nominations: 4</p></div> </div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0064665">
<a href="/title/tt0064665/"> <img alt="Midnight Cowboy" class="loadlate" data-tconst="tt0064665" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BZmFlZDZmMTYtZjczOS00M2M0LWIxYzItYmRjM2IxYTg4NDg2XkEyXkFqcGdeQXVyMjUzOTY1NTc@._V1_UX140_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">71.</span>
<a href="/title/tt0064665/">Midnight Cowboy</a>
<span class="lister-item-year text-muted unbold">(1969)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">A</span>
<span class="ghost">|</span>
<span class="runtime">113 min</span>
<span class="ghost">|</span>
<span class="genre">
Drama </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7.8</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0064665" id="checkbox-tt0064665" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0064665">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0064665">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0064665">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">79 </span>
Metascore
</div>
<p class="">
A naive hustler travels from Texas to New York City to seek personal fortune, finding a new friend in the process.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0772259/">John Schlesinger</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0000163/">Dustin Hoffman</a>,
<a href="/name/nm0000685/">Jon Voight</a>,
<a href="/name/nm0587249/">Sylvia Miles</a>,
<a href="/name/nm0569410/">John McGiver</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="111047" name="nv">111,047</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="44,785,053" name="nv">$44.79M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0064665" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
<div class="list-description"><p>*****
Actors: 4.8 Stars
Direction: 4.7 Stars
Screenplay: 4.9 Stars<br/><br/>Oscars: 3
Oscar Nominations: 7
BAFTA Awards: 6
BAFTA Nominations: 6
Golden Globes: 1
Golden Globe Nominations: 7</p></div> </div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0031679">
<a href="/title/tt0031679/"> <img alt="Mr. Smith Goes to Washington" class="loadlate" data-tconst="tt0031679" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BZTYwYjYxYzgtMDE1Ni00NzU4LWJlMTEtODQ5YmJmMGJhZjI5L2ltYWdlXkEyXkFqcGdeQXVyMDI2NDg0NQ@@._V1_UX140_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">72.</span>
<a href="/title/tt0031679/">Mr. Smith Goes to Washington</a>
<span class="lister-item-year text-muted unbold">(1939)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">U</span>
<span class="ghost">|</span>
<span class="runtime">129 min</span>
<span class="ghost">|</span>
<span class="genre">
Comedy, Drama </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8.1</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0031679" id="checkbox-tt0031679" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0031679">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0031679">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0031679">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">73 </span>
Metascore
</div>
<p class="">
A naive youth leader is appointed to fill a vacancy in the U.S. Senate. His idealistic plans promptly collide with corruption at home and subterfuge from his hero in Washington, but he tries to forge ahead despite attacks on his character.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0001008/">Frank Capra</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0000071/">James Stewart</a>,
<a href="/name/nm0000795/">Jean Arthur</a>,
<a href="/name/nm0001647/">Claude Rains</a>,
<a href="/name/nm0036427/">Edward Arnold</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="115626" name="nv">115,626</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="9,600,000" name="nv">$9.60M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0031679" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
<div class="list-description"><p>Actors: 4.8 Stars
Direction: 4.8 Stars
Screenplay: 4.8 Stars<br/><br/>Oscars: 1
Oscar Nominations: 11
BAFTA Awards: N/A
BAFTA Nominations: N/A
Golden Globes: N/A
Golden Globe Nominations: N/A</p></div> </div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0095953">
<a href="/title/tt0095953/"> <img alt="Rain Man" class="loadlate" data-tconst="tt0095953" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BMzVjNzI4NzYtMjE4NS00M2IzLWFkOWMtOTYwMWUzN2ZlNGVjL2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UX140_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">73.</span>
<a href="/title/tt0095953/">Rain Man</a>
<span class="lister-item-year text-muted unbold">(1988)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">U</span>
<span class="ghost">|</span>
<span class="runtime">133 min</span>
<span class="ghost">|</span>
<span class="genre">
Drama </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0095953" id="checkbox-tt0095953" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0095953">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0095953">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0095953">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">65 </span>
Metascore
</div>
<p class="">
After a selfish L.A. yuppie learns his estranged father left a fortune to an autistic-savant brother in Ohio that he didn't know existed, he absconds with his brother and sets out across the country, hoping to gain a larger inheritance.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0001469/">Barry Levinson</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0000163/">Dustin Hoffman</a>,
<a href="/name/nm0000129/">Tom Cruise</a>,
<a href="/name/nm0000420/">Valeria Golino</a>,
<a href="/name/nm0596520/">Gerald R. Molen</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="511696" name="nv">511,696</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="178,800,000" name="nv">$178.80M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0095953" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
<div class="list-description"><p>Actors: 5 Stars
Direction: 4.9 Stars
Screenplay: 4.8 Stars<br/><br/>Oscars: 4
Oscar Nominations: 8
BAFTA Awards: 0
BAFTA Nominations: 3
Golden Globes: 2
Golden Globe Nominations: 4</p></div> </div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0075686">
<a href="/title/tt0075686/"> <img alt="Annie Hall" class="loadlate" data-tconst="tt0075686" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BZDg1OGQ4YzgtM2Y2NS00NjA3LWFjYTctMDRlMDI3NWE1OTUyXkEyXkFqcGdeQXVyMjUzOTY1NTc@._V1_UX140_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">74.</span>
<a href="/title/tt0075686/">Annie Hall</a>
<span class="lister-item-year text-muted unbold">(1977)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">A</span>
<span class="ghost">|</span>
<span class="runtime">93 min</span>
<span class="ghost">|</span>
<span class="genre">
Comedy, Romance </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0075686" id="checkbox-tt0075686" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0075686">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0075686">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0075686">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">92 </span>
Metascore
</div>
<p class="">
Alvy Singer, a divorced Jewish comedian, reflects on his relationship with ex-lover Annie Hall, an aspiring nightclub singer, which ended abruptly just like his previous marriages.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0000095/">Woody Allen</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0000095/">Woody Allen</a>,
<a href="/name/nm0000473/">Diane Keaton</a>,
<a href="/name/nm0731634/">Tony Roberts</a>,
<a href="/name/nm0001406/">Carol Kane</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="265202" name="nv">265,202</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="39,200,000" name="nv">$39.20M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0075686" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
<div class="list-description"><p>*****
Actors: 4.8 Stars
Direction: 5 Stars
Screenplay: 4.9 Stars<br/><br/>Oscars: 4
Oscar Nominations: 5
BAFTA Awards: 5
BAFTA Nominations: 6
Golden Globes: 1
Golden Globe Nominations: 5</p></div> </div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0116282">
<a href="/title/tt0116282/"> <img alt="Fargo" class="loadlate" data-tconst="tt0116282" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BNDJiZDgyZjctYmRjMS00ZjdkLTkwMTEtNGU1NDg3NDQ0Yzk1XkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_UY209_CR1,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">75.</span>
<a href="/title/tt0116282/">Fargo</a>
<span class="lister-item-year text-muted unbold">(1996)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">A</span>
<span class="ghost">|</span>
<span class="runtime">98 min</span>
<span class="ghost">|</span>
<span class="genre">
Crime, Thriller </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8.1</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0116282" id="checkbox-tt0116282" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0116282">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0116282">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0116282">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">85 </span>
Metascore
</div>
<p class="">
Minnesota car salesman Jerry Lundegaard's inept crime falls apart due to his and his henchmen's bungling and the persistent police work of the quite pregnant Marge Gunderson.</p>
<p class="text-muted text-small">
Directors:
<a href="/name/nm0001054/">Joel Coen</a>,
<a href="/name/nm0001053/">Ethan Coen</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0000513/">William H. Macy</a>,
<a href="/name/nm0000531/">Frances McDormand</a>,
<a href="/name/nm0000114/">Steve Buscemi</a>,
<a href="/name/nm0001780/">Peter Stormare</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="673480" name="nv">673,480</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="24,611,975" name="nv">$24.61M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0116282" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
<div class="list-description"><p>Actors: 5 Stars
Direction: 5 Stars
Screenplay: 5 Stars<br/><br/>Oscars: 2
Oscar Nominations: 7
BAFTA Awards: 1
BAFTA Nominations: 6
Golden Globes: 0
Golden Globe Nominations: 4</p></div> </div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0049261">
<a href="/title/tt0049261/"> <img alt="Giant" class="loadlate" data-tconst="tt0049261" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BMDQwOWQ0OGItNjJjYi00YzVjLTk4NmUtYzQ0NzUwZGY3NDZjXkEyXkFqcGdeQXVyMjUzOTY1NTc@._V1_UX140_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">76.</span>
<a href="/title/tt0049261/">Giant</a>
<span class="lister-item-year text-muted unbold">(1956)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">U</span>
<span class="ghost">|</span>
<span class="runtime">201 min</span>
<span class="ghost">|</span>
<span class="genre">
Drama, Western </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7.6</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0049261" id="checkbox-tt0049261" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0049261">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0049261">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0049261">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">84 </span>
Metascore
</div>
<p class="">
Sprawling epic covering the life of a Texas cattle rancher and his family and associates.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0828419/">George Stevens</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0000072/">Elizabeth Taylor</a>,
<a href="/name/nm0001369/">Rock Hudson</a>,
<a href="/name/nm0000015/">James Dean</a>,
<a href="/name/nm0004647/">Carroll Baker</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="39235" name="nv">39,235</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0049261" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
<div class="list-description"><p>*****
Actors: 4.8 Stars
Direction: 4.7 Stars
Screenplay: 4.8 Stars<br/><br/>Oscars: 1
Oscar Nominations: 10
BAFTA Awards: 0
BAFTA Nominations: 0
Golden Globes: 0
Golden Globe Nominations: 1</p></div> </div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0046303">
<a href="/title/tt0046303/"> <img alt="Shane" class="loadlate" data-tconst="tt0046303" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BYzMzZmJjZGItMjY2OC00ZDcxLWI1YjQtMTU1MjQwN2NlNzIyXkEyXkFqcGdeQXVyMDI2NDg0NQ@@._V1_UX140_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">77.</span>
<a href="/title/tt0046303/">Shane</a>
<span class="lister-item-year text-muted unbold">(1953)</span>
</h3>
<p class="text-muted text-small">
<span class="runtime">118 min</span>
<span class="ghost">|</span>
<span class="genre">
Drama, Western </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7.6</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0046303" id="checkbox-tt0046303" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0046303">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0046303">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0046303">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">80 </span>
Metascore
</div>
<p class="">
A weary gunfighter in 1880s Wyoming begins to envision a quieter life after befriending a homestead family with a young son who idolizes him, but a smoldering range war forces him to act.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0828419/">George Stevens</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0000042/">Alan Ladd</a>,
<a href="/name/nm0000795/">Jean Arthur</a>,
<a href="/name/nm0001336/">Van Heflin</a>,
<a href="/name/nm0001121/">Brandon De Wilde</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="40885" name="nv">40,885</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="20,000,000" name="nv">$20.00M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0046303" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
<div class="list-description"><p>Actors: 4.7 Stars
Direction: 4.8 Stars
Screenplay: 4.7 Stars<br/><br/>Oscars: 1
Oscar Nominations: 6
BAFTA Awards: 0
BAFTA Nominations: 2
Golden Globes: 0
Golden Globe Nominations: 0</p></div> </div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0032551">
<a href="/title/tt0032551/"> <img alt="The Grapes of Wrath" class="loadlate" data-tconst="tt0032551" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BNzJiOGI2MjctYjUyMS00ZjkzLWE2ZmUtOTg4NTZkOTNhZDc1L2ltYWdlXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_UY209_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">78.</span>
<a href="/title/tt0032551/">The Grapes of Wrath</a>
<span class="lister-item-year text-muted unbold">(1940)</span>
</h3>
<p class="text-muted text-small">
<span class="runtime">129 min</span>
<span class="ghost">|</span>
<span class="genre">
Drama </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8.1</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0032551" id="checkbox-tt0032551" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0032551">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0032551">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0032551">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">96 </span>
Metascore
</div>
<p class="">
An Oklahoma family, driven off their farm by the poverty and hopelessness of the Dust Bowl, joins the westward migration to California, suffering the misfortunes of the homeless in the Great Depression.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0000406/">John Ford</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0000020/">Henry Fonda</a>,
<a href="/name/nm0002034/">Jane Darwell</a>,
<a href="/name/nm0001017/">John Carradine</a>,
<a href="/name/nm0335788/">Charley Grapewin</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="93224" name="nv">93,224</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="55,000" name="nv">$0.06M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0032551" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
<div class="list-description"><p>Actors: 4.6 Stars
Direction: 4.8 Stars
Screenplay: 4.7 Stars<br/><br/>Oscars: 2
Oscar Nominations: 7
BAFTA Awards: N/A
BAFTA Nominations: N/A
Golden Globes: N/A
Golden Globe Nominations: N/A</p></div> </div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0120689">
<a href="/title/tt0120689/"> <img alt="The Green Mile" class="loadlate" data-tconst="tt0120689" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BMTUxMzQyNjA5MF5BMl5BanBnXkFtZTYwOTU2NTY3._V1_UY209_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">79.</span>
<a href="/title/tt0120689/">The Green Mile</a>
<span class="lister-item-year text-muted unbold">(1999)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">UA</span>
<span class="ghost">|</span>
<span class="runtime">189 min</span>
<span class="ghost">|</span>
<span class="genre">
Crime, Drama, Fantasy </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8.6</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0120689" id="checkbox-tt0120689" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0120689">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0120689">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0120689">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">61 </span>
Metascore
</div>
<p class="">
The lives of guards on Death Row are affected by one of their charges: a black man accused of child murder and rape, yet who has a mysterious gift.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0001104/">Frank Darabont</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0000158/">Tom Hanks</a>,
<a href="/name/nm0003817/">Michael Clarke Duncan</a>,
<a href="/name/nm0001556/">David Morse</a>,
<a href="/name/nm0001372/">Bonnie Hunt</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="1283827" name="nv">1,283,827</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="136,801,374" name="nv">$136.80M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0120689" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
<div class="list-description"><p>Actors: 4.8 Stars
Direction: 4.9 Stars
Screenplay: 4.9 Stars<br/><br/>Oscars: 0
Oscar Nominations: 4
BAFTA Awards: 0
BAFTA Nominations: 0
Golden Globes: 0
Golden Globe Nominations: 1</p></div> </div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0075860">
<a href="/title/tt0075860/"> <img alt="Close Encounters of the Third Kind" class="loadlate" data-tconst="tt0075860" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BMjM1NjE5NjQxN15BMl5BanBnXkFtZTgwMjYzMzQxMDE@._V1_UY209_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">80.</span>
<a href="/title/tt0075860/">Close Encounters of the Third Kind</a>
<span class="lister-item-year text-muted unbold">(1977)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">U</span>
<span class="ghost">|</span>
<span class="runtime">138 min</span>
<span class="ghost">|</span>
<span class="genre">
Drama, Sci-Fi </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7.6</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0075860" id="checkbox-tt0075860" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0075860">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0075860">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0075860">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">90 </span>
Metascore
</div>
<p class="">
Roy Neary, an Indiana electric lineman, finds his quiet and ordinary daily life turned upside down after a close encounter with a UFO, spurring him to an obsessed cross-country quest for answers as a momentous event approaches.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0000229/">Steven Spielberg</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0000377/">Richard Dreyfuss</a>,
<a href="/name/nm0000076/">François Truffaut</a>,
<a href="/name/nm0000414/">Teri Garr</a>,
<a href="/name/nm0227039/">Melinda Dillon</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="201568" name="nv">201,568</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="132,088,635" name="nv">$132.09M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0075860" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
<div class="list-description"><p>Actors: 4.6 Stars
Direction: 4.9 Stars
Screenplay: 4.7 Stars<br/><br/>Oscars: 1
Oscar Nominations: 8
BAFTA Awards: 0
BAFTA Nominations: 4
Golden Globes: 1
Golden Globe Nominations: 8</p></div> </div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0073440">
<a href="/title/tt0073440/"> <img alt="Nashville" class="loadlate" data-tconst="tt0073440" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BMDY0MzE3YWQtZTAzMS00ZmRlLWE3NzYtMjk0NDlkMmE4N2U2XkEyXkFqcGdeQXVyMTAwMzUyOTc@._V1_UX140_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">81.</span>
<a href="/title/tt0073440/">Nashville</a>
<span class="lister-item-year text-muted unbold">(1975)</span>
</h3>
<p class="text-muted text-small">
<span class="runtime">160 min</span>
<span class="ghost">|</span>
<span class="genre">
Comedy, Drama, Music </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7.7</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0073440" id="checkbox-tt0073440" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0073440">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0073440">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0073440">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">96 </span>
Metascore
</div>
<p class="">
Over the course of a few hectic days, numerous interrelated people prepare for a political convention.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0000265/">Robert Altman</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0001018/">Keith Carradine</a>,
<a href="/name/nm0000947/">Karen Black</a>,
<a href="/name/nm0086867/">Ronee Blakley</a>,
<a href="/name/nm0001167/">Shelley Duvall</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="26479" name="nv">26,479</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="14,824,000" name="nv">$14.82M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0073440" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
<div class="list-description"><p>*****
Actors: 4.7 Stars
Direction: 4.8 Stars
Screenplay: 4.8 Stars<br/><br/>Oscars: 1
Oscar Nominations: 5
BAFTA Awards: 1
BAFTA Nominations: 5
Golden Globes: 1
Golden Globe Nominations: 11</p></div> </div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0074958">
<a href="/title/tt0074958/"> <img alt="Network" class="loadlate" data-tconst="tt0074958" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BNzY0NjU5ODUtOTAzMC00NTU5LWJkZjctYWMyOWY2MTZmOWM1XkEyXkFqcGdeQXVyMTI3ODAyMzE2._V1_UX140_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">82.</span>
<a href="/title/tt0074958/">Network</a>
<span class="lister-item-year text-muted unbold">(1976)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">UA</span>
<span class="ghost">|</span>
<span class="runtime">121 min</span>
<span class="ghost">|</span>
<span class="genre">
Drama </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8.1</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0074958" id="checkbox-tt0074958" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0074958">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0074958">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0074958">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">83 </span>
Metascore
</div>
<p class="">
A television network cynically exploits a deranged former anchor's ravings and revelations about the news media for its own profit, but finds that his message may be difficult to control.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0001486/">Sidney Lumet</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0001159/">Faye Dunaway</a>,
<a href="/name/nm0000034/">William Holden</a>,
<a href="/name/nm0002075/">Peter Finch</a>,
<a href="/name/nm0000380/">Robert Duvall</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="159325" name="nv">159,325</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0074958" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
<div class="list-description"><p>Actors: 4.8 Stars
Direction: 4.9 Stars
Screenplay: 4.9 Stars<br/><br/>Oscars: 4
Oscar Nominations: 10
BAFTA Awards: 1
BAFTA Nominations: 9
Golden Globes: 4
Golden Globe Nominations: 5</p></div> </div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0061722">
<a href="/title/tt0061722/"> <img alt="The Graduate" class="loadlate" data-tconst="tt0061722" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BMTQ0ODc4MDk4Nl5BMl5BanBnXkFtZTcwMTEzNzgzNA@@._V1_UX140_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">83.</span>
<a href="/title/tt0061722/">The Graduate</a>
<span class="lister-item-year text-muted unbold">(1967)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">A</span>
<span class="ghost">|</span>
<span class="runtime">106 min</span>
<span class="ghost">|</span>
<span class="genre">
Comedy, Drama, Romance </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0061722" id="checkbox-tt0061722" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0061722">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0061722">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0061722">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">83 </span>
Metascore
</div>
<p class="">
A disillusioned college graduate finds himself torn between his older lover and her daughter.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0001566/">Mike Nichols</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0000163/">Dustin Hoffman</a>,
<a href="/name/nm0000843/">Anne Bancroft</a>,
<a href="/name/nm0001684/">Katharine Ross</a>,
<a href="/name/nm0200122/">William Daniels</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="272643" name="nv">272,643</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="104,945,305" name="nv">$104.95M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0061722" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
<div class="list-description"><p>Actors: 5 Stars
Direction: 4.8 Stars
Screenplay: 4.8 Stars<br/><br/>Oscars: 1
Oscar Nominations: 7
BAFTA Awards: 5
BAFTA Nominations: 7
Golden Globes: 5
Golden Globe Nominations: 7</p></div> </div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0069704">
<a href="/title/tt0069704/"> <img alt="American Graffiti" class="loadlate" data-tconst="tt0069704" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BMjI5NjM5MjIyNF5BMl5BanBnXkFtZTgwNjg2MTUxMDE@._V1_UY209_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">84.</span>
<a href="/title/tt0069704/">American Graffiti</a>
<span class="lister-item-year text-muted unbold">(1973)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">U</span>
<span class="ghost">|</span>
<span class="runtime">110 min</span>
<span class="ghost">|</span>
<span class="genre">
Comedy, Drama </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7.4</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0069704" id="checkbox-tt0069704" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0069704">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0069704">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0069704">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">97 </span>
Metascore
</div>
<p class="">
A group of teenagers in California's central valley spend one final night after their 1962 high school graduation cruising the strip with their buddies before they pursue their varying goals.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0000184/">George Lucas</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0000377/">Richard Dreyfuss</a>,
<a href="/name/nm0000165/">Ron Howard</a>,
<a href="/name/nm0494432/">Paul Le Mat</a>,
<a href="/name/nm0001747/">Charles Martin Smith</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="90485" name="nv">90,485</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="115,000,000" name="nv">$115.00M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0069704" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
<div class="list-description"><p>*****
Actors: 4.7 Stars
Direction: 4.8 Stars
Screenplay: 4.8 Stars<br/><br/>Oscars: 0
Oscar Nominations: 5
BAFTA Awards: 0
BAFTA Nominations: 1
Golden Globes: 2
Golden Globe Nominations: 4</p></div> </div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0110912">
<a href="/title/tt0110912/"> <img alt="Pulp Fiction" class="loadlate" data-tconst="tt0110912" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BNGNhMDIzZTUtNTBlZi00MTRlLWFjM2ItYzViMjE3YzI5MjljXkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_UY209_CR2,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">85.</span>
<a href="/title/tt0110912/">Pulp Fiction</a>
<span class="lister-item-year text-muted unbold">(1994)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">A</span>
<span class="ghost">|</span>
<span class="runtime">154 min</span>
<span class="ghost">|</span>
<span class="genre">
Crime, Drama </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8.9</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0110912" id="checkbox-tt0110912" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0110912">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0110912">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0110912">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">94 </span>
Metascore
</div>
<p class="">
The lives of two mob hitmen, a boxer, a gangster and his wife, and a pair of diner bandits intertwine in four tales of violence and redemption.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0000233/">Quentin Tarantino</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0000237/">John Travolta</a>,
<a href="/name/nm0000235/">Uma Thurman</a>,
<a href="/name/nm0000168/">Samuel L. Jackson</a>,
<a href="/name/nm0000246/">Bruce Willis</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="2022868" name="nv">2,022,868</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="107,928,762" name="nv">$107.93M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0110912" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
<div class="list-description"><p>Actors: 4.7 Stars
Direction: 4.9 Stars
Screenplay: 5 Stars<br/><br/>Oscars: 1
Oscar Nominations: 7
BAFTA Awards: 2
BAFTA Nominations: 8
Golden Globes: 1
Golden Globe Nominations: 6</p></div> </div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0086425">
<a href="/title/tt0086425/"> <img alt="Terms of Endearment" class="loadlate" data-tconst="tt0086425" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BMTk0ODM4NDk0MF5BMl5BanBnXkFtZTgwMTEzMDUxMDE@._V1_UY209_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">86.</span>
<a href="/title/tt0086425/">Terms of Endearment</a>
<span class="lister-item-year text-muted unbold">(1983)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">A</span>
<span class="ghost">|</span>
<span class="runtime">132 min</span>
<span class="ghost">|</span>
<span class="genre">
Comedy, Drama </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7.4</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0086425" id="checkbox-tt0086425" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0086425">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0086425">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0086425">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">79 </span>
Metascore
</div>
<p class="">
Follows hard-to-please Aurora looking for love, and her daughter's family problems.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0000985/">James L. Brooks</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0000511/">Shirley MacLaine</a>,
<a href="/name/nm0000700/">Debra Winger</a>,
<a href="/name/nm0000197/">Jack Nicholson</a>,
<a href="/name/nm0000362/">Danny DeVito</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="60580" name="nv">60,580</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="108,423,489" name="nv">$108.42M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0086425" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
<div class="list-description"><p>*****
Actors: 5 Stars
Direction: 4.9 Stars
Screenplay: 4.9 Stars<br/><br/>Oscars: 5
Oscar Nominations: 11
BAFTA Awards: 0
BAFTA Nominations: 1
Golden Globes: 4
Golden Globe Nominations: 6</p></div> </div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0119217">
<a href="/title/tt0119217/"> <img alt="Good Will Hunting" class="loadlate" data-tconst="tt0119217" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BOTI0MzcxMTYtZDVkMy00NjY1LTgyMTYtZmUxN2M3NmQ2NWJhXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UX140_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">87.</span>
<a href="/title/tt0119217/">Good Will Hunting</a>
<span class="lister-item-year text-muted unbold">(1997)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">U</span>
<span class="ghost">|</span>
<span class="runtime">126 min</span>
<span class="ghost">|</span>
<span class="genre">
Drama, Romance </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8.3</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0119217" id="checkbox-tt0119217" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0119217">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0119217">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0119217">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">70 </span>
Metascore
</div>
<p class="">
Will Hunting, a janitor at M.I.T., has a gift for mathematics, but needs help from a psychologist to find direction in his life.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0001814/">Gus Van Sant</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0000245/">Robin Williams</a>,
<a href="/name/nm0000354/">Matt Damon</a>,
<a href="/name/nm0000255/">Ben Affleck</a>,
<a href="/name/nm0001745/">Stellan Skarsgård</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="955797" name="nv">955,797</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="138,433,435" name="nv">$138.43M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0119217" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
<div class="list-description"><p>Actors: 4.8 Stars
Direction: 4.9 Stars
Screenplay: 5 Stars<br/><br/>Oscars: 2
Oscar Nominations: 9
BAFTA Awards: 0
BAFTA Nominations: 0
Golden Globes: 1
Golden Globe Nominations: 4</p></div> </div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0043265">
<a href="/title/tt0043265/"> <img alt="The African Queen" class="loadlate" data-tconst="tt0043265" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BYzM3YjE2NGMtODY3Zi00NTY0LWE4Y2EtMTE5YzNmM2U1NTg2XkEyXkFqcGdeQXVyMTY5Nzc4MDY@._V1_UX140_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">88.</span>
<a href="/title/tt0043265/">The African Queen</a>
<span class="lister-item-year text-muted unbold">(1951)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">U</span>
<span class="ghost">|</span>
<span class="runtime">105 min</span>
<span class="ghost">|</span>
<span class="genre">
Adventure, Drama, Romance </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7.7</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0043265" id="checkbox-tt0043265" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0043265">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0043265">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0043265">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">91 </span>
Metascore
</div>
<p class="">
In WWI East Africa, a gin-swilling Canadian riverboat captain is persuaded by a strait-laced English missionary to undertake a trip up a treacherous river and use his boat to attack a German gunship.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0001379/">John Huston</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0000007/">Humphrey Bogart</a>,
<a href="/name/nm0000031/">Katharine Hepburn</a>,
<a href="/name/nm0605923/">Robert Morley</a>,
<a href="/name/nm0119988/">Peter Bull</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="78933" name="nv">78,933</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="536,118" name="nv">$0.54M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0043265" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
<div class="list-description"><p>Actors: 4.7 Stars
Direction: 4.8 Stars
Screenplay: 4.8 Stars<br/><br/>Oscars: 1
Oscar Nominations: 4
BAFTA Awards: 0
BAFTA Nominations: 3
Golden Globes: 0
Golden Globe Nominations: 0</p></div> </div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0031971">
<a href="/title/tt0031971/"> <img alt="Stagecoach" class="loadlate" data-tconst="tt0031971" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BOGQ4NDUyNWQtZTEyOC00OTMzLWFhYjAtNDNmYmQ2MWQyMTRmXkEyXkFqcGdeQXVyNTA4NzY1MzY@._V1_UX140_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">89.</span>
<a href="/title/tt0031971/">Stagecoach</a>
<span class="lister-item-year text-muted unbold">(1939)</span>
</h3>
<p class="text-muted text-small">
<span class="runtime">96 min</span>
<span class="ghost">|</span>
<span class="genre">
Adventure, Drama, Western </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7.8</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0031971" id="checkbox-tt0031971" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0031971">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0031971">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0031971">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">93 </span>
Metascore
</div>
<p class="">
A group of people traveling on a stagecoach find their journey complicated by the threat of Geronimo and learn something about each other in the process.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0000406/">John Ford</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0000078/">John Wayne</a>,
<a href="/name/nm0872456/">Claire Trevor</a>,
<a href="/name/nm0222596/">Andy Devine</a>,
<a href="/name/nm0001017/">John Carradine</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="49164" name="nv">49,164</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0031971" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
<div class="list-description"><p>Actors: 4.6 Stars
Direction: 4.8 Stars
Screenplay: 4.7 Stars<br/><br/>Oscars: 2
Oscar Nominations: 7
BAFTA Awards: N/A
BAFTA Nominations: N/A
Golden Globes: N/A
Golden Globe Nominations: N/A</p></div> </div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0026752">
<a href="/title/tt0026752/"> <img alt="Mutiny on the Bounty" class="loadlate" data-tconst="tt0026752" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BNmRhZWU4MTAtNzE0OC00YjIyLTk2MGItMDRjYTc0MTZiNmU1XkEyXkFqcGdeQXVyMTY5Nzc4MDY@._V1_UX140_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">90.</span>
<a href="/title/tt0026752/">Mutiny on the Bounty</a>
<span class="lister-item-year text-muted unbold">(1935)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">U</span>
<span class="ghost">|</span>
<span class="runtime">132 min</span>
<span class="ghost">|</span>
<span class="genre">
Adventure, Biography, Drama </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7.7</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0026752" id="checkbox-tt0026752" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0026752">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0026752">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0026752">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">87 </span>
Metascore
</div>
<p class="">
First mate Fletcher Christian leads a revolt against his sadistic commander, Captain Bligh, in this classic seafaring adventure, based on the real-life 1789 mutiny.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0515979/">Frank Lloyd</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0001452/">Charles Laughton</a>,
<a href="/name/nm0000022/">Clark Gable</a>,
<a href="/name/nm0867144/">Franchot Tone</a>,
<a href="/name/nm0612743/">Herbert Mundin</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="23167" name="nv">23,167</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0026752" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
<div class="list-description"><p>Actors: 4.9 Stars
Direction: 4.7 Stars
Screenplay: 4.8 Stars<br/><br/>Oscars: 1
Oscar Nominations: 8
BAFTA Awards: N/A
BAFTA Nominations: N/A
Golden Globes: N/A
Golden Globe Nominations: N/A</p></div> </div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0032553">
<a href="/title/tt0032553/"> <img alt="The Great Dictator" class="loadlate" data-tconst="tt0032553" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BMmExYWJjNTktNGUyZS00ODhmLTkxYzAtNWIzOGEyMGNiMmUwXkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UY209_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">91.</span>
<a href="/title/tt0032553/">The Great Dictator</a>
<span class="lister-item-year text-muted unbold">(1940)</span>
</h3>
<p class="text-muted text-small">
<span class="runtime">125 min</span>
<span class="ghost">|</span>
<span class="genre">
Comedy, Drama, War </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8.4</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0032553" id="checkbox-tt0032553" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0032553">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0032553">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0032553">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
Dictator Adenoid Hynkel tries to expand his empire while a poor Jewish barber tries to avoid persecution from Hynkel's regime.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0000122/">Charles Chaplin</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0000122/">Charles Chaplin</a>,
<a href="/name/nm0002104/">Paulette Goddard</a>,
<a href="/name/nm0642988/">Jack Oakie</a>,
<a href="/name/nm0306786/">Reginald Gardiner</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="223061" name="nv">223,061</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="288,475" name="nv">$0.29M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0032553" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
<div class="list-description"><p>Actors: 5 Stars
Direction: 4.9 Stars
Screenplay: 4.8 Stars<br/><br/>Oscars: 0
Oscar Nominations: 5
BAFTA Awards: 0
BAFTA Nominations: 0
Golden Globes: 0
Golden Globe Nominations: 0</p></div> </div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0036775">
<a href="/title/tt0036775/"> <img alt="Double Indemnity" class="loadlate" data-tconst="tt0036775" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BOTdlNjgyZGUtOTczYi00MDdhLTljZmMtYTEwZmRiOWFkYjRhXkEyXkFqcGdeQXVyNDY2MTk1ODk@._V1_UX140_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">92.</span>
<a href="/title/tt0036775/">Double Indemnity</a>
<span class="lister-item-year text-muted unbold">(1944)</span>
</h3>
<p class="text-muted text-small">
<span class="runtime">107 min</span>
<span class="ghost">|</span>
<span class="genre">
Crime, Drama, Film-Noir </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8.3</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0036775" id="checkbox-tt0036775" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0036775">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0036775">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0036775">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">95 </span>
Metascore
</div>
<p class="">
A Los Angeles insurance representative lets an alluring housewife seduce him into a scheme of insurance fraud and murder that arouses the suspicion of his colleague, an insurance investigator.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0000697/">Billy Wilder</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0534045/">Fred MacMurray</a>,
<a href="/name/nm0001766/">Barbara Stanwyck</a>,
<a href="/name/nm0000064/">Edward G. Robinson</a>,
<a href="/name/nm0056477/">Byron Barr</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="156870" name="nv">156,870</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="5,720,000" name="nv">$5.72M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0036775" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
<div class="list-description"><p>Actors: 4.8 Stars
Direction: 4.8 Stars
Screenplay: 4.8 Stars<br/><br/>Oscars: 0
Oscar Nominations: 7
BAFTA Awards: N/A
BAFTA Nominations: N/A
Golden Globes: N/A
Golden Globe Nominations: N/A</p></div> </div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0033870">
<a href="/title/tt0033870/"> <img alt="The Maltese Falcon" class="loadlate" data-tconst="tt0033870" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BODQzYjY2NzAtMTVkOS00YTI1LTg2YzQtMWExOTY5ZmQ4ODU1XkEyXkFqcGdeQXVyNDYyMDk5MTU@._V1_UY209_CR7,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">93.</span>
<a href="/title/tt0033870/">The Maltese Falcon</a>
<span class="lister-item-year text-muted unbold">(1941)</span>
</h3>
<p class="text-muted text-small">
<span class="runtime">100 min</span>
<span class="ghost">|</span>
<span class="genre">
Crime, Film-Noir, Mystery </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0033870" id="checkbox-tt0033870" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0033870">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0033870">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0033870">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">97 </span>
Metascore
</div>
<p class="">
San Francisco private detective Sam Spade takes on a case that involves him with three eccentric criminals, a gorgeous liar, and their quest for a priceless statuette, with the stakes rising after his partner is murdered.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0001379/">John Huston</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0000007/">Humphrey Bogart</a>,
<a href="/name/nm0000802/">Mary Astor</a>,
<a href="/name/nm0313438/">Gladys George</a>,
<a href="/name/nm0000048/">Peter Lorre</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="158499" name="nv">158,499</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="2,108,060" name="nv">$2.11M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0033870" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
<div class="list-description"><p>Actors: 4.7 Stars
Direction: 4.7 Stars
Screenplay: 4.8 Stars<br/><br/>Oscars: 0
Oscar Nominations: 3
BAFTA Awards: N/A
BAFTA Nominations: N/A
Golden Globes: N/A
Golden Globe Nominations: N/A</p></div> </div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0032145">
<a href="/title/tt0032145/"> <img alt="Wuthering Heights" class="loadlate" data-tconst="tt0032145" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BMDAxZDkzNTktYzQyMi00YmRlLWFmYWQtY2Q4ZTQyMGFlMzNmL2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_UX140_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">94.</span>
<a href="/title/tt0032145/">Wuthering Heights</a>
<span class="lister-item-year text-muted unbold">(1939)</span>
</h3>
<p class="text-muted text-small">
<span class="runtime">104 min</span>
<span class="ghost">|</span>
<span class="genre">
Drama, Romance </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7.5</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0032145" id="checkbox-tt0032145" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0032145">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0032145">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0032145">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
A servant in the house of Wuthering Heights tells a traveler the unfortunate tale of lovers Cathy and Heathcliff.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0943758/">William Wyler</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0643353/">Merle Oberon</a>,
<a href="/name/nm0000059/">Laurence Olivier</a>,
<a href="/name/nm0000057/">David Niven</a>,
<a href="/name/nm0733460/">Flora Robson</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="18294" name="nv">18,294</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="762,484" name="nv">$0.76M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0032145" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
<div class="list-description"><p>*****
Actors: 4.8 Stars
Direction: 4.9 Stars
Screenplay: 4.8 Stars<br/><br/>Oscars: 1
Oscar Nominations: 8
BAFTA Awards: N/A
BAFTA Nominations: N/A
Golden Globes: N/A
Golden Globe Nominations: N/A</p></div> </div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0075314">
<a href="/title/tt0075314/"> <img alt="Taxi Driver" class="loadlate" data-tconst="tt0075314" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BM2M1MmVhNDgtNmI0YS00ZDNmLTkyNjctNTJiYTQ2N2NmYzc2XkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_UX140_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">95.</span>
<a href="/title/tt0075314/">Taxi Driver</a>
<span class="lister-item-year text-muted unbold">(1976)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">A</span>
<span class="ghost">|</span>
<span class="runtime">114 min</span>
<span class="ghost">|</span>
<span class="genre">
Crime, Drama </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8.2</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0075314" id="checkbox-tt0075314" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0075314">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0075314">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0075314">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">94 </span>
Metascore
</div>
<p class="">
A mentally unstable veteran works as a nighttime taxi driver in New York City, where the perceived decadence and sleaze fuels his urge for violent action.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0000217/">Martin Scorsese</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0000134/">Robert De Niro</a>,
<a href="/name/nm0000149/">Jodie Foster</a>,
<a href="/name/nm0001732/">Cybill Shepherd</a>,
<a href="/name/nm0000983/">Albert Brooks</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="819775" name="nv">819,775</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="28,262,574" name="nv">$28.26M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0075314" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
<div class="list-description"><p>Actors: 5 Stars
Direction: 5 Stars
Screenplay: 4.8 Stars<br/><br/>Oscars: 0
Oscar Nominations: 4
BAFTA Awards: 2
BAFTA Nominations: 6
Golden Globes: 0
Golden Globe Nominations: 2</p></div> </div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0047396">
<a href="/title/tt0047396/"> <img alt="Rear Window" class="loadlate" data-tconst="tt0047396" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BNGUxYWM3M2MtMGM3Mi00ZmRiLWE0NGQtZjE5ODI2OTJhNTU0XkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UY209_CR1,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">96.</span>
<a href="/title/tt0047396/">Rear Window</a>
<span class="lister-item-year text-muted unbold">(1954)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">U</span>
<span class="ghost">|</span>
<span class="runtime">112 min</span>
<span class="ghost">|</span>
<span class="genre">
Mystery, Thriller </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8.5</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0047396" id="checkbox-tt0047396" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0047396">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0047396">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0047396">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">100 </span>
Metascore
</div>
<p class="">
A wheelchair-bound photographer spies on his neighbors from his Greenwich Village courtyard apartment window, and becomes convinced one of them has committed murder, despite the skepticism of his fashion-model girlfriend.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0000033/">Alfred Hitchcock</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0000071/">James Stewart</a>,
<a href="/name/nm0000038/">Grace Kelly</a>,
<a href="/name/nm0179819/">Wendell Corey</a>,
<a href="/name/nm0728812/">Thelma Ritter</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="487996" name="nv">487,996</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="36,764,313" name="nv">$36.76M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0047396" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
<div class="list-description"><p>Actors: 4.8 Stars
Direction: 5 Stars
Screenplay: 4.9 Stars<br/><br/>Oscars: 0
Oscar Nominations: 4
BAFTA Awards: 0
BAFTA Nominations: 1
Golden Globes: 0
Golden Globe Nominations: 0</p></div> </div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0041959">
<a href="/title/tt0041959/"> <img alt="The Third Man" class="loadlate" data-tconst="tt0041959" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BYjE2OTdhMWUtOGJlMy00ZDViLWIzZjgtYjZkZGZmMDZjYmEyXkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_UX140_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">97.</span>
<a href="/title/tt0041959/">The Third Man</a>
<span class="lister-item-year text-muted unbold">(1949)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">U</span>
<span class="ghost">|</span>
<span class="runtime">104 min</span>
<span class="ghost">|</span>
<span class="genre">
Film-Noir, Mystery, Thriller </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8.1</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0041959" id="checkbox-tt0041959" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0041959">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0041959">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0041959">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">97 </span>
Metascore
</div>
<p class="">
Pulp novelist Holly Martins travels to shadowy, postwar Vienna, only to find himself investigating the mysterious death of an old friend, Harry Lime.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0715346/">Carol Reed</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0000080/">Orson Welles</a>,
<a href="/name/nm0001072/">Joseph Cotten</a>,
<a href="/name/nm0885098/">Alida Valli</a>,
<a href="/name/nm0002145/">Trevor Howard</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="171415" name="nv">171,415</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="449,191" name="nv">$0.45M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0041959" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
<div class="list-description"><p>Actors: 4.8 Stars
Direction: 4.9 Stars
Screenplay: 4.8 Stars<br/><br/>Oscars: 1
Oscar Nominations: 3
BAFTA Awards: 1
BAFTA Nominations: 2
Golden Globes: 0
Golden Globe Nominations: 0</p></div> </div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0048545">
<a href="/title/tt0048545/"> <img alt="Rebel Without a Cause" class="loadlate" data-tconst="tt0048545" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BYzk2ZDU3MmMtMDBmMi00YWIyLTkxM2YtZjg3MzgyOTAzZjg0XkEyXkFqcGdeQXVyMjUzOTY1NTc@._V1_UX140_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">98.</span>
<a href="/title/tt0048545/">Rebel Without a Cause</a>
<span class="lister-item-year text-muted unbold">(1955)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">U</span>
<span class="ghost">|</span>
<span class="runtime">111 min</span>
<span class="ghost">|</span>
<span class="genre">
Drama </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7.6</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0048545" id="checkbox-tt0048545" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0048545">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0048545">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0048545">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">89 </span>
Metascore
</div>
<p class="">
A rebellious young man with a troubled past comes to a new town, finding friends and enemies.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0712947/">Nicholas Ray</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0000015/">James Dean</a>,
<a href="/name/nm0000081/">Natalie Wood</a>,
<a href="/name/nm0000543/">Sal Mineo</a>,
<a href="/name/nm0000822/">Jim Backus</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="91000" name="nv">91,000</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0048545" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
<div class="list-description"><p>*****
Actors: 4.7 Stars
Direction: 4.7 Stars
Screenplay: 4.8 Stars<br/><br/>Oscars: 0
Oscar Nominations: 3
BAFTA Awards: 0
BAFTA Nominations: 2
Golden Globes: 0
Golden Globe Nominations: 0</p></div> </div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0053125">
<a href="/title/tt0053125/"> <img alt="North by Northwest" class="loadlate" data-tconst="tt0053125" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BZDA3NDExMTUtMDlhOC00MmQ5LWExZGUtYmI1NGVlZWI4OWNiXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_UX140_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">99.</span>
<a href="/title/tt0053125/">North by Northwest</a>
<span class="lister-item-year text-muted unbold">(1959)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">U</span>
<span class="ghost">|</span>
<span class="runtime">136 min</span>
<span class="ghost">|</span>
<span class="genre">
Action, Adventure, Mystery </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8.3</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0053125" id="checkbox-tt0053125" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0053125">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0053125">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0053125">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">98 </span>
Metascore
</div>
<p class="">
A New York City advertising executive goes on the run after being mistaken for a government agent by a group of foreign spies, and falls for a woman whose loyalties he begins to doubt.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0000033/">Alfred Hitchcock</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0000026/">Cary Grant</a>,
<a href="/name/nm0001693/">Eva Marie Saint</a>,
<a href="/name/nm0000051/">James Mason</a>,
<a href="/name/nm0484829/">Jessie Royce Landis</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="326371" name="nv">326,371</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="13,275,000" name="nv">$13.28M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0053125" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
<div class="list-description"><p>Actors: 4.8 Stars
Direction: 4.9 Stars
Screenplay: 4.8 Stars<br/><br/>Oscars: 0
Oscar Nominations: 3
BAFTA Awards: 0
BAFTA Nominations: 0
Golden Globes: 0
Golden Globe Nominations: 0</p></div> </div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0035575">
<a href="/title/tt0035575/"> <img alt="Yankee Doodle Dandy" class="loadlate" data-tconst="tt0035575" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BNDQ2MWJjNjUtYmVlNS00YjUzLWFkMDEtYzE2MjkxOTljMmI1XkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_UX140_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">100.</span>
<a href="/title/tt0035575/">Yankee Doodle Dandy</a>
<span class="lister-item-year text-muted unbold">(1942)</span>
</h3>
<p class="text-muted text-small">
<span class="runtime">126 min</span>
<span class="ghost">|</span>
<span class="genre">
Biography, Drama, Family </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7.6</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0035575" id="checkbox-tt0035575" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0035575">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0035575">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0035575">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">89 </span>
Metascore
</div>
<p class="">
The life of the renowned musical composer, playwright, actor, dancer, and singer <a href="/name/nm0169125">George M. Cohan</a>.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0002031/">Michael Curtiz</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0000010/">James Cagney</a>,
<a href="/name/nm0504125/">Joan Leslie</a>,
<a href="/name/nm0404158/">Walter Huston</a>,
<a href="/name/nm0926636/">Richard Whorf</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="15735" name="nv">15,735</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="11,800,000" name="nv">$11.80M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0035575" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
<div class="list-description"><p>Actors: 4.6 Stars
Direction: 4.7 Stars
Screenplay: 4.6 Stars<br/><br/>Oscars: 3
Oscar Nominations: 8
BAFTA Awards: 0
BAFTA Nominations: 0
Golden Globes: 0
Golden Globe Nominations: 0</p></div> </div>
</div>
<div class="row text-center lister-working hidden"></div>
<div class="footer filmosearch">
<div class="desc">
</div>
</div>
</div>
</div>
</div>
<div id="sidebar">
<!-- no content received for slot: top_rhs -->
<script>
var event = {
type: '',
slotName: 'top_rhs',
timestamp: Date.now()
};
var mediaEvent = event;
mediaEvent.type = 'no-autoplay-video-ad-detected';
if (window && window.mediaOrchestrator) {
window.mediaOrchestrator.publish('mediaPlaybackEvent', mediaEvent);
window.mediaOrchestrator.publish('noAdToLoad', event);
}
</script>
<div class="list-create-widget">
<a href="/list/create"> <button class="btn-raised btn-raised--primary" type="button">create a new list</button>
</a> <div class="create-list-description">
List your movie, TV & celebrity picks.
</div>
</div>
<div class="aux-content-widget-2 list-activity-widget">
<h3>List Activity</h3>
<div class="list-activity">
<span class="views-number-label">Views: </span>
<span class="views-number-value">23,265,897</span>
| in last week <span class="views-number-value">20,021</span>
</div>
</div>
<div class="aux-content-widget-2" id="social-share-widget">
<h3>Tell Your Friends</h3>
<div class="social">
<div class="social_networking">
<span><strong>Share</strong> this list:</span>
<a class="share_icon facebook" href="https://www.facebook.com/sharer.php?u=http%3A%2F%2Fwww.imdb.com%2Flist%2Fls055592025%2F" onclick="window.open("https://www.facebook.com/sharer.php?u=http%3A%2F%2Fwww.imdb.com%2Flist%2Fls055592025%2F", 'newWindow', 'width=626, height=436'); return false;" target="_blank" title="Share on Facebook"></a>
<a class="share_icon twitter" href="https://twitter.com/intent/tweet?text=%20-%20http%3A%2F%2Fwww.imdb.com%2Flist%2Fls055592025%2F" onclick="window.open("https://twitter.com/intent/tweet?text=%20-%20http%3A%2F%2Fwww.imdb.com%2Flist%2Fls055592025%2F", 'newWindow', 'width=815, height=436'); return false;" target="_blank" title="Share on Twitter"></a>
<a class="share_icon share_url_link" href="http://www.imdb.com/list/ls055592025/" onclick="$('div.social input[name=share-link]').show().select(); return false;" title="Share the page"></a>
</div>
<input name="share-link" readonly="" type="text" value="http://www.imdb.com/list/ls055592025/"/>
</div>
</div>
<div class="aux-content-widget-2" id="feedback-widget">
<strong>Feedback?</strong> <a href="https://help.imdb.com/article/imdb/general-information/getsatisfaction-community-access-you-re-about-to-leave-imdb-com/GP4FF3REXES9AR3P">Tell us what you think about this feature.</a>
</div>
<div class="aux-content-widget-2">
<div id="listsWidget">
<h3>
Other Lists by ChrisWalczyk55
</h3>
<div class="list-preview even">
<div class="list-preview-item-narrow">
<a href="/list/ls069479983"><img alt="list image" class="loadlate hidden" height="86" loadlate="https://m.media-amazon.com/images/M/MV5BMWM4NTFhYjctNzUyNi00NGMwLTk3NTYtMDIyNTZmMzRlYmQyXkEyXkFqcGdeQXVyMTAwMzUyOTc@._V1_UX86_CR0,0,86,86_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/8ZhQrGnWn9cWUVQ.png" title="list image" width="86"/></a> </div>
<div class="list_name">
<strong><a href="/list/ls069479983">
Top 20 Greatest Suspense/Thrillers of All Time (The Ultimate List)
</a></strong>
</div>
<div class="list_meta">
a list of 20 titles
</div>
<div class="clear"> </div>
</div>
<div class="list-preview odd">
<div class="list-preview-item-narrow">
<a href="/list/ls050274118"><img alt="list image" class="loadlate hidden" height="86" loadlate="https://m.media-amazon.com/images/M/MV5BMTQ3OTY0ODk0M15BMl5BanBnXkFtZTYwNzE4Njc4._V1_UX86_CR0,0,86,86_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/9FayPGLPcrscMjU.png" title="list image" width="86"/></a> </div>
<div class="list_name">
<strong><a href="/list/ls050274118">
Top 100 Greatest Actors of All Time (The Ultimate List)
</a></strong>
</div>
<div class="list_meta">
a list of 100 people
</div>
<div class="clear"> </div>
</div>
<div class="list-preview even">
<div class="list-preview-item-narrow">
<a href="/list/ls055731784"><img alt="list image" class="loadlate hidden" height="86" loadlate="https://m.media-amazon.com/images/M/MV5BYmQyNTA1ZGItNjZjMi00NzFlLWEzMWEtNWMwN2Q2MjJhYzEyXkEyXkFqcGdeQXVyMjUzOTY1NTc@._V1_UX86_CR0,0,86,86_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/8ZhQrGnWn9cWUVQ.png" title="list image" width="86"/></a> </div>
<div class="list_name">
<strong><a href="/list/ls055731784">
Top 25 Greatest War Movies of All Time (The Ultimate List)
</a></strong>
</div>
<div class="list_meta">
a list of 25 titles
</div>
<div class="clear"> </div>
</div>
<div class="list-preview odd">
<div class="list-preview-item-narrow">
<a href="/list/ls069101453"><img alt="list image" class="loadlate hidden" height="86" loadlate="https://m.media-amazon.com/images/M/MV5BNWJlNzUzNGMtYTAwMS00ZjI2LWFmNWQtODcxNWUxODA5YmU1XkEyXkFqcGdeQXVyNTIzOTk5ODM@._V1_UX86_CR0,0,86,86_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/8ZhQrGnWn9cWUVQ.png" title="list image" width="86"/></a> </div>
<div class="list_name">
<strong><a href="/list/ls069101453">
Top 50 Greatest Biopics of All Time (The Ultimate List)
</a></strong>
</div>
<div class="list_meta">
a list of 50 titles
</div>
<div class="clear"> </div>
</div>
<div class="list-preview even">
<div class="list-preview-item-narrow">
<a href="/list/ls069738948"><img alt="list image" class="loadlate hidden" height="86" loadlate="https://m.media-amazon.com/images/M/MV5BMjAxMDE3NDQwMF5BMl5BanBnXkFtZTcwMjA0MzU1MQ@@._V1_UX86_CR0,0,86,86_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/8ZhQrGnWn9cWUVQ.png" title="list image" width="86"/></a> </div>
<div class="list_name">
<strong><a href="/list/ls069738948">
Top 50 Worst Movies of All Time (The Ultimate List)
</a></strong>
</div>
<div class="list_meta">
a list of 50 titles
</div>
<div class="clear"> </div>
</div>
<div class="see-more">
<a href="/user/ur35202332/lists">See all lists by ChrisWalczyk55</a> »
</div>
</div>
</div>
</div>
</div>
<br class="clear"/>
<br class="clear"/>
</div>
<div id="rvi-div">
<div class="recently-viewed">
<div class="header">
<div class="rhs">
<a href="#" id="clear_rvi">Clear your history</a>
</div>
<h3>Recently Viewed</h3>
</div>
<div class="items"> </div>
</div>
</div>
<!-- no content received for slot: bottom_ad -->
</div>
</div>
<script>
if (typeof uet == 'function') {
uet("bb", "desktopFooter", {wb: 1});
}
</script>
<style data-styled="true" data-styled-version="5.3.5">.jwkTjc{--ipt-base-rgb:255,255,255;--mdc-theme-ipt-base-rgb:var(--ipt-base-rgb);--ipt-base-bg:rgb(255,255,255);--mdc-theme-ipt-base-bg:var(--ipt-base-bg);--ipt-base-color:rgb(255,255,255);--mdc-theme-ipt-base-color:var(--ipt-base-color);--ipt-base-shade1-rgb:250,250,250;--mdc-theme-ipt-base-shade1-rgb:var(--ipt-base-shade1-rgb);--ipt-base-shade1-bg:rgb(250,250,250);--mdc-theme-ipt-base-shade1-bg:var(--ipt-base-shade1-bg);--ipt-base-shade1-color:rgb(250,250,250);--mdc-theme-ipt-base-shade1-color:var(--ipt-base-shade1-color);--ipt-base-shade2-rgb:240,240,240;--mdc-theme-ipt-base-shade2-rgb:var(--ipt-base-shade2-rgb);--ipt-base-shade2-bg:rgb(240,240,240);--mdc-theme-ipt-base-shade2-bg:var(--ipt-base-shade2-bg);--ipt-base-shade2-color:rgb(240,240,240);--mdc-theme-ipt-base-shade2-color:var(--ipt-base-shade2-color);--ipt-base-shade3-rgb:255,255,255;--mdc-theme-ipt-base-shade3-rgb:var(--ipt-base-shade3-rgb);--ipt-base-shade3-bg:rgb(255,255,255);--mdc-theme-ipt-base-shade3-bg:var(--ipt-base-shade3-bg);--ipt-base-shade3-color:rgb(255,255,255);--mdc-theme-ipt-base-shade3-color:var(--ipt-base-shade3-color);--ipt-on-base-rgb:0,0,0;--mdc-theme-ipt-on-base-rgb:var(--ipt-on-base-rgb);--ipt-on-base-color:rgb(0,0,0);--mdc-theme-ipt-on-base-color:var(--ipt-on-base-color);--ipt-on-base-accent1-rgb:245,197,24;--mdc-theme-ipt-on-base-accent1-rgb:var(--ipt-on-base-accent1-rgb);--ipt-on-base-accent1-color:rgb(245,197,24);--mdc-theme-ipt-on-base-accent1-color:var(--ipt-on-base-accent1-color);--ipt-on-base-accent2-rgb:14,99,190;--mdc-theme-ipt-on-base-accent2-rgb:var(--ipt-on-base-accent2-rgb);--ipt-on-base-accent2-color:rgb(14,99,190);--mdc-theme-ipt-on-base-accent2-color:var(--ipt-on-base-accent2-color);--ipt-on-base-accent3-rgb:189,36,4;--mdc-theme-ipt-on-base-accent3-rgb:var(--ipt-on-base-accent3-rgb);--ipt-on-base-accent3-color:rgb(189,36,4);--mdc-theme-ipt-on-base-accent3-color:var(--ipt-on-base-accent3-color);--ipt-on-base-accent4-rgb:0,138,0;--mdc-theme-ipt-on-base-accent4-rgb:var(--ipt-on-base-accent4-rgb);--ipt-on-base-accent4-color:rgb(0,138,0);--mdc-theme-ipt-on-base-accent4-color:var(--ipt-on-base-accent4-color);--ipt-on-base-textPrimary-opacity:0.87;--mdc-theme-ipt-on-base-textPrimary-opacity:var(--ipt-on-base-textPrimary-opacity);--ipt-on-base-textPrimary-color:rgba(0,0,0,0.87);--mdc-theme-ipt-on-base-textPrimary-color:var(--ipt-on-base-textPrimary-color);--ipt-on-base-textSecondary-opacity:0.54;--mdc-theme-ipt-on-base-textSecondary-opacity:var(--ipt-on-base-textSecondary-opacity);--ipt-on-base-textSecondary-color:rgba(0,0,0,0.54);--mdc-theme-ipt-on-base-textSecondary-color:var(--ipt-on-base-textSecondary-color);--ipt-on-base-textHint-opacity:0.38;--mdc-theme-ipt-on-base-textHint-opacity:var(--ipt-on-base-textHint-opacity);--ipt-on-base-textHint-color:rgba(0,0,0,0.38);--mdc-theme-ipt-on-base-textHint-color:var(--ipt-on-base-textHint-color);--ipt-on-base-textDisabled-opacity:0.38;--mdc-theme-ipt-on-base-textDisabled-opacity:var(--ipt-on-base-textDisabled-opacity);--ipt-on-base-textDisabled-color:rgba(0,0,0,0.38);--mdc-theme-ipt-on-base-textDisabled-color:var(--ipt-on-base-textDisabled-color);--ipt-on-base-textIcon-opacity:0.5;--mdc-theme-ipt-on-base-textIcon-opacity:var(--ipt-on-base-textIcon-opacity);--ipt-on-base-textIcon-color:rgba(0,0,0,0.5);--mdc-theme-ipt-on-base-textIcon-color:var(--ipt-on-base-textIcon-color);--ipt-base-border-opacity:0.12;--mdc-theme-ipt-base-border-opacity:var(--ipt-base-border-opacity);--ipt-base-hover-opacity:0.08;--mdc-theme-ipt-base-hover-opacity:var(--ipt-base-hover-opacity);--ipt-base-pressed-opacity:0.16;--mdc-theme-ipt-base-pressed-opacity:var(--ipt-base-pressed-opacity);--ipt-base-stripes-opacity:0.04;--mdc-theme-ipt-base-stripes-opacity:var(--ipt-base-stripes-opacity);--ipt-base-border-color:rgba(0,0,0,0.12);--mdc-theme-ipt-base-border-color:var(--ipt-base-border-color);--ipt-base-hover-color:rgba(0,0,0,0.08);--mdc-theme-ipt-base-hover-color:var(--ipt-base-hover-color);--ipt-base-pressed-color:rgba(0,0,0,0.16);--mdc-theme-ipt-base-pressed-color:var(--ipt-base-pressed-color);--ipt-base-stripes-color:rgba(0,0,0,0.04);--mdc-theme-ipt-base-stripes-color:var(--ipt-base-stripes-color);--ipt-baseAlt-rgb:0,0,0;--mdc-theme-ipt-baseAlt-rgb:var(--ipt-baseAlt-rgb);--ipt-baseAlt-bg:rgb(0,0,0);--mdc-theme-ipt-baseAlt-bg:var(--ipt-baseAlt-bg);--ipt-baseAlt-color:rgb(0,0,0);--mdc-theme-ipt-baseAlt-color:var(--ipt-baseAlt-color);--ipt-baseAlt-shade1-rgb:31,31,31;--mdc-theme-ipt-baseAlt-shade1-rgb:var(--ipt-baseAlt-shade1-rgb);--ipt-baseAlt-shade1-bg:rgb(31,31,31);--mdc-theme-ipt-baseAlt-shade1-bg:var(--ipt-baseAlt-shade1-bg);--ipt-baseAlt-shade1-color:rgb(31,31,31);--mdc-theme-ipt-baseAlt-shade1-color:var(--ipt-baseAlt-shade1-color);--ipt-baseAlt-shade2-rgb:26,26,26;--mdc-theme-ipt-baseAlt-shade2-rgb:var(--ipt-baseAlt-shade2-rgb);--ipt-baseAlt-shade2-bg:rgb(26,26,26);--mdc-theme-ipt-baseAlt-shade2-bg:var(--ipt-baseAlt-shade2-bg);--ipt-baseAlt-shade2-color:rgb(26,26,26);--mdc-theme-ipt-baseAlt-shade2-color:var(--ipt-baseAlt-shade2-color);--ipt-baseAlt-shade3-rgb:18,18,18;--mdc-theme-ipt-baseAlt-shade3-rgb:var(--ipt-baseAlt-shade3-rgb);--ipt-baseAlt-shade3-bg:rgb(18,18,18);--mdc-theme-ipt-baseAlt-shade3-bg:var(--ipt-baseAlt-shade3-bg);--ipt-baseAlt-shade3-color:rgb(18,18,18);--mdc-theme-ipt-baseAlt-shade3-color:var(--ipt-baseAlt-shade3-color);--ipt-on-baseAlt-rgb:255,255,255;--mdc-theme-ipt-on-baseAlt-rgb:var(--ipt-on-baseAlt-rgb);--ipt-on-baseAlt-color:rgb(255,255,255);--mdc-theme-ipt-on-baseAlt-color:var(--ipt-on-baseAlt-color);--ipt-on-baseAlt-accent1-rgb:245,197,24;--mdc-theme-ipt-on-baseAlt-accent1-rgb:var(--ipt-on-baseAlt-accent1-rgb);--ipt-on-baseAlt-accent1-color:rgb(245,197,24);--mdc-theme-ipt-on-baseAlt-accent1-color:var(--ipt-on-baseAlt-accent1-color);--ipt-on-baseAlt-accent2-rgb:87,153,239;--mdc-theme-ipt-on-baseAlt-accent2-rgb:var(--ipt-on-baseAlt-accent2-rgb);--ipt-on-baseAlt-accent2-color:rgb(87,153,239);--mdc-theme-ipt-on-baseAlt-accent2-color:var(--ipt-on-baseAlt-accent2-color);--ipt-on-baseAlt-accent3-rgb:251,60,60;--mdc-theme-ipt-on-baseAlt-accent3-rgb:var(--ipt-on-baseAlt-accent3-rgb);--ipt-on-baseAlt-accent3-color:rgb(251,60,60);--mdc-theme-ipt-on-baseAlt-accent3-color:var(--ipt-on-baseAlt-accent3-color);--ipt-on-baseAlt-accent4-rgb:103,173,75;--mdc-theme-ipt-on-baseAlt-accent4-rgb:var(--ipt-on-baseAlt-accent4-rgb);--ipt-on-baseAlt-accent4-color:rgb(103,173,75);--mdc-theme-ipt-on-baseAlt-accent4-color:var(--ipt-on-baseAlt-accent4-color);--ipt-on-baseAlt-textPrimary-opacity:1;--mdc-theme-ipt-on-baseAlt-textPrimary-opacity:var(--ipt-on-baseAlt-textPrimary-opacity);--ipt-on-baseAlt-textPrimary-color:rgba(255,255,255,1);--mdc-theme-ipt-on-baseAlt-textPrimary-color:var(--ipt-on-baseAlt-textPrimary-color);--ipt-on-baseAlt-textSecondary-opacity:0.7;--mdc-theme-ipt-on-baseAlt-textSecondary-opacity:var(--ipt-on-baseAlt-textSecondary-opacity);--ipt-on-baseAlt-textSecondary-color:rgba(255,255,255,0.7);--mdc-theme-ipt-on-baseAlt-textSecondary-color:var(--ipt-on-baseAlt-textSecondary-color);--ipt-on-baseAlt-textHint-opacity:0.5;--mdc-theme-ipt-on-baseAlt-textHint-opacity:var(--ipt-on-baseAlt-textHint-opacity);--ipt-on-baseAlt-textHint-color:rgba(255,255,255,0.5);--mdc-theme-ipt-on-baseAlt-textHint-color:var(--ipt-on-baseAlt-textHint-color);--ipt-on-baseAlt-textDisabled-opacity:0.5;--mdc-theme-ipt-on-baseAlt-textDisabled-opacity:var(--ipt-on-baseAlt-textDisabled-opacity);--ipt-on-baseAlt-textDisabled-color:rgba(255,255,255,0.5);--mdc-theme-ipt-on-baseAlt-textDisabled-color:var(--ipt-on-baseAlt-textDisabled-color);--ipt-on-baseAlt-textIcon-opacity:1;--mdc-theme-ipt-on-baseAlt-textIcon-opacity:var(--ipt-on-baseAlt-textIcon-opacity);--ipt-on-baseAlt-textIcon-color:rgba(255,255,255,1);--mdc-theme-ipt-on-baseAlt-textIcon-color:var(--ipt-on-baseAlt-textIcon-color);--ipt-baseAlt-border-opacity:0.2;--mdc-theme-ipt-baseAlt-border-opacity:var(--ipt-baseAlt-border-opacity);--ipt-baseAlt-hover-opacity:0.08;--mdc-theme-ipt-baseAlt-hover-opacity:var(--ipt-baseAlt-hover-opacity);--ipt-baseAlt-pressed-opacity:0.32;--mdc-theme-ipt-baseAlt-pressed-opacity:var(--ipt-baseAlt-pressed-opacity);--ipt-baseAlt-stripes-opacity:0.12;--mdc-theme-ipt-baseAlt-stripes-opacity:var(--ipt-baseAlt-stripes-opacity);--ipt-baseAlt-border-color:rgba(255,255,255,0.2);--mdc-theme-ipt-baseAlt-border-color:var(--ipt-baseAlt-border-color);--ipt-baseAlt-hover-color:rgba(255,255,255,0.08);--mdc-theme-ipt-baseAlt-hover-color:var(--ipt-baseAlt-hover-color);--ipt-baseAlt-pressed-color:rgba(255,255,255,0.32);--mdc-theme-ipt-baseAlt-pressed-color:var(--ipt-baseAlt-pressed-color);--ipt-baseAlt-stripes-color:rgba(255,255,255,0.12);--mdc-theme-ipt-baseAlt-stripes-color:var(--ipt-baseAlt-stripes-color);--ipt-accent1-rgb:245,197,24;--mdc-theme-ipt-accent1-rgb:var(--ipt-accent1-rgb);--ipt-accent1-bg:rgb(245,197,24);--mdc-theme-ipt-accent1-bg:var(--ipt-accent1-bg);--ipt-accent1-color:rgb(245,197,24);--mdc-theme-ipt-accent1-color:var(--ipt-accent1-color);--ipt-on-accent1-rgb:0,0,0;--mdc-theme-ipt-on-accent1-rgb:var(--ipt-on-accent1-rgb);--ipt-on-accent1-color:rgb(0,0,0);--mdc-theme-ipt-on-accent1-color:var(--ipt-on-accent1-color);--ipt-accent2-rgb:14,99,190;--mdc-theme-ipt-accent2-rgb:var(--ipt-accent2-rgb);--ipt-accent2-bg:rgb(14,99,190);--mdc-theme-ipt-accent2-bg:var(--ipt-accent2-bg);--ipt-accent2-color:rgb(14,99,190);--mdc-theme-ipt-accent2-color:var(--ipt-accent2-color);--ipt-on-accent2-rgb:255,255,255;--mdc-theme-ipt-on-accent2-rgb:var(--ipt-on-accent2-rgb);--ipt-on-accent2-color:rgb(255,255,255);--mdc-theme-ipt-on-accent2-color:var(--ipt-on-accent2-color);--ipt-accent3-rgb:189,36,4;--mdc-theme-ipt-accent3-rgb:var(--ipt-accent3-rgb);--ipt-accent3-bg:rgb(189,36,4);--mdc-theme-ipt-accent3-bg:var(--ipt-accent3-bg);--ipt-accent3-color:rgb(189,36,4);--mdc-theme-ipt-accent3-color:var(--ipt-accent3-color);--ipt-on-accent3-rgb:255,255,255;--mdc-theme-ipt-on-accent3-rgb:var(--ipt-on-accent3-rgb);--ipt-on-accent3-color:rgb(255,255,255);--mdc-theme-ipt-on-accent3-color:var(--ipt-on-accent3-color);--ipt-accent4-rgb:0,114,7;--mdc-theme-ipt-accent4-rgb:var(--ipt-accent4-rgb);--ipt-accent4-bg:rgb(0,114,7);--mdc-theme-ipt-accent4-bg:var(--ipt-accent4-bg);--ipt-accent4-color:rgb(0,114,7);--mdc-theme-ipt-accent4-color:var(--ipt-accent4-color);--ipt-on-accent4-rgb:255,255,255;--mdc-theme-ipt-on-accent4-rgb:var(--ipt-on-accent4-rgb);--ipt-on-accent4-color:rgb(255,255,255);--mdc-theme-ipt-on-accent4-color:var(--ipt-on-accent4-color);--mdc-theme-primary:var(--ipt-baseAlt-color);--mdc-theme-secondary:var(--ipt-accent1-color);--mdc-theme-background:var(--ipt-base-color);--mdc-theme-surface:var(--ipt-base-shade1-color);--mdc-theme-on-primary:var(--ipt-on-baseAlt-color);--mdc-theme-on-secondary:var(--ipt-on-accent1-color);--mdc-theme-on-surface:var(--ipt-on-base-color);--mdc-theme-text-primary-on-background:var(--ipt-on-base-textPrimary-color);--mdc-theme-text-secondary-on-background:var(--ipt-on-base-textSecondary-color);--mdc-theme-text-hint-on-background:var(--ipt-on-base-textHint-color);--mdc-theme-text-disabled-on-background:var(--ipt-on-base-textDisabled-color);--mdc-theme-text-icon-on-background:var(--ipt-on-base-textIcon-color);--mdc-theme-text-primary-on-light:var(--ipt-on-base-textPrimary-color);--mdc-theme-text-secondary-on-light:var(--ipt-on-base-textSecondary-color);--mdc-theme-text-hint-on-light:var(--ipt-on-base-textHint-color);--mdc-theme-text-disabled-on-light:var(--ipt-on-base-textDisabled-color);--mdc-theme-text-icon-on-light:var(--ipt-on-base-textIcon-color);--mdc-theme-text-primary-on-dark:var(--ipt-on-baseAlt-textPrimary-color);--mdc-theme-text-secondary-on-dark:var(--ipt-on-baseAlt-textSecondary-color);--mdc-theme-text-hint-on-dark:var(--ipt-on-baseAlt-textHint-color);--mdc-theme-text-disabled-on-dark:var(--ipt-on-baseAlt-textDisabled-color);--mdc-theme-text-icon-on-dark:var(--ipt-on-baseAlt-textIcon-color);background:rgb(0,0,0);background:var(--ipt-baseAlt-bg,rgb(0,0,0));color:rgb(255,255,255);color:var(--ipt-on-baseAlt-color,rgb(255,255,255));font-family:'Roboto','Helvetica','Arial',sans-serif;font-family:var(--ipt-font-family);font-size:1rem;font-size:var(--ipt-type-body-size,1rem);font-weight:400;font-weight:var(--ipt-type-body-weight,400);-webkit-letter-spacing:.03125em;-moz-letter-spacing:.03125em;-ms-letter-spacing:.03125em;letter-spacing:.03125em;-webkit-letter-spacing:var(--ipt-type-body-letterSpacing,.03125em);-moz-letter-spacing:var(--ipt-type-body-letterSpacing,.03125em);-ms-letter-spacing:var(--ipt-type-body-letterSpacing,.03125em);letter-spacing:var(--ipt-type-body-letterSpacing,.03125em);line-height:1.5rem;line-height:var(--ipt-type-body-lineHeight,1.5rem);text-transform:none;text-transform:var(--ipt-type-body-textTransform,none);margin-top:1rem;padding:1rem 0;text-align:center;}/*!sc*/
.jwkTjc .footer__app{background:rgba(255,255,255,.1);background:rgba(var(--ipt-on-baseAlt-rgb),.1);margin-bottom:.5rem;padding:1rem 0;}/*!sc*/
.jwkTjc .footer__socials{margin:16px 0;}/*!sc*/
.jwkTjc .footer__logo{min-height:40px;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin:16px;}/*!sc*/
.jwkTjc .footer__copyright{color:rgba(255,255,255,0.7);color:var(--ipt-on-baseAlt-textSecondary-color,rgba(255,255,255,0.7));font-family:'Roboto','Helvetica','Arial',sans-serif;font-family:var(--ipt-font-family);font-size:.75rem;font-size:var(--ipt-type-copyright-size,.75rem);font-weight:400;font-weight:var(--ipt-type-copyright-weight,400);-webkit-letter-spacing:.03333em;-moz-letter-spacing:.03333em;-ms-letter-spacing:.03333em;letter-spacing:.03333em;-webkit-letter-spacing:var(--ipt-type-copyright-letterSpacing,.03333em);-moz-letter-spacing:var(--ipt-type-copyright-letterSpacing,.03333em);-ms-letter-spacing:var(--ipt-type-copyright-letterSpacing,.03333em);letter-spacing:var(--ipt-type-copyright-letterSpacing,.03333em);line-height:1rem;line-height:var(--ipt-type-copyright-lineHeight,1rem);text-transform:none;text-transform:var(--ipt-type-copyright-textTransform,none);margin:.5em 0;}/*!sc*/
.jwkTjc .footer__links{max-width:360px;}/*!sc*/
.jwkTjc .footer__linksRow{display:inline;}/*!sc*/
.jwkTjc .footer__linksRow li{margin-left:0.5rem;margin-right:0.5rem;}/*!sc*/
.jwkTjc .footerLink--wideScreen{display:none;}/*!sc*/
@media screen and (min-width:600px){.jwkTjc{margin-top:0;}.jwkTjc .footer__links{max-width:600px;}.jwkTjc .footer__linksRow{display:inline;}}/*!sc*/
.jwkTjc .footer__sign-in-button{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;}/*!sc*/
.jwkTjc .footer__sign-in-mobile-button{display:none;}/*!sc*/
@media screen and (max-width:1024px){.jwkTjc .footer__app{margin:0;}.jwkTjc .footer__sign-in{background:rgba( 255,255,255, 0.06 );padding:1rem 0;}.jwkTjc .footer__sign-in-button{display:none;}.jwkTjc .footer__sign-in-mobile-button{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;}}/*!sc*/
@media screen and (min-width:1024px){.jwkTjc .footer__links{max-width:1024px;}.jwkTjc .footer__app{display:none;}.jwkTjc .footerLink--wideScreen{display:inline-block;}.jwkTjc .footerLink--smallScreen{display:none;}.jwkTjc .footer__sign-in{background:rgb(0,0,0);background:var(--ipt-baseAlt-bg,rgb(0,0,0));padding:0;}.jwkTjc .footer__sign-in-button{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;}.jwkTjc .footer__sign-in-mobile-button{display:none;}}/*!sc*/
.jwkTjc .footerLink--trustarc a:hover{color:inherit;-webkit-text-decoration:underline;text-decoration:underline;}/*!sc*/
data-styled.g1[id="sc-bczRLJ"]{content:"jwkTjc,"}/*!sc*/
</style>
<section id="imdb-bmo-footer"><footer class="imdb-footer sc-bczRLJ jwkTjc footer"><div class="footer__app"><div class="ipc-page-content-container ipc-page-content-container--center" role="presentation"><a aria-disabled="false" class="ipc-button ipc-button--double-padding ipc-button--center-align-content ipc-button--default-height ipc-button--core-accent1 ipc-button--theme-baseAlt imdb-footer__open-in-app-button" href="https://slyb.app.link/SKdyQ6A449" role="button" tabindex="0"><div class="ipc-button__text">Get the IMDb App</div></a></div></div><div class="footer__sign-in"><div class="ipc-page-content-container ipc-page-content-container--center" role="presentation"><a aria-disabled="false" class="ipc-button ipc-button--double-padding ipc-button--center-align-content ipc-button--default-height ipc-button--core-accent1 ipc-button--theme-baseAlt footer__sign-in-button" href="/registration/signin?ref_=reg_ftr" role="button" tabindex="0"><div class="ipc-button__text">Sign in for more access</div></a><a aria-disabled="false" class="ipc-button ipc-button--double-padding ipc-button--center-align-content ipc-button--default-height ipc-button--core-baseAlt ipc-button--theme-baseAlt ipc-button--on-accent2 ipc-secondary-button footer__sign-in-mobile-button" href="/registration/signin?ref_=reg_ftr" role="button" tabindex="0"><div class="ipc-button__text">Sign in for more access</div></a></div></div><div class="ipc-page-content-container ipc-page-content-container--center footer__links" role="presentation"><div class="imdb-footer__links"><div class="footer__socials"><ul class="ipc-inline-list footer__linksRow baseAlt" role="presentation"><li class="ipc-inline-list__item" role="presentation"><a aria-disabled="false" aria-label="Facebook" class="ipc-icon-link ipc-icon-link--baseAlt ipc-icon-link--onBase" href="https://facebook.com/imdb" rel="nofollow noopener" role="button" tabindex="0" target="_blank" title="Facebook"><svg class="ipc-icon ipc-icon--facebook" fill="currentColor" height="24" id="iconContext-facebook" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M20.896 2H3.104C2.494 2 2 2.494 2 3.104v17.792C2 21.506 2.494 22 3.104 22h9.579v-7.745h-2.607v-3.018h2.607V9.01c0-2.584 1.577-3.99 3.882-3.99 1.104 0 2.052.082 2.329.119v2.7h-1.598c-1.254 0-1.496.595-1.496 1.47v1.927h2.989l-.39 3.018h-2.6V22h5.097c.61 0 1.104-.494 1.104-1.104V3.104C22 2.494 21.506 2 20.896 2"></path></svg></a></li><li class="ipc-inline-list__item" role="presentation"><a aria-disabled="false" aria-label="Instagram" class="ipc-icon-link ipc-icon-link--baseAlt ipc-icon-link--onBase" href="https://instagram.com/imdb" rel="nofollow noopener" role="button" tabindex="0" target="_blank" title="Instagram"><svg class="ipc-icon ipc-icon--instagram" fill="currentColor" height="24" id="iconContext-instagram" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M11.997 2.04c-2.715 0-3.056.011-4.122.06-1.064.048-1.79.217-2.426.463a4.901 4.901 0 0 0-1.771 1.151 4.89 4.89 0 0 0-1.153 1.767c-.247.635-.416 1.36-.465 2.422C2.011 8.967 2 9.307 2 12.017s.011 3.049.06 4.113c.049 1.062.218 1.787.465 2.422a4.89 4.89 0 0 0 1.153 1.767 4.901 4.901 0 0 0 1.77 1.15c.636.248 1.363.416 2.427.465 1.066.048 1.407.06 4.122.06s3.055-.012 4.122-.06c1.064-.049 1.79-.217 2.426-.464a4.901 4.901 0 0 0 1.77-1.15 4.89 4.89 0 0 0 1.154-1.768c.247-.635.416-1.36.465-2.422.048-1.064.06-1.404.06-4.113 0-2.71-.012-3.05-.06-4.114-.049-1.062-.218-1.787-.465-2.422a4.89 4.89 0 0 0-1.153-1.767 4.901 4.901 0 0 0-1.77-1.15c-.637-.247-1.363-.416-2.427-.464-1.067-.049-1.407-.06-4.122-.06m0 1.797c2.67 0 2.985.01 4.04.058.974.045 1.503.207 1.856.344.466.181.8.397 1.15.746.349.35.566.682.747 1.147.137.352.3.88.344 1.853.048 1.052.058 1.368.058 4.032 0 2.664-.01 2.98-.058 4.031-.044.973-.207 1.501-.344 1.853a3.09 3.09 0 0 1-.748 1.147c-.35.35-.683.565-1.15.746-.352.137-.88.3-1.856.344-1.054.048-1.37.058-4.04.058-2.669 0-2.985-.01-4.039-.058-.974-.044-1.504-.207-1.856-.344a3.098 3.098 0 0 1-1.15-.746 3.09 3.09 0 0 1-.747-1.147c-.137-.352-.3-.88-.344-1.853-.049-1.052-.059-1.367-.059-4.031 0-2.664.01-2.98.059-4.032.044-.973.207-1.501.344-1.853a3.09 3.09 0 0 1 .748-1.147c.35-.349.682-.565 1.149-.746.352-.137.882-.3 1.856-.344 1.054-.048 1.37-.058 4.04-.058"></path><path d="M11.997 15.342a3.329 3.329 0 0 1-3.332-3.325 3.329 3.329 0 0 1 3.332-3.326 3.329 3.329 0 0 1 3.332 3.326 3.329 3.329 0 0 1-3.332 3.325m0-8.449a5.128 5.128 0 0 0-5.134 5.124 5.128 5.128 0 0 0 5.134 5.123 5.128 5.128 0 0 0 5.133-5.123 5.128 5.128 0 0 0-5.133-5.124m6.536-.203c0 .662-.537 1.198-1.2 1.198a1.198 1.198 0 1 1 1.2-1.197"></path></svg></a></li><li class="ipc-inline-list__item" role="presentation"><a aria-disabled="false" aria-label="Twitch" class="ipc-icon-link ipc-icon-link--baseAlt ipc-icon-link--onBase" href="https://twitch.tv/IMDb" rel="nofollow noopener" role="button" tabindex="0" target="_blank" title="Twitch"><svg class="ipc-icon ipc-icon--twitch" fill="currentColor" height="24" id="iconContext-twitch" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M3.406 2h18.596v12.814l-5.469 5.47H12.47L9.813 22.94H7.001v-2.657H2V5.594L3.406 2zm16.721 11.876v-10H5.125v13.126h4.22v2.656L12 17.002h5l3.126-3.126z"></path><path d="M17.002 7.47v5.469h-1.875v-5.47zM12.001 7.47v5.469h-1.875v-5.47z"></path></svg></a></li><li class="ipc-inline-list__item" role="presentation"><a aria-disabled="false" aria-label="Twitter" class="ipc-icon-link ipc-icon-link--baseAlt ipc-icon-link--onBase" href="https://twitter.com/imdb" rel="nofollow noopener" role="button" tabindex="0" target="_blank" title="Twitter"><svg class="ipc-icon ipc-icon--twitter" fill="currentColor" height="24" id="iconContext-twitter" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M8.29 19.936c7.547 0 11.675-6.13 11.675-11.446 0-.175-.004-.348-.012-.52A8.259 8.259 0 0 0 22 5.886a8.319 8.319 0 0 1-2.356.633 4.052 4.052 0 0 0 1.804-2.225c-.793.46-1.67.796-2.606.976A4.138 4.138 0 0 0 15.847 4c-2.266 0-4.104 1.802-4.104 4.023 0 .315.036.622.107.917a11.728 11.728 0 0 1-8.458-4.203 3.949 3.949 0 0 0-.556 2.022 4 4 0 0 0 1.826 3.348 4.136 4.136 0 0 1-1.858-.503l-.001.051c0 1.949 1.415 3.575 3.292 3.944a4.193 4.193 0 0 1-1.853.07c.522 1.597 2.037 2.76 3.833 2.793a8.34 8.34 0 0 1-5.096 1.722A8.51 8.51 0 0 1 2 18.13a11.785 11.785 0 0 0 6.29 1.807"></path></svg></a></li><li class="ipc-inline-list__item" role="presentation"><a aria-disabled="false" aria-label="YouTube" class="ipc-icon-link ipc-icon-link--baseAlt ipc-icon-link--onBase" href="https://youtube.com/imdb/" rel="nofollow noopener" role="button" tabindex="0" target="_blank" title="YouTube"><svg class="ipc-icon ipc-icon--youtube" fill="currentColor" height="24" id="iconContext-youtube" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M9.955 14.955v-5.91L15.182 12l-5.227 2.955zm11.627-7.769a2.505 2.505 0 0 0-1.768-1.768C18.254 5 12 5 12 5s-6.254 0-7.814.418c-.86.23-1.538.908-1.768 1.768C2 8.746 2 12 2 12s0 3.254.418 4.814c.23.86.908 1.538 1.768 1.768C5.746 19 12 19 12 19s6.254 0 7.814-.418a2.505 2.505 0 0 0 1.768-1.768C22 15.254 22 12 22 12s0-3.254-.418-4.814z"></path></svg></a></li></ul></div><div><ul class="ipc-inline-list footer__linksRow baseAlt" role="presentation"><li class="ipc-inline-list__item footerLink--wideScreen" role="presentation"><a class="ipc-link ipc-link--baseAlt ipc-link--touch-target ipc-link--inherit-color" href="https://slyb.app.link/SKdyQ6A449" tabindex="0" target="_blank">Get the IMDb App<svg class="ipc-icon ipc-icon--launch-inline ipc-icon--inline ipc-link__launch-icon" fill="currentColor" height="24" id="iconContext-launch-inline" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M21.6 21.6H2.4V2.4h7.2V0H0v24h24v-9.6h-2.4v7.2zM14.4 0v2.4h4.8L7.195 14.49l2.4 2.4L21.6 4.8v4.8H24V0h-9.6z"></path></svg></a></li><li class="ipc-inline-list__item" role="presentation"><a class="ipc-link ipc-link--baseAlt ipc-link--touch-target ipc-link--inherit-color" href="https://help.imdb.com/imdb" tabindex="0" target="_blank">Help<svg class="ipc-icon ipc-icon--launch-inline ipc-icon--inline ipc-link__launch-icon" fill="currentColor" height="24" id="iconContext-launch-inline" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M21.6 21.6H2.4V2.4h7.2V0H0v24h24v-9.6h-2.4v7.2zM14.4 0v2.4h4.8L7.195 14.49l2.4 2.4L21.6 4.8v4.8H24V0h-9.6z"></path></svg></a></li><li class="ipc-inline-list__item" role="presentation"><a class="ipc-link ipc-link--baseAlt ipc-link--touch-target ipc-link--inherit-color" href="https://help.imdb.com/article/imdb/general-information/imdb-site-index/GNCX7BHNSPBTFALQ#so" tabindex="0" target="_blank">Site Index<svg class="ipc-icon ipc-icon--launch-inline ipc-icon--inline ipc-link__launch-icon" fill="currentColor" height="24" id="iconContext-launch-inline" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M21.6 21.6H2.4V2.4h7.2V0H0v24h24v-9.6h-2.4v7.2zM14.4 0v2.4h4.8L7.195 14.49l2.4 2.4L21.6 4.8v4.8H24V0h-9.6z"></path></svg></a></li><li class="ipc-inline-list__item" role="presentation"><a class="ipc-link ipc-link--baseAlt ipc-link--touch-target ipc-link--inherit-color" href="https://pro.imdb.com?ref_=cons_tf_pro&rf=cons_tf_pro" tabindex="0" target="_blank">IMDbPro<svg class="ipc-icon ipc-icon--launch-inline ipc-icon--inline ipc-link__launch-icon" fill="currentColor" height="24" id="iconContext-launch-inline" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M21.6 21.6H2.4V2.4h7.2V0H0v24h24v-9.6h-2.4v7.2zM14.4 0v2.4h4.8L7.195 14.49l2.4 2.4L21.6 4.8v4.8H24V0h-9.6z"></path></svg></a></li><li class="ipc-inline-list__item" role="presentation"><a class="ipc-link ipc-link--baseAlt ipc-link--touch-target ipc-link--inherit-color" href="https://www.boxofficemojo.com" tabindex="0" target="_blank">Box Office Mojo<svg class="ipc-icon ipc-icon--launch-inline ipc-icon--inline ipc-link__launch-icon" fill="currentColor" height="24" id="iconContext-launch-inline" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M21.6 21.6H2.4V2.4h7.2V0H0v24h24v-9.6h-2.4v7.2zM14.4 0v2.4h4.8L7.195 14.49l2.4 2.4L21.6 4.8v4.8H24V0h-9.6z"></path></svg></a></li><li class="ipc-inline-list__item" role="presentation"><a class="ipc-link ipc-link--baseAlt ipc-link--touch-target ipc-link--inherit-color" href="https://developer.imdb.com/" tabindex="0" target="_blank">IMDb Developer<svg class="ipc-icon ipc-icon--launch-inline ipc-icon--inline ipc-link__launch-icon" fill="currentColor" height="24" id="iconContext-launch-inline" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M21.6 21.6H2.4V2.4h7.2V0H0v24h24v-9.6h-2.4v7.2zM14.4 0v2.4h4.8L7.195 14.49l2.4 2.4L21.6 4.8v4.8H24V0h-9.6z"></path></svg></a></li></ul></div><div><ul class="ipc-inline-list footer__linksRow baseAlt" role="presentation"><li class="ipc-inline-list__item" role="presentation"><a class="ipc-link ipc-link--baseAlt ipc-link--touch-target ipc-link--inherit-color" href="https://www.imdb.com/pressroom/?ref_=ft_pr" tabindex="0">Press Room</a></li><li class="ipc-inline-list__item" role="presentation"><a class="ipc-link ipc-link--baseAlt ipc-link--touch-target ipc-link--inherit-color" href="https://advertising.amazon.com/resources/ad-specs/imdb/" tabindex="0" target="_blank">Advertising<svg class="ipc-icon ipc-icon--launch-inline ipc-icon--inline ipc-link__launch-icon" fill="currentColor" height="24" id="iconContext-launch-inline" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M21.6 21.6H2.4V2.4h7.2V0H0v24h24v-9.6h-2.4v7.2zM14.4 0v2.4h4.8L7.195 14.49l2.4 2.4L21.6 4.8v4.8H24V0h-9.6z"></path></svg></a></li><li class="ipc-inline-list__item" role="presentation"><a class="ipc-link ipc-link--baseAlt ipc-link--touch-target ipc-link--inherit-color" href="https://www.amazon.jobs/en/teams/imdb" tabindex="0" target="_blank">Jobs<svg class="ipc-icon ipc-icon--launch-inline ipc-icon--inline ipc-link__launch-icon" fill="currentColor" height="24" id="iconContext-launch-inline" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M21.6 21.6H2.4V2.4h7.2V0H0v24h24v-9.6h-2.4v7.2zM14.4 0v2.4h4.8L7.195 14.49l2.4 2.4L21.6 4.8v4.8H24V0h-9.6z"></path></svg></a></li><li class="ipc-inline-list__item" role="presentation"><a class="ipc-link ipc-link--baseAlt ipc-link--touch-target ipc-link--inherit-color" href="/conditions?ref_=ft_cou" tabindex="0">Conditions of Use</a></li><li class="ipc-inline-list__item" role="presentation"><a class="ipc-link ipc-link--baseAlt ipc-link--touch-target ipc-link--inherit-color" href="/privacy?ref_=ft_pvc" tabindex="0">Privacy Policy</a></li><li class="ipc-inline-list__item" role="presentation"><a class="ipc-link ipc-link--baseAlt ipc-link--touch-target ipc-link--inherit-color" href="https://www.amazon.com/b/?&node=5160028011" tabindex="0" target="_blank">Interest-Based Ads<svg class="ipc-icon ipc-icon--launch-inline ipc-icon--inline ipc-link__launch-icon" fill="currentColor" height="24" id="iconContext-launch-inline" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M21.6 21.6H2.4V2.4h7.2V0H0v24h24v-9.6h-2.4v7.2zM14.4 0v2.4h4.8L7.195 14.49l2.4 2.4L21.6 4.8v4.8H24V0h-9.6z"></path></svg></a></li><li class="ipc-inline-list__item" role="presentation"><div class="footerLink--trustarc" id="teconsent"></div></li></ul></div></div><div class="imdb-footer__logo footer__logo"><svg aria-label="IMDb, an Amazon company" height="18" width="160" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><title>IMDb, an Amazon company</title><defs><path d="M26.707 2.45c-3.227 2.374-7.906 3.637-11.935 3.637C9.125 6.087 4.04 4.006.193.542-.11.27.161-.101.523.109 4.675 2.517 9.81 3.968 15.111 3.968c3.577 0 7.51-.74 11.127-2.27.546-.23 1.003.358.47.752z" id="ftr__a"></path><path d="M4.113 1.677C3.7 1.15 1.385 1.427.344 1.552c-.315.037-.364-.237-.08-.436C2.112-.178 5.138.196 5.49.629c.354.437-.093 3.462-1.824 4.906-.266.222-.52.104-.401-.19.39-.97 1.261-3.14.848-3.668z" id="ftr__c"></path><path d="M.435 1.805V.548A.311.311 0 0 1 .755.23l5.65-.001c.181 0 .326.13.326.317v1.078c-.002.181-.154.417-.425.791L3.378 6.582c1.087-.026 2.236.137 3.224.69.222.125.282.309.3.49v1.342c0 .185-.203.398-.417.287-1.74-.908-4.047-1.008-5.97.011-.197.104-.403-.107-.403-.292V7.835c0-.204.004-.552.21-.863l3.392-4.85H.761a.314.314 0 0 1-.326-.317z" id="ftr__e"></path><path d="M2.247 9.655H.528a.323.323 0 0 1-.307-.29L.222.569C.222.393.37.253.554.253h1.601a.323.323 0 0 1 .313.295v1.148h.031C2.917.586 3.703.067 4.762.067c1.075 0 1.75.518 2.23 1.629C7.41.586 8.358.067 9.369.067c.722 0 1.508.296 1.99.963.545.74.433 1.813.433 2.757l-.002 5.551a.324.324 0 0 1-.331.317H9.74a.321.321 0 0 1-.308-.316l-.001-4.663c0-.37.032-1.296-.048-1.647-.128-.593-.514-.76-1.011-.76-.418 0-.85.278-1.027.722-.177.445-.161 1.185-.161 1.685v4.662a.323.323 0 0 1-.331.317H5.137a.322.322 0 0 1-.31-.316l-.001-4.663c0-.981.16-2.424-1.059-2.424-1.236 0-1.188 1.406-1.188 2.424v4.662a.324.324 0 0 1-.332.317z" id="ftr__g"></path><path d="M4.037.067c2.551 0 3.931 2.184 3.931 4.96 0 2.684-1.524 4.814-3.931 4.814C1.533 9.84.169 7.656.169 4.935.17 2.195 1.55.067 4.037.067zm.015 1.796c-1.267 0-1.347 1.721-1.347 2.795 0 1.073-.016 3.368 1.332 3.368 1.332 0 1.395-1.851 1.395-2.98 0-.74-.031-1.629-.256-2.332-.193-.61-.578-.851-1.124-.851z" id="ftr__i"></path><path d="M2.206 9.655H.493a.321.321 0 0 1-.308-.316L.182.54a.325.325 0 0 1 .33-.287h1.595c.15.007.274.109.305.245v1.346h.033C2.926.641 3.6.067 4.788.067c.77 0 1.524.277 2.006 1.037.449.703.449 1.887.449 2.739v5.535a.325.325 0 0 1-.33.277H5.19a.324.324 0 0 1-.306-.277V4.602c0-.962.113-2.37-1.075-2.37-.418 0-.803.278-.995.704-.24.537-.273 1.074-.273 1.666v4.736a.328.328 0 0 1-.335.317z" id="ftr__k"></path><path d="M8.314 8.295c.11.156.134.341-.006.455-.35.294-.974.834-1.318 1.139l-.004-.004a.357.357 0 0 1-.406.04c-.571-.473-.673-.692-.986-1.142-.943.958-1.611 1.246-2.834 1.246-1.447 0-2.573-.89-2.573-2.672 0-1.39.756-2.337 1.833-2.8.933-.409 2.235-.483 3.233-.595V3.74c0-.409.032-.89-.209-1.243-.21-.315-.611-.445-.965-.445-.656 0-1.238.335-1.382 1.029-.03.154-.143.307-.298.315l-1.667-.18c-.14-.032-.297-.144-.256-.358C.859.842 2.684.234 4.32.234c.837 0 1.93.222 2.59.853.836.78.755 1.818.755 2.95v2.67c0 .804.335 1.155.65 1.588zM5.253 5.706v-.37c-1.244 0-2.557.265-2.557 1.724 0 .742.386 1.244 1.045 1.244.483 0 .917-.297 1.19-.78.338-.593.322-1.15.322-1.818z" id="ftr__m"></path><path d="M8.203 8.295c.11.156.135.341-.005.455-.352.294-.976.834-1.319 1.139l-.004-.004a.356.356 0 0 1-.406.04c-.571-.473-.673-.692-.985-1.142-.944.958-1.613 1.246-2.835 1.246-1.447 0-2.573-.89-2.573-2.672 0-1.39.756-2.337 1.833-2.8.933-.409 2.236-.483 3.233-.595V3.74c0-.409.032-.89-.21-1.243-.208-.315-.61-.445-.964-.445-.656 0-1.239.335-1.382 1.029-.03.154-.142.307-.298.315l-1.666-.18C.48 3.184.324 3.072.365 2.858.748.842 2.573.234 4.209.234c.836 0 1.93.222 2.59.853.835.78.755 1.818.755 2.95v2.67c0 .804.335 1.155.649 1.588zM5.142 5.706v-.37c-1.243 0-2.557.265-2.557 1.724 0 .742.386 1.244 1.045 1.244.482 0 .917-.297 1.19-.78.338-.593.322-1.15.322-1.818z" id="ftr__o"></path><path d="M2.935 10.148c-.88 0-1.583-.25-2.11-.75-.527-.501-.79-1.171-.79-2.011 0-.902.322-1.622.967-2.159.644-.538 1.511-.806 2.602-.806.694 0 1.475.104 2.342.315V3.513c0-.667-.151-1.136-.455-1.408-.304-.271-.821-.407-1.553-.407-.855 0-1.691.123-2.509.37-.285.087-.464.13-.539.13-.148 0-.223-.111-.223-.334v-.5c0-.16.025-.278.075-.352C.79.938.89.87 1.039.808c.383-.173.87-.312 1.459-.417A9.997 9.997 0 0 1 4.255.234c1.177 0 2.045.244 2.602.731.557.489.836 1.233.836 2.233v6.338c0 .247-.124.37-.372.37h-.798c-.236 0-.373-.117-.41-.351l-.093-.612c-.445.383-.939.68-1.477.89-.54.21-1.076.315-1.608.315zm.446-1.39c.41 0 .836-.08 1.282-.241.447-.16.874-.395 1.283-.704v-1.89a8.408 8.408 0 0 0-1.97-.241c-1.401 0-2.1.537-2.1 1.612 0 .47.13.831.39 1.084.26.254.632.38 1.115.38z" id="ftr__q"></path><path d="M.467 9.907c-.248 0-.372-.124-.372-.37V.883C.095.635.219.51.467.51h.817c.125 0 .22.026.288.075.068.05.115.142.14.277l.111.686C3 .672 4.24.234 5.541.234c.904 0 1.592.238 2.063.713.471.476.707 1.165.707 2.066v6.524c0 .246-.124.37-.372.37H6.842c-.248 0-.372-.124-.372-.37V3.625c0-.655-.133-1.137-.4-1.445-.266-.31-.684-.464-1.254-.464-.979 0-1.94.315-2.881.946v6.875c0 .246-.125.37-.372.37H.467z" id="ftr__s"></path><path d="M4.641 9.859c-1.462 0-2.58-.417-3.355-1.251C.51 7.774.124 6.566.124 4.985c0-1.569.4-2.783 1.2-3.641C2.121.486 3.252.055 4.714.055c.67 0 1.326.118 1.971.353.136.05.232.111.288.185.056.074.083.198.083.37v.501c0 .248-.08.37-.241.37-.062 0-.162-.018-.297-.055a5.488 5.488 0 0 0-1.544-.222c-1.04 0-1.79.262-2.248.787-.459.526-.688 1.362-.688 2.511v.241c0 1.124.232 1.949.697 2.474.465.525 1.198.788 2.203.788a5.98 5.98 0 0 0 1.672-.26c.136-.037.23-.056.279-.056.161 0 .242.124.242.371v.5c0 .162-.025.279-.075.353-.05.074-.148.142-.297.204-.608.259-1.314.389-2.119.389z" id="ftr__u"></path><path d="M4.598 10.185c-1.413 0-2.516-.438-3.31-1.316C.497 7.992.1 6.769.1 5.199c0-1.555.397-2.773 1.19-3.65C2.082.673 3.185.235 4.598.235c1.412 0 2.515.438 3.308 1.316.793.876 1.19 2.094 1.19 3.65 0 1.569-.397 2.792-1.19 3.669-.793.878-1.896 1.316-3.308 1.316zm0-1.483c1.747 0 2.62-1.167 2.62-3.502 0-2.323-.873-3.484-2.62-3.484S1.977 2.877 1.977 5.2c0 2.335.874 3.502 2.62 3.502z" id="ftr__w"></path><path d="M.396 9.907c-.248 0-.371-.124-.371-.37V.883C.025.635.148.51.396.51h.818a.49.49 0 0 1 .288.075c.068.05.115.142.14.277l.111.594C2.943.64 4.102.234 5.23.234c1.152 0 1.934.438 2.342 1.315C8.798.672 10.025.234 11.25.234c.856 0 1.512.24 1.971.722.458.482.688 1.168.688 2.057v6.524c0 .246-.124.37-.372.37h-1.097c-.248 0-.371-.124-.371-.37V3.533c0-.618-.119-1.075-.354-1.372-.235-.297-.607-.445-1.115-.445-.904 0-1.815.278-2.732.834.012.087.018.18.018.278v6.709c0 .246-.124.37-.372.37H6.42c-.249 0-.372-.124-.372-.37V3.533c0-.618-.118-1.075-.353-1.372-.235-.297-.608-.445-1.115-.445-.942 0-1.847.272-2.714.815v7.006c0 .246-.125.37-.372.37H.396z" id="ftr__y"></path><path d="M.617 13.724c-.248 0-.371-.124-.371-.37V.882c0-.247.123-.37.371-.37h.818c.248 0 .39.123.428.37l.093.594C2.897.648 3.944.234 5.096.234c1.203 0 2.15.435 2.845 1.307.693.87 1.04 2.053 1.04 3.548 0 1.52-.365 2.736-1.096 3.65-.731.915-1.704 1.372-2.918 1.372-1.116 0-2.076-.365-2.881-1.094v4.337c0 .246-.125.37-.372.37H.617zM4.54 8.628c1.71 0 2.566-1.149 2.566-3.447 0-1.173-.208-2.044-.624-2.612-.415-.569-1.05-.853-1.904-.853-.88 0-1.711.284-2.491.853v5.17c.805.593 1.623.889 2.453.889z" id="ftr__A"></path><path d="M2.971 10.148c-.88 0-1.583-.25-2.11-.75-.526-.501-.79-1.171-.79-2.011 0-.902.322-1.622.967-2.159.644-.538 1.512-.806 2.602-.806.694 0 1.475.104 2.342.315V3.513c0-.667-.15-1.136-.455-1.408-.304-.271-.821-.407-1.552-.407-.855 0-1.692.123-2.509.37-.285.087-.465.13-.54.13-.148 0-.223-.111-.223-.334v-.5c0-.16.025-.278.075-.352.05-.074.148-.142.297-.204.384-.173.87-.312 1.46-.417A9.991 9.991 0 0 1 4.29.234c1.177 0 2.045.244 2.603.731.557.489.836 1.233.836 2.233v6.338c0 .247-.125.37-.372.37h-.799c-.236 0-.372-.117-.41-.351l-.092-.612a5.09 5.09 0 0 1-1.478.89 4.4 4.4 0 0 1-1.608.315zm.446-1.39c.41 0 .836-.08 1.283-.241.446-.16.874-.395 1.282-.704v-1.89a8.403 8.403 0 0 0-1.97-.241c-1.4 0-2.1.537-2.1 1.612 0 .47.13.831.39 1.084.26.254.632.38 1.115.38z" id="ftr__C"></path><path d="M.503 9.907c-.248 0-.371-.124-.371-.37V.883C.132.635.255.51.503.51h.818a.49.49 0 0 1 .288.075c.068.05.115.142.14.277l.111.686C3.037.672 4.277.234 5.578.234c.904 0 1.592.238 2.063.713.47.476.706 1.165.706 2.066v6.524c0 .246-.123.37-.371.37H6.879c-.248 0-.372-.124-.372-.37V3.625c0-.655-.133-1.137-.4-1.445-.266-.31-.684-.464-1.254-.464-.98 0-1.94.315-2.882.946v6.875c0 .246-.124.37-.371.37H.503z" id="ftr__E"></path><path d="M1.988 13.443c-.397 0-.75-.043-1.059-.13-.15-.037-.251-.1-.307-.185a.684.684 0 0 1-.084-.37v-.483c0-.234.093-.352.28-.352.06 0 .154.013.278.037.124.025.291.037.502.037.459 0 .82-.114 1.087-.343.266-.228.505-.633.716-1.213l.353-.945L.167.675C.08.465.037.316.037.23c0-.149.086-.222.26-.222h1.115c.198 0 .334.03.409.093.075.062.148.197.223.407l2.602 7.19 2.51-7.19c.074-.21.148-.345.222-.407.075-.062.211-.093.41-.093h1.04c.174 0 .261.073.261.222 0 .086-.044.235-.13.445l-4.09 10.377c-.334.853-.725 1.464-1.17 1.835-.446.37-1.017.556-1.711.556z" id="ftr__G"></path></defs><g fill="none" fill-rule="evenodd"><g transform="translate(31.496 11.553)"><mask fill="currentColor" id="ftr__b"><use xlink:href="#ftr__a"></use></mask><path d="M.04 6.088h26.91V.04H.04z" fill="currentColor" mask="url(#ftr__b)"></path></g><g transform="translate(55.433 10.797)"><mask fill="currentColor" id="ftr__d"><use xlink:href="#ftr__c"></use></mask><path d="M.05 5.664h5.564V.222H.05z" fill="currentColor" mask="url(#ftr__d)"></path></g><g transform="translate(55.433 .97)"><mask fill="currentColor" id="ftr__f"><use xlink:href="#ftr__e"></use></mask><path d="M.11 9.444h6.804V.222H.111z" fill="currentColor" mask="url(#ftr__f)"></path></g><g transform="translate(33.008 .97)"><mask fill="currentColor" id="ftr__h"><use xlink:href="#ftr__g"></use></mask><path d="M.191 9.655h11.611V.04H.192z" fill="currentColor" mask="url(#ftr__h)"></path></g><g transform="translate(62.992 .97)"><mask fill="currentColor" id="ftr__j"><use xlink:href="#ftr__i"></use></mask><path d="M.141 9.867h7.831V.04H.142z" fill="currentColor" mask="url(#ftr__j)"></path></g><g transform="translate(72.063 .97)"><mask fill="currentColor" id="ftr__l"><use xlink:href="#ftr__k"></use></mask><path d="M.171 9.655h7.076V.04H.17z" fill="currentColor" mask="url(#ftr__l)"></path></g><g transform="translate(46.11 .718)"><mask fill="currentColor" id="ftr__n"><use xlink:href="#ftr__m"></use></mask><path d="M.181 10.059h8.225V.232H.18z" fill="currentColor" mask="url(#ftr__n)"></path></g><g transform="translate(23.685 .718)"><mask fill="currentColor" id="ftr__p"><use xlink:href="#ftr__o"></use></mask><path d="M.05 10.059h8.255V.232H.05z" fill="currentColor" mask="url(#ftr__p)"></path></g><g transform="translate(0 .718)"><mask fill="currentColor" id="ftr__r"><use xlink:href="#ftr__q"></use></mask><path d="M.03 10.15h7.68V.231H.03z" fill="currentColor" mask="url(#ftr__r)"></path></g><g transform="translate(10.33 .718)"><mask fill="currentColor" id="ftr__t"><use xlink:href="#ftr__s"></use></mask><path d="M.07 9.907h8.255V.232H.071z" fill="currentColor" mask="url(#ftr__t)"></path></g><g transform="translate(84.157 .97)"><mask fill="currentColor" id="ftr__v"><use xlink:href="#ftr__u"></use></mask><path d="M.11 9.867h7.046V.04H.11z" fill="currentColor" mask="url(#ftr__v)"></path></g><g transform="translate(92.472 .718)"><mask fill="currentColor" id="ftr__x"><use xlink:href="#ftr__w"></use></mask><path d="M.08 10.21h9.041V.232H.081z" fill="currentColor" mask="url(#ftr__x)"></path></g><g transform="translate(103.811 .718)"><mask fill="currentColor" id="ftr__z"><use xlink:href="#ftr__y"></use></mask><path d="M.02 9.907H13.93V.232H.02z" fill="currentColor" mask="url(#ftr__z)"></path></g><g transform="translate(120.189 .718)"><mask fill="currentColor" id="ftr__B"><use xlink:href="#ftr__A"></use></mask><path d="M.242 13.747H9.01V.232H.242z" fill="currentColor" mask="url(#ftr__B)"></path></g><g transform="translate(130.772 .718)"><mask fill="currentColor" id="ftr__D"><use xlink:href="#ftr__C"></use></mask><path d="M.06 10.15h7.68V.231H.06z" fill="currentColor" mask="url(#ftr__D)"></path></g><g transform="translate(141.102 .718)"><mask fill="currentColor" id="ftr__F"><use xlink:href="#ftr__E"></use></mask><path d="M.131 9.907h8.224V.232H.131z" fill="currentColor" mask="url(#ftr__F)"></path></g><g transform="translate(150.677 1.222)"><mask fill="currentColor" id="ftr__H"><use xlink:href="#ftr__G"></use></mask><path d="M.02 13.455h9.071V0H.021z" fill="currentColor" mask="url(#ftr__H)"></path></g></g></svg></div><p class="imdb-footer__copyright footer__copyright">© 1990-<!-- -->2022<!-- --> by IMDb.com, Inc.</p></div></footer><svg style="width:0;height:0;overflow:hidden;display:block" version="1.1" xmlns="http://www.w3.org/2000/svg"><defs><lineargradient id="ipc-svg-gradient-tv-logo-t" x1="31.973%" x2="153.413%" y1="53.409%" y2="-16.853%"><stop offset="21.89%" stop-color="#D01F49"></stop><stop offset="83.44%" stop-color="#E8138B"></stop></lineargradient><lineargradient id="ipc-svg-gradient-tv-logo-v" x1="-38.521%" x2="104.155%" y1="84.997%" y2="14.735%"><stop offset="21.89%" stop-color="#D01F49"></stop><stop offset="83.44%" stop-color="#E8138B"></stop></lineargradient></defs></svg></section> <script>
window.__FOOTER_PROPS__ = {
locale: 'en-US',
showDesktopLink: false,
desktopLink: undefined,
showSignIn: true
};
</script>
<script>
if (typeof uet == 'function') {
uet("be", "desktopFooter", {wb: 1});
}
</script>
<script>
if (typeof uex == 'function') {
uex("ld", "desktopFooter", {wb: 1});
}
</script>
<script>
if (typeof uet == 'function') {
uet("bb", "LoadHeaderJS", {wb: 1});
}
</script>
<script src="https://m.media-amazon.com/images/S/sash/JJwdLH4ViTW-kI$.js" type="text/javascript"></script>
<script src="https://m.media-amazon.com/images/S/sash/LEkTDT9yTAT$m1v.js" type="text/javascript"></script>
<script src="https://m.media-amazon.com/images/S/sash/SeDFkoePjfCzU00.js" type="text/javascript"></script>
<script src="https://m.media-amazon.com/images/S/sash/JkadsPuCKXe2k5I.js" type="text/javascript"></script>
<script src="https://m.media-amazon.com/images/S/sash/rvCWixNlCLN1lmK.js" type="text/javascript"></script>
<script src="https://m.media-amazon.com/images/S/sash/uYEQ-EZAaZR3vrj.js" type="text/javascript"></script>
<script src="https://m.media-amazon.com/images/S/sash/VECqMZ1Ob9rrMiv.js" type="text/javascript"></script>
<script type="text/javascript">
function jQueryOnReady(remaining_count) {
if (window.jQuery && typeof $.fn.watchlistRibbon !== 'undefined') {
jQuery(
function() {
var listConfig = imdb.userlists.getListerInitConfig(
{
listId : 'ls055592025',
refMarker : 'ttls',
mode : 'detail',
page : 1,
viewMoreOption : 'PAGINATE',
sortField : 'list_order',
sortDirection : 'asc',
showtimesDate : '',
explore : '',
ajaxURL : '/list/ls055592025/_ajax',
externalCallbacks : [window.imdb.CS.loadMoreUpdate],
}
);
imdb.userlists.listerInit(listConfig);
}
);
jQuery(
function() {
var isAdvertisingThemed = !!(window.custom && window.custom.full_page && window.custom.full_page.theme),
url = "https://www.facebook.com/widgets/like.php?width=280&show_faces=1&layout=standard&href=http%3A%2F%2Fwww.imdb.com%2Flist%2Fls055592025%2F&colorscheme=light",
like = document.getElementById('iframe_like');
if (!isAdvertisingThemed && like) {
like.src = url;
like.onload = function () {
if (typeof uex == 'function') { uex('ld', 'facebook_like_iframe', {wb: 1}); }
};
} else if (isAdvertisingThemed) {
$('.social_networking_like').closest('.aux-content-widget-2').hide();
}
}
);
} else if (remaining_count > 0) {
setTimeout(function() { jQueryOnReady(remaining_count-1) }, 100);
}
}
jQueryOnReady(50);
</script>
<script>
if (typeof uet == 'function') {
uet("bb", "RenderBranchSDK", {wb: 1});
}
</script>
<script>
if ('csm' in window) {
csm.measure('csm_RenderBranchSDK_started');
}
</script>
<script class="ics-branch-sdk-script">
if (document.domain.startsWith('m.')) {
function logBranchMetric(metricName, n) {
if (window && window.ue && typeof window.ue.count === 'function') {
window.ue.count(metricName, n);
}
}
logBranchMetric('BranchSDK.Requests', 1);
if (uet) {
uet('bb', 'LoadBranchSDK', {wb: 1});
}
(function(b,r,a,n,c,h,_,s,d,k){if(!b[n]||!b[n]._q){for(;s<_.length;)c(h,_[s++]);d=r.createElement(a);d.async=1;d.src="https://cdn.branch.io/branch-2.58.0.min.js";k=r.getElementsByTagName(a)[0];k.parentNode.insertBefore(d,k);b[n]=h}})(window,document,"script","branch",function(b,r){b[r]=function(){b._q.push([r,arguments])}},{_q:[],_v:1},"addListener applyCode autoAppIndex banner closeBanner closeJourney creditHistory credits data deepview deepviewCta first getCode init link logout redeem referrals removeListener sendSMS setBranchViewData setIdentity track validateCode trackCommerceEvent logEvent disableTracking".split(" "), 0);
branch.init('key_live_jdSfREMXW6WE9FcCt5HWFbhgswmprlIn', { timeout: 2000 }, (err, data) => {
if (uet && uex) {
uet('be', 'LoadBranchSDK', {wb: 1});
uex('ld', 'LoadBranchSDK', {wb: 1} )
}
if (err) {
console.log('Branch init error', err);
logBranchMetric('BranchSDK.Error', 1);
} else {
logBranchMetric('BranchSDK.Error', 0);
logBranchMetric('BranchSDK.Initialized', 1);
branch.setBranchViewData(
{
data: {
'$deeplink_path': '\/list/ls055592025/'
}
}
);
branch.setIdentity('000-0000000-0000000', (err, data) => {
if (err) {
console.log('Branch setIdentity error', err);
logBranchMetric('BranchSDK.Error', 1);
} else {
logBranchMetric('BranchSDK.Error', 0);
}
});
}
});
}
</script>
<script>
if ('csm' in window) {
csm.measure('csm_RenderBranchSDK_finished');
}
</script>
<script>
if (typeof uet == 'function') {
uet("be", "RenderBranchSDK", {wb: 1});
}
</script>
<script>
if (typeof uex == 'function') {
uex("ld", "RenderBranchSDK", {wb: 1});
}
</script>
<script>
if (typeof uet == 'function') {
uet("be", "LoadFooterJS", {wb: 1});
}
</script>
<script>
if (typeof uex == 'function') {
uex("ld", "LoadFooterJS", {wb: 1});
}
</script>
<div id="servertime" time="1382"></div>
<script>
if (typeof uet == 'function') {
uet("be");
}
</script>
</body>
</html>
Name=[]
for i in soup.find_all('h3',class_="lister-item-header"):
Name.append(i.text)
Name
['\n1.\nThe Godfather\n(1972)\n', '\n2.\nThe Shawshank Redemption\n(1994)\n', "\n3.\nSchindler's List\n(1993)\n", '\n4.\nRaging Bull\n(1980)\n', '\n5.\nCasablanca\n(1942)\n', '\n6.\nCitizen Kane\n(1941)\n', '\n7.\nGone with the Wind\n(1939)\n', '\n8.\nThe Wizard of Oz\n(1939)\n', "\n9.\nOne Flew Over the Cuckoo's Nest\n(1975)\n", '\n10.\nLawrence of Arabia\n(1962)\n', '\n11.\nVertigo\n(1958)\n', '\n12.\nPsycho\n(1960)\n', '\n13.\nThe Godfather Part II\n(1974)\n', '\n14.\nOn the Waterfront\n(1954)\n', '\n15.\nSunset Blvd.\n(1950)\n', '\n16.\nForrest Gump\n(1994)\n', '\n17.\nThe Sound of Music\n(1965)\n', '\n18.\n12 Angry Men\n(1957)\n', '\n19.\nWest Side Story\n(1961)\n', '\n20.\nStar Wars\n(1977)\n', '\n21.\n2001: A Space Odyssey\n(1968)\n', '\n22.\nE.T. the Extra-Terrestrial\n(1982)\n', '\n23.\nThe Silence of the Lambs\n(1991)\n', '\n24.\nChinatown\n(1974)\n', '\n25.\nThe Bridge on the River Kwai\n(1957)\n', "\n26.\nSingin' in the Rain\n(1952)\n", "\n27.\nIt's a Wonderful Life\n(1946)\n", '\n28.\nDr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb\n(1964)\n', '\n29.\nSome Like It Hot\n(1959)\n', '\n30.\nBen-Hur\n(1959)\n', '\n31.\nApocalypse Now\n(1979)\n', '\n32.\nAmadeus\n(1984)\n', '\n33.\nThe Lord of the Rings: The Return of the King\n(2003)\n', '\n34.\nGladiator\n(2000)\n', '\n35.\nTitanic\n(1997)\n', '\n36.\nFrom Here to Eternity\n(1953)\n', '\n37.\nSaving Private Ryan\n(1998)\n', '\n38.\nUnforgiven\n(1992)\n', '\n39.\nRaiders of the Lost Ark\n(1981)\n', '\n40.\nRocky\n(1976)\n', '\n41.\nA Streetcar Named Desire\n(1951)\n', '\n42.\nThe Philadelphia Story\n(1940)\n', '\n43.\nTo Kill a Mockingbird\n(1962)\n', '\n44.\nAn American in Paris\n(1951)\n', '\n45.\nThe Best Years of Our Lives\n(1946)\n', '\n46.\nMy Fair Lady\n(1964)\n', '\n47.\nA Clockwork Orange\n(1971)\n', '\n48.\nDoctor Zhivago\n(1965)\n', '\n49.\nThe Searchers\n(1956)\n', '\n50.\nJaws\n(1975)\n', '\n51.\nPatton\n(1970)\n', '\n52.\nButch Cassidy and the Sundance Kid\n(1969)\n', '\n53.\nThe Treasure of the Sierra Madre\n(1948)\n', '\n54.\nIl buono, il brutto, il cattivo\n(1966)\n', '\n55.\nThe Apartment\n(1960)\n', '\n56.\nPlatoon\n(1986)\n', '\n57.\nHigh Noon\n(1952)\n', '\n58.\nBraveheart\n(1995)\n', '\n59.\nDances with Wolves\n(1990)\n', '\n60.\nJurassic Park\n(1993)\n', '\n61.\nThe Exorcist\n(1973)\n', '\n62.\nThe Pianist\n(2002)\n', '\n63.\nGoodfellas\n(1990)\n', '\n64.\nThe Deer Hunter\n(1978)\n', '\n65.\nAll Quiet on the Western Front\n(1930)\n', '\n66.\nBonnie and Clyde\n(1967)\n', '\n67.\nThe French Connection\n(1971)\n', '\n68.\nCity Lights\n(1931)\n', '\n69.\nIt Happened One Night\n(1934)\n', '\n70.\nA Place in the Sun\n(1951)\n', '\n71.\nMidnight Cowboy\n(1969)\n', '\n72.\nMr. Smith Goes to Washington\n(1939)\n', '\n73.\nRain Man\n(1988)\n', '\n74.\nAnnie Hall\n(1977)\n', '\n75.\nFargo\n(1996)\n', '\n76.\nGiant\n(1956)\n', '\n77.\nShane\n(1953)\n', '\n78.\nThe Grapes of Wrath\n(1940)\n', '\n79.\nThe Green Mile\n(1999)\n', '\n80.\nClose Encounters of the Third Kind\n(1977)\n', '\n81.\nNashville\n(1975)\n', '\n82.\nNetwork\n(1976)\n', '\n83.\nThe Graduate\n(1967)\n', '\n84.\nAmerican Graffiti\n(1973)\n', '\n85.\nPulp Fiction\n(1994)\n', '\n86.\nTerms of Endearment\n(1983)\n', '\n87.\nGood Will Hunting\n(1997)\n', '\n88.\nThe African Queen\n(1951)\n', '\n89.\nStagecoach\n(1939)\n', '\n90.\nMutiny on the Bounty\n(1935)\n', '\n91.\nThe Great Dictator\n(1940)\n', '\n92.\nDouble Indemnity\n(1944)\n', '\n93.\nThe Maltese Falcon\n(1941)\n', '\n94.\nWuthering Heights\n(1939)\n', '\n95.\nTaxi Driver\n(1976)\n', '\n96.\nRear Window\n(1954)\n', '\n97.\nThe Third Man\n(1949)\n', '\n98.\nRebel Without a Cause\n(1955)\n', '\n99.\nNorth by Northwest\n(1959)\n', '\n100.\nYankee Doodle Dandy\n(1942)\n']
Ratings=[]
for i in soup.find_all('div',class_="ipl-rating-star small"):
Ratings.append(i.text)
Ratings
['\n\n\n\n\n\n\n\n9.2\n', '\n\n\n\n\n\n\n\n9.3\n', '\n\n\n\n\n\n\n\n9\n', '\n\n\n\n\n\n\n\n8.2\n', '\n\n\n\n\n\n\n\n8.5\n', '\n\n\n\n\n\n\n\n8.3\n', '\n\n\n\n\n\n\n\n8.2\n', '\n\n\n\n\n\n\n\n8.1\n', '\n\n\n\n\n\n\n\n8.7\n', '\n\n\n\n\n\n\n\n8.3\n', '\n\n\n\n\n\n\n\n8.3\n', '\n\n\n\n\n\n\n\n8.5\n', '\n\n\n\n\n\n\n\n9\n', '\n\n\n\n\n\n\n\n8.1\n', '\n\n\n\n\n\n\n\n8.4\n', '\n\n\n\n\n\n\n\n8.8\n', '\n\n\n\n\n\n\n\n8.1\n', '\n\n\n\n\n\n\n\n9\n', '\n\n\n\n\n\n\n\n7.6\n', '\n\n\n\n\n\n\n\n8.6\n', '\n\n\n\n\n\n\n\n8.3\n', '\n\n\n\n\n\n\n\n7.9\n', '\n\n\n\n\n\n\n\n8.6\n', '\n\n\n\n\n\n\n\n8.2\n', '\n\n\n\n\n\n\n\n8.2\n', '\n\n\n\n\n\n\n\n8.3\n', '\n\n\n\n\n\n\n\n8.6\n', '\n\n\n\n\n\n\n\n8.4\n', '\n\n\n\n\n\n\n\n8.2\n', '\n\n\n\n\n\n\n\n8.1\n', '\n\n\n\n\n\n\n\n8.5\n', '\n\n\n\n\n\n\n\n8.4\n', '\n\n\n\n\n\n\n\n9\n', '\n\n\n\n\n\n\n\n8.5\n', '\n\n\n\n\n\n\n\n7.9\n', '\n\n\n\n\n\n\n\n7.6\n', '\n\n\n\n\n\n\n\n8.6\n', '\n\n\n\n\n\n\n\n8.2\n', '\n\n\n\n\n\n\n\n8.4\n', '\n\n\n\n\n\n\n\n8.1\n', '\n\n\n\n\n\n\n\n7.9\n', '\n\n\n\n\n\n\n\n7.9\n', '\n\n\n\n\n\n\n\n8.3\n', '\n\n\n\n\n\n\n\n7.2\n', '\n\n\n\n\n\n\n\n8.1\n', '\n\n\n\n\n\n\n\n7.8\n', '\n\n\n\n\n\n\n\n8.3\n', '\n\n\n\n\n\n\n\n7.9\n', '\n\n\n\n\n\n\n\n7.9\n', '\n\n\n\n\n\n\n\n8.1\n', '\n\n\n\n\n\n\n\n7.9\n', '\n\n\n\n\n\n\n\n8\n', '\n\n\n\n\n\n\n\n8.2\n', '\n\n\n\n\n\n\n\n8.8\n', '\n\n\n\n\n\n\n\n8.3\n', '\n\n\n\n\n\n\n\n8.1\n', '\n\n\n\n\n\n\n\n8\n', '\n\n\n\n\n\n\n\n8.4\n', '\n\n\n\n\n\n\n\n8\n', '\n\n\n\n\n\n\n\n8.2\n', '\n\n\n\n\n\n\n\n8.1\n', '\n\n\n\n\n\n\n\n8.5\n', '\n\n\n\n\n\n\n\n8.7\n', '\n\n\n\n\n\n\n\n8.1\n', '\n\n\n\n\n\n\n\n8.1\n', '\n\n\n\n\n\n\n\n7.7\n', '\n\n\n\n\n\n\n\n7.7\n', '\n\n\n\n\n\n\n\n8.5\n', '\n\n\n\n\n\n\n\n8.1\n', '\n\n\n\n\n\n\n\n7.7\n', '\n\n\n\n\n\n\n\n7.8\n', '\n\n\n\n\n\n\n\n8.1\n', '\n\n\n\n\n\n\n\n8\n', '\n\n\n\n\n\n\n\n8\n', '\n\n\n\n\n\n\n\n8.1\n', '\n\n\n\n\n\n\n\n7.6\n', '\n\n\n\n\n\n\n\n7.6\n', '\n\n\n\n\n\n\n\n8.1\n', '\n\n\n\n\n\n\n\n8.6\n', '\n\n\n\n\n\n\n\n7.6\n', '\n\n\n\n\n\n\n\n7.7\n', '\n\n\n\n\n\n\n\n8.1\n', '\n\n\n\n\n\n\n\n8\n', '\n\n\n\n\n\n\n\n7.4\n', '\n\n\n\n\n\n\n\n8.9\n', '\n\n\n\n\n\n\n\n7.4\n', '\n\n\n\n\n\n\n\n8.3\n', '\n\n\n\n\n\n\n\n7.7\n', '\n\n\n\n\n\n\n\n7.8\n', '\n\n\n\n\n\n\n\n7.7\n', '\n\n\n\n\n\n\n\n8.4\n', '\n\n\n\n\n\n\n\n8.3\n', '\n\n\n\n\n\n\n\n8\n', '\n\n\n\n\n\n\n\n7.5\n', '\n\n\n\n\n\n\n\n8.2\n', '\n\n\n\n\n\n\n\n8.5\n', '\n\n\n\n\n\n\n\n8.1\n', '\n\n\n\n\n\n\n\n7.6\n', '\n\n\n\n\n\n\n\n8.3\n', '\n\n\n\n\n\n\n\n7.6\n']
Year_of_release=[]
for i in soup.find_all('span',class_='lister-item-year text-muted unbold'):
Year_of_release.append(i.text)
Year_of_release
['(1972)', '(1994)', '(1993)', '(1980)', '(1942)', '(1941)', '(1939)', '(1939)', '(1975)', '(1962)', '(1958)', '(1960)', '(1974)', '(1954)', '(1950)', '(1994)', '(1965)', '(1957)', '(1961)', '(1977)', '(1968)', '(1982)', '(1991)', '(1974)', '(1957)', '(1952)', '(1946)', '(1964)', '(1959)', '(1959)', '(1979)', '(1984)', '(2003)', '(2000)', '(1997)', '(1953)', '(1998)', '(1992)', '(1981)', '(1976)', '(1951)', '(1940)', '(1962)', '(1951)', '(1946)', '(1964)', '(1971)', '(1965)', '(1956)', '(1975)', '(1970)', '(1969)', '(1948)', '(1966)', '(1960)', '(1986)', '(1952)', '(1995)', '(1990)', '(1993)', '(1973)', '(2002)', '(1990)', '(1978)', '(1930)', '(1967)', '(1971)', '(1931)', '(1934)', '(1951)', '(1969)', '(1939)', '(1988)', '(1977)', '(1996)', '(1956)', '(1953)', '(1940)', '(1999)', '(1977)', '(1975)', '(1976)', '(1967)', '(1973)', '(1994)', '(1983)', '(1997)', '(1951)', '(1939)', '(1935)', '(1940)', '(1944)', '(1941)', '(1939)', '(1976)', '(1954)', '(1949)', '(1955)', '(1959)', '(1942)']
print(len(Name),len(Ratings),len(Year_of_release))
100 100 100
import pandas as pd
df=pd.DataFrame({'Movie_title':Name,'Ratings':Ratings,'Year of release':Year_of_release})
df
| Movie_title | Ratings | Year of release | |
|---|---|---|---|
| 0 | \n1.\nThe Godfather\n(1972)\n | \n\n\n\n\n\n\n\n9.2\n | (1972) |
| 1 | \n2.\nThe Shawshank Redemption\n(1994)\n | \n\n\n\n\n\n\n\n9.3\n | (1994) |
| 2 | \n3.\nSchindler's List\n(1993)\n | \n\n\n\n\n\n\n\n9\n | (1993) |
| 3 | \n4.\nRaging Bull\n(1980)\n | \n\n\n\n\n\n\n\n8.2\n | (1980) |
| 4 | \n5.\nCasablanca\n(1942)\n | \n\n\n\n\n\n\n\n8.5\n | (1942) |
| ... | ... | ... | ... |
| 95 | \n96.\nRear Window\n(1954)\n | \n\n\n\n\n\n\n\n8.5\n | (1954) |
| 96 | \n97.\nThe Third Man\n(1949)\n | \n\n\n\n\n\n\n\n8.1\n | (1949) |
| 97 | \n98.\nRebel Without a Cause\n(1955)\n | \n\n\n\n\n\n\n\n7.6\n | (1955) |
| 98 | \n99.\nNorth by Northwest\n(1959)\n | \n\n\n\n\n\n\n\n8.3\n | (1959) |
| 99 | \n100.\nYankee Doodle Dandy\n(1942)\n | \n\n\n\n\n\n\n\n7.6\n | (1942) |
100 rows × 3 columns
3) Write a python program to display IMDB’s Top rated 100 Indian movies’ data (i.e. name, rating, year of release) and make data frame
url=requests.get("https://www.imdb.com/list/ls056092300/")
url
<Response [200]>
soup=BeautifulSoup(url.text,'html.parser')
soup
<!DOCTYPE html>
<html xmlns:fb="http://www.facebook.com/2008/fbml" xmlns:og="http://ogp.me/ns#">
<head>
<meta charset="utf-8"/>
<script type="text/javascript">var IMDbTimer={starttime: new Date().getTime(),pt:'java'};</script>
<script>
if (typeof uet == 'function') {
uet("bb", "LoadTitle", {wb: 1});
}
</script>
<script>(function(t){ (t.events = t.events || {})["csm_head_pre_title"] = new Date().getTime(); })(IMDbTimer);</script>
<title>100 Best Indian Films Till Date - IMDb</title>
<script>(function(t){ (t.events = t.events || {})["csm_head_post_title"] = new Date().getTime(); })(IMDbTimer);</script>
<script>
if (typeof uet == 'function') {
uet("be", "LoadTitle", {wb: 1});
}
</script>
<script>
if (typeof uex == 'function') {
uex("ld", "LoadTitle", {wb: 1});
}
</script>
<link href="https://www.imdb.com/list/ls056092300/" rel="canonical"/>
<meta content="http://www.imdb.com/list/ls056092300/" property="og:url">
<script>
if (typeof uet == 'function') {
uet("bb", "LoadIcons", {wb: 1});
}
</script>
<script>(function(t){ (t.events = t.events || {})["csm_head_pre_icon"] = new Date().getTime(); })(IMDbTimer);</script>
<link href="https://m.media-amazon.com/images/G/01/imdb/images-ANDW73HA/favicon_desktop_32x32._CB1582158068_.png" rel="icon" sizes="32x32"/>
<link href="https://m.media-amazon.com/images/G/01/imdb/images-ANDW73HA/favicon_iPad_retina_167x167._CB1582158068_.png" rel="icon" sizes="167x167"/>
<link href="https://m.media-amazon.com/images/G/01/imdb/images-ANDW73HA/favicon_iPhone_retina_180x180._CB1582158069_.png" rel="icon" sizes="180x180"/>
<link href="https://m.media-amazon.com/images/G/01/imdb/images-ANDW73HA/apple-touch-icon-mobile._CB479963088_.png" rel="apple-touch-icon"/>
<link href="https://m.media-amazon.com/images/G/01/imdb/images-ANDW73HA/apple-touch-icon-mobile-76x76._CB479962152_.png" rel="apple-touch-icon" sizes="76x76"/>
<link href="https://m.media-amazon.com/images/G/01/imdb/images-ANDW73HA/apple-touch-icon-mobile-120x120._CB479963088_.png" rel="apple-touch-icon" sizes="120x120"/>
<link href="https://m.media-amazon.com/images/G/01/imdb/images-ANDW73HA/apple-touch-icon-web-152x152._CB479963088_.png" rel="apple-touch-icon" sizes="152x152"/>
<link href="https://m.media-amazon.com/images/G/01/imdb/images-ANDW73HA/android-mobile-196x196._CB479962153_.png" rel="shortcut icon" sizes="196x196"/>
<meta content="#000000" name="theme-color"/>
<link href="https://m.media-amazon.com/images/S/sash/MzfIBMq9GBucYqW.xml" rel="search" title="IMDb" type="application/opensearchdescription+xml"/>
<script>(function(t){ (t.events = t.events || {})["csm_head_post_icon"] = new Date().getTime(); })(IMDbTimer);</script>
<script>
if (typeof uet == 'function') {
uet("be", "LoadIcons", {wb: 1});
}
</script>
<script>
if (typeof uex == 'function') {
uex("ld", "LoadIcons", {wb: 1});
}
</script>
<meta content="ls056092300" property="pageId"/>
<meta content="list" property="pageType"/>
<meta content="title" property="subpageType"/>
<link href="https://m.media-amazon.com/images/G/01/imdb/images/social/imdb_logo._CB410901634_.png" rel="image_src"/>
<meta content="https://m.media-amazon.com/images/G/01/imdb/images/social/imdb_logo._CB410901634_.png" property="og:image"/>
<meta content="115109575169727" property="fb:app_id"/>
<meta content="100 Best Indian Films Till Date - IMDb" property="og:title"/>
<meta content="IMDb" property="og:site_name"/>
<meta content="100 Best Indian Films Till Date - IMDb" name="title"/>
<meta content="100 Best Indian Films Till Date" name="description"/>
<meta content="100 Best Indian Films Till Date" property="og:description"/>
<meta content="V08TVFRDGA73DC3WB6XY" name="request_id"/>
<script type="application/ld+json">{
"@context": "http://schema.org",
"@type": "CreativeWork",
"about": {
"@type": "ItemList",
"itemListElement": [
{
"@type": "ListItem",
"position": "1",
"url": "/title/tt1773764/"
},
{
"@type": "ListItem",
"position": "2",
"url": "/title/tt0119385/"
},
{
"@type": "ListItem",
"position": "3",
"url": "/title/tt0052954/"
},
{
"@type": "ListItem",
"position": "4",
"url": "/title/tt0169102/"
},
{
"@type": "ListItem",
"position": "5",
"url": "/title/tt0048473/"
},
{
"@type": "ListItem",
"position": "6",
"url": "/title/tt0057935/"
},
{
"@type": "ListItem",
"position": "7",
"url": "/title/tt0405508/"
},
{
"@type": "ListItem",
"position": "8",
"url": "/title/tt1327035/"
},
{
"@type": "ListItem",
"position": "9",
"url": "/title/tt1187043/"
},
{
"@type": "ListItem",
"position": "10",
"url": "/title/tt0043306/"
},
{
"@type": "ListItem",
"position": "11",
"url": "/title/tt0093603/"
},
{
"@type": "ListItem",
"position": "12",
"url": "/title/tt0048956/"
},
{
"@type": "ListItem",
"position": "13",
"url": "/title/tt0251355/"
},
{
"@type": "ListItem",
"position": "14",
"url": "/title/tt0050870/"
},
{
"@type": "ListItem",
"position": "15",
"url": "/title/tt0076080/"
},
{
"@type": "ListItem",
"position": "16",
"url": "/title/tt0073707/"
},
{
"@type": "ListItem",
"position": "17",
"url": "/title/tt0065416/"
},
{
"@type": "ListItem",
"position": "18",
"url": "/title/tt0050322/"
},
{
"@type": "ListItem",
"position": "19",
"url": "/title/tt0112553/"
},
{
"@type": "ListItem",
"position": "20",
"url": "/title/tt0154942/"
},
{
"@type": "ListItem",
"position": "21",
"url": "/title/tt0045693/"
},
{
"@type": "ListItem",
"position": "22",
"url": "/title/tt0073034/"
},
{
"@type": "ListItem",
"position": "23",
"url": "/title/tt0095872/"
},
{
"@type": "ListItem",
"position": "24",
"url": "/title/tt0054098/"
},
{
"@type": "ListItem",
"position": "25",
"url": "/title/tt0090634/"
},
{
"@type": "ListItem",
"position": "26",
"url": "/title/tt0050665/"
},
{
"@type": "ListItem",
"position": "27",
"url": "/title/tt0063023/"
},
{
"@type": "ListItem",
"position": "28",
"url": "/title/tt1954470/"
},
{
"@type": "ListItem",
"position": "29",
"url": "/title/tt0059246/"
},
{
"@type": "ListItem",
"position": "30",
"url": "/title/tt0195231/"
},
{
"@type": "ListItem",
"position": "31",
"url": "/title/tt0105271/"
},
{
"@type": "ListItem",
"position": "32",
"url": "/title/tt0093578/"
},
{
"@type": "ListItem",
"position": "33",
"url": "/title/tt0054073/"
},
{
"@type": "ListItem",
"position": "34",
"url": "/title/tt1524539/"
},
{
"@type": "ListItem",
"position": "35",
"url": "/title/tt0085913/"
},
{
"@type": "ListItem",
"position": "36",
"url": "/title/tt0098999/"
},
{
"@type": "ListItem",
"position": "37",
"url": "/title/tt0232753/"
},
{
"@type": "ListItem",
"position": "38",
"url": "/title/tt0211126/"
},
{
"@type": "ListItem",
"position": "39",
"url": "/title/tt0292490/"
},
{
"@type": "ListItem",
"position": "40",
"url": "/title/tt2356180/"
},
{
"@type": "ListItem",
"position": "41",
"url": "/title/tt0072783/"
},
{
"@type": "ListItem",
"position": "42",
"url": "/title/tt0112870/"
},
{
"@type": "ListItem",
"position": "43",
"url": "/title/tt0986264/"
},
{
"@type": "ListItem",
"position": "44",
"url": "/title/tt0085178/"
},
{
"@type": "ListItem",
"position": "45",
"url": "/title/tt0075747/"
},
{
"@type": "ListItem",
"position": "46",
"url": "/title/tt1305797/"
},
{
"@type": "ListItem",
"position": "47",
"url": "/title/tt0086230/"
},
{
"@type": "ListItem",
"position": "48",
"url": "/title/tt0396962/"
},
{
"@type": "ListItem",
"position": "49",
"url": "/title/tt0102258/"
},
{
"@type": "ListItem",
"position": "50",
"url": "/title/tt0154565/"
},
{
"@type": "ListItem",
"position": "51",
"url": "/title/tt0048613/"
},
{
"@type": "ListItem",
"position": "52",
"url": "/title/tt0312859/"
},
{
"@type": "ListItem",
"position": "53",
"url": "/title/tt0110076/"
},
{
"@type": "ListItem",
"position": "54",
"url": "/title/tt2218988/"
},
{
"@type": "ListItem",
"position": "55",
"url": "/title/tt0109206/"
},
{
"@type": "ListItem",
"position": "56",
"url": "/title/tt0323013/"
},
{
"@type": "ListItem",
"position": "57",
"url": "/title/tt0400234/"
},
{
"@type": "ListItem",
"position": "58",
"url": "/title/tt0074858/"
},
{
"@type": "ListItem",
"position": "59",
"url": "/title/tt0154159/"
},
{
"@type": "ListItem",
"position": "60",
"url": "/title/tt2181931/"
},
{
"@type": "ListItem",
"position": "61",
"url": "/title/tt0061842/"
},
{
"@type": "ListItem",
"position": "62",
"url": "/title/tt0067546/"
},
{
"@type": "ListItem",
"position": "63",
"url": "/title/tt0379370/"
},
{
"@type": "ListItem",
"position": "64",
"url": "/title/tt0053965/"
},
{
"@type": "ListItem",
"position": "65",
"url": "/title/tt0056436/"
},
{
"@type": "ListItem",
"position": "66",
"url": "/title/tt0076696/"
},
{
"@type": "ListItem",
"position": "67",
"url": "/title/tt0263778/"
},
{
"@type": "ListItem",
"position": "68",
"url": "/title/tt0267363/"
},
{
"@type": "ListItem",
"position": "69",
"url": "/title/tt1180583/"
},
{
"@type": "ListItem",
"position": "70",
"url": "/title/tt0329393/"
},
{
"@type": "ListItem",
"position": "71",
"url": "/title/tt0097045/"
},
{
"@type": "ListItem",
"position": "72",
"url": "/title/tt0109732/"
},
{
"@type": "ListItem",
"position": "73",
"url": "/title/tt2717168/"
},
{
"@type": "ListItem",
"position": "74",
"url": "/title/tt0086231/"
},
{
"@type": "ListItem",
"position": "75",
"url": "/title/tt0374887/"
},
{
"@type": "ListItem",
"position": "76",
"url": "/title/tt0088031/"
},
{
"@type": "ListItem",
"position": "77",
"url": "/title/tt0067164/"
},
{
"@type": "ListItem",
"position": "78",
"url": "/title/tt0832971/"
},
{
"@type": "ListItem",
"position": "79",
"url": "/title/tt2146960/"
},
{
"@type": "ListItem",
"position": "80",
"url": "/title/tt0373856/"
},
{
"@type": "ListItem",
"position": "81",
"url": "/title/tt0215517/"
},
{
"@type": "ListItem",
"position": "82",
"url": "/title/tt0499375/"
},
{
"@type": "ListItem",
"position": "83",
"url": "/title/tt0109117/"
},
{
"@type": "ListItem",
"position": "84",
"url": "/title/tt0058547/"
},
{
"@type": "ListItem",
"position": "85",
"url": "/title/tt0076492/"
},
{
"@type": "ListItem",
"position": "86",
"url": "/title/tt0064086/"
},
{
"@type": "ListItem",
"position": "87",
"url": "/title/tt0118751/"
},
{
"@type": "ListItem",
"position": "88",
"url": "/title/tt0437407/"
},
{
"@type": "ListItem",
"position": "89",
"url": "/title/tt0047990/"
},
{
"@type": "ListItem",
"position": "90",
"url": "/title/tt1461674/"
},
{
"@type": "ListItem",
"position": "91",
"url": "/title/tt0172684/"
},
{
"@type": "ListItem",
"position": "92",
"url": "/title/tt0376076/"
},
{
"@type": "ListItem",
"position": "93",
"url": "/title/tt1045898/"
},
{
"@type": "ListItem",
"position": "94",
"url": "/title/tt0059028/"
},
{
"@type": "ListItem",
"position": "95",
"url": "/title/tt0085743/"
},
{
"@type": "ListItem",
"position": "96",
"url": "/title/tt0052572/"
},
{
"@type": "ListItem",
"position": "97",
"url": "/title/tt1286811/"
},
{
"@type": "ListItem",
"position": "98",
"url": "/title/tt0265343/"
},
{
"@type": "ListItem",
"position": "99",
"url": "/title/tt0375611/"
},
{
"@type": "ListItem",
"position": "100",
"url": "/title/tt0072860/"
}
]
},
"dateModified": "2013-07-24T02:34Z",
"name": "100 Best Indian Films Till Date",
"description": "Here is the list of 100 Best Indian Films till date"
}</script>
<script>
(function (win) {
win.PLAID_LOAD_FONTS_FIRED = true;
if (typeof win.FontFace !== "undefined"
&& typeof win.Promise !== "undefined") {
if (win.ue) {
win.uet("bb", "LoadRoboto", { wb: 1 });
}
var allowableLoadTime = 1000;
var startTimeInt = +new Date();
var roboto = new FontFace('Roboto',
'url(https://m.media-amazon.com/images/G/01/IMDb/cm9ib3Rv.woff2)',
{ style:'normal', weight: 400 });
var robotoMedium = new FontFace('Roboto',
'url(https://m.media-amazon.com/images/G/01/IMDb/cm9ib3RvTWVk.woff2)',
{ style:'normal', weight: 500 });
var robotoBold = new FontFace('Roboto',
'url(https://m.media-amazon.com/images/G/01/IMDb/cm9ib3RvQm9sZA.woff2)',
{ style:'normal', weight: 600 });
var robotoLoaded = roboto.load();
var robotoMediumLoaded = robotoMedium.load();
var robotoBoldLoaded = robotoBold.load();
win.Promise.all([robotoLoaded, robotoMediumLoaded, robotoBoldLoaded]).then(function() {
var loadTimeInt = +new Date();
var robotoLoadedCount = 0;
if ((loadTimeInt - startTimeInt) <= allowableLoadTime) {
win.document.fonts.add(roboto);
win.document.fonts.add(robotoMedium);
win.document.fonts.add(robotoBold);
robotoLoadedCount++;
}
if (win.ue) {
win.ue.count("roboto-loaded", robotoLoadedCount);
win.uet("be", "LoadRoboto", { wb: 1 });
win.uex("ld", "LoadRoboto", { wb: 1 });
}
}).catch(function() {
if (win.ue) {
win.ue.count("roboto-loaded", 0);
}
});
} else {
if (win.ue) {
win.ue.count("roboto-load-not-attempted", 1);
}
}
})(window);
</script>
<script>
if (typeof uet == 'function') {
uet("bb", "LoadCSS", {wb: 1});
}
</script>
<script>(function(t){ (t.events = t.events || {})["csm_head_pre_css"] = new Date().getTime(); })(IMDbTimer);</script>
<link href="https://m.media-amazon.com/images/S/sash/2FZ-VC3MvxHOxkB.css" rel="stylesheet" type="text/css">
<!-- h=ics-c52xl-5-1f-519cb453.us-east-1 -->
<!--[if IE]><link rel="stylesheet" type="text/css" href="https://m.media-amazon.com/images/S/sash/pXHSPBTKPo0GIjW.css" /><![endif]-->
<link href="https://m.media-amazon.com/images/S/sash/i-Y65BmJrKWIfbK.css" rel="stylesheet" type="text/css"/>
<link href="https://m.media-amazon.com/images/S/sash/HqcrRlviNTScutU.css" rel="stylesheet" type="text/css"/>
<link href="https://m.media-amazon.com/images/S/sash/mrwUCCyp3V14GU0.css" rel="stylesheet" type="text/css"/>
<link href="https://m.media-amazon.com/images/S/sash/uPqNlbpttveRLMo.css" rel="stylesheet" type="text/css"/>
<noscript>
<link href="https://m.media-amazon.com/images/S/sash/CCc6Ja$8QUPPKkY.css" rel="stylesheet" type="text/css"/>
</noscript>
<script>(function(t){ (t.events = t.events || {})["csm_head_post_css"] = new Date().getTime(); })(IMDbTimer);</script>
<script>
if (typeof uet == 'function') {
uet("be", "LoadCSS", {wb: 1});
}
</script>
<script>
if (typeof uex == 'function') {
uex("ld", "LoadCSS", {wb: 1});
}
</script>
<script>
if (typeof uet == 'function') {
uet("bb", "LoadJS", {wb: 1});
}
</script>
<script>
if (typeof uet == 'function') {
uet("bb", "LoadHeaderJS", {wb: 1});
}
</script>
<script>(function(t){ (t.events = t.events || {})["csm_head_pre_ads"] = new Date().getTime(); })(IMDbTimer);</script>
<script type="text/javascript">
// ensures js doesn't die if ads service fails.
// Note that we need to define the js here, since ad js is being rendered inline after this.
(function(f) {
// Fallback javascript, when the ad Service call fails.
if((window.csm == null || window.generic == null || window.consoleLog == null)) {
if (window.console && console.log) {
console.log("one or more of window.csm, window.generic or window.consoleLog has been stubbed...");
}
}
window.csm = window.csm || { measure:f, record:f, duration:f, listen:f, metrics:{} };
window.generic = window.generic || { monitoring: { start_timing: f, stop_timing: f } };
window.consoleLog = window.consoleLog || f;
})(function() {});
</script>
<script type="text/javascript">window.useRatingTaskCompletion = true;</script>
<script>
if ('csm' in window) {
csm.measure('csm_head_delivery_finished');
}
</script>
<script>
if (typeof uet == 'function') {
uet("be", "LoadHeaderJS", {wb: 1});
}
</script>
<script>
if (typeof uex == 'function') {
uex("ld", "LoadHeaderJS", {wb: 1});
}
</script>
<script>
if (typeof uet == 'function') {
uet("be", "LoadJS", {wb: 1});
}
</script>
<script>
if (typeof uex == 'function') {
uex("ld", "LoadJS", {wb: 1});
}
</script>
</link></meta></head>
<body class="fixed" id="styleguide-v2">
<script>
if (typeof uet == 'function') {
uet("bb");
}
</script>
<script>
if ('csm' in window) {
csm.measure('csm_body_delivery_started');
}
</script>
<script>
if (typeof uet == 'function') {
uet("ns");
}
</script>
<style data-styled="true" data-styled-version="5.3.5">.hKcFfj{-webkit-flex-shrink:0;-ms-flex-negative:0;flex-shrink:0;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;margin-left:0.25rem;margin-right:auto;-webkit-order:1;-ms-flex-order:1;order:1;position:relative;}/*!sc*/
@media screen and (min-width:1024px){.hKcFfj{margin-left:auto;margin-right:0.5rem;-webkit-order:0;-ms-flex-order:0;order:0;padding-left:0;}}/*!sc*/
@media (hover:hover) and (pointer:fine){.hKcFfj:focus{outline:1px dashed currentColor;}.hKcFfj:focus:active{outline:0;}.hKcFfj:before,.hKcFfj:after{border-radius:10%;bottom:0;content:'';height:100%;left:0;margin:auto;opacity:0;position:absolute;right:0;top:0;-webkit-transition:opacity 0.2s cubic-bezier(1,1,1,1);transition:opacity 0.2s cubic-bezier(1,1,1,1);width:100%;background:rgb(0,0,0);background:var(--ipt-on-accent1-color,rgb(0,0,0));}.hKcFfj:hover:before{opacity:0.08;opacity:var(--ipt-base-hover-opacity,0.08);}.hKcFfj:active:after{opacity:0.16;opacity:var(--ipt-base-pressed-opacity,0.16);}}/*!sc*/
data-styled.g1[id="sc-bczRLJ"]{content:"hKcFfj,"}/*!sc*/
.lbYfkb li:first-child > .searchResult{border-top:none;}/*!sc*/
.lbYfkb .searchTypeahead__input{font-family:'Roboto','Helvetica','Arial',sans-serif;font-family:var(--ipt-font-family);font-size:1rem;font-size:var(--ipt-type-body-size,1rem);font-weight:400;font-weight:var(--ipt-type-body-weight,400);-webkit-letter-spacing:.03125em;-moz-letter-spacing:.03125em;-ms-letter-spacing:.03125em;letter-spacing:.03125em;-webkit-letter-spacing:var(--ipt-type-body-letterSpacing,.03125em);-moz-letter-spacing:var(--ipt-type-body-letterSpacing,.03125em);-ms-letter-spacing:var(--ipt-type-body-letterSpacing,.03125em);letter-spacing:var(--ipt-type-body-letterSpacing,.03125em);line-height:1.5rem;line-height:var(--ipt-type-body-lineHeight,1.5rem);text-transform:none;text-transform:var(--ipt-type-body-textTransform,none);color:rgb(255,255,255);color:var(--ipt-on-baseAlt-color,rgb(255,255,255));caret-color:rgb(255,255,255);caret-color:var(--ipt-on-baseAlt-color,rgb(255,255,255));}/*!sc*/
.lbYfkb .searchTypeahead__input:placeholder{color:rgba(255,255,255,0.5);color:var(--ipt-on-baseAlt-textHint-color,rgba(255,255,255,0.5));}/*!sc*/
@media screen and (min-width:600px){.lbYfkb .searchTypeahead__input{font-family:'Roboto','Helvetica','Arial',sans-serif;font-family:var(--ipt-font-family);font-size:.875rem;font-size:var(--ipt-type-bodySmall-size,.875rem);font-weight:400;font-weight:var(--ipt-type-bodySmall-weight,400);-webkit-letter-spacing:.01786em;-moz-letter-spacing:.01786em;-ms-letter-spacing:.01786em;letter-spacing:.01786em;-webkit-letter-spacing:var(--ipt-type-bodySmall-letterSpacing,.01786em);-moz-letter-spacing:var(--ipt-type-bodySmall-letterSpacing,.01786em);-ms-letter-spacing:var(--ipt-type-bodySmall-letterSpacing,.01786em);letter-spacing:var(--ipt-type-bodySmall-letterSpacing,.01786em);line-height:1.25rem;line-height:var(--ipt-type-bodySmall-lineHeight,1.25rem);text-transform:none;text-transform:var(--ipt-type-bodySmall-textTransform,none);color:rgba(0,0,0,0.87);color:var(--ipt-on-base-textPrimary-color,rgba(0,0,0,0.87));caret-color:rgba(0,0,0,0.54);caret-color:var(--ipt-on-base-textSecondary-color,rgba(0,0,0,0.54));}}/*!sc*/
data-styled.g7[id="sc-gKXOVf"]{content:"lbYfkb,"}/*!sc*/
.iosfhR{position:relative;}/*!sc*/
.iosfhR.navbar__flyout__text-button-after-mobile,.iosfhR .navbar__flyout__text-button-after-mobile{display:none;}/*!sc*/
.iosfhR .navbar__flyout__text-button-after-mobile > div{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}/*!sc*/
.iosfhR .navbar__flyout--menu{top:100%;position:absolute;margin-top:0.25rem;}/*!sc*/
.iosfhR.iosfhR.navbar__flyout--positionLeft .navbar__flyout--menu{left:0;right:auto;}/*!sc*/
@media screen and (min-width:600px){.iosfhR.navbar__flyout--breakpoint-m .navbar__flyout__icon-on-mobile{display:none;}.iosfhR.navbar__flyout--breakpoint-m .navbar__flyout__text-button-after-mobile{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;}}/*!sc*/
@media screen and (min-width:1024px){.iosfhR.navbar__flyout--breakpoint-l .navbar__flyout__icon-on-mobile{display:none;}.iosfhR.navbar__flyout--breakpoint-l .navbar__flyout__text-button-after-mobile{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;}}/*!sc*/
@media screen and (min-width:1280px){.iosfhR.navbar__flyout--breakpoint-xl .navbar__flyout__icon-on-mobile{display:none;}.iosfhR.navbar__flyout--breakpoint-xl .navbar__flyout__text-button-after-mobile{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;}}/*!sc*/
.iosfhR .navbar__flyout__button-pointer{-webkit-transition:-webkit-transform 0.2s;-webkit-transition:transform 0.2s;transition:transform 0.2s;-webkit-transform:rotateX(0);-ms-transform:rotateX(0);transform:rotateX(0);}/*!sc*/
.iosfhR.navbar__flyout--isVisible .navbar__flyout__button-pointer{-webkit-transform:rotateX(180deg);-ms-transform:rotateX(180deg);transform:rotateX(180deg);}/*!sc*/
data-styled.g8[id="sc-iBkjds"]{content:"iosfhR,"}/*!sc*/
.cumdHr .searchCatSelector__opener{border-radius:2px 0 0 2px;padding:0 0 0 0.5rem;min-height:32px;height:20px;border-right:1px solid rgba(0,0,0,0.3);}/*!sc*/
.cumdHr .searchCatSelector .searchCatSelector__item{-webkit-transition:color 0.15s;transition:color 0.15s;cursor:poiner;}/*!sc*/
.cumdHr .searchCatSelector .searchCatSelector__item .searchCatSelector__itemIcon{margin-right:0.75rem;opacity:0.5;-webkit-transition:opacity 0.2s;transition:opacity 0.2s;}/*!sc*/
.cumdHr .searchCatSelector .searchCatSelector__item:hover .searchCatSelector__itemIcon,.cumdHr .searchCatSelector .searchCatSelector__item:focus .searchCatSelector__itemIcon,.cumdHr .searchCatSelector .searchCatSelector__item.searchCatSelector__itemSelected .searchCatSelector__itemIcon{opacity:1;}/*!sc*/
.cumdHr .searchCatSelector .searchCatSelector__item.searchCatSelector__itemSelected{color:rgb(245,197,24);color:var(--ipt-on-base-accent1-color,rgb(245,197,24));}/*!sc*/
data-styled.g9[id="sc-ftvSup"]{content:"cumdHr,"}/*!sc*/
.exojnx{background:rgb(31,31,31);background:var(--ipt-baseAlt-shade1-bg,rgb(31,31,31));display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;margin:0;padding:0;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}/*!sc*/
@media screen and (min-width:600px){.exojnx.searchform--focused .searchform__submit{background:transparent;opacity:1;}}/*!sc*/
@media screen and (min-width:600px){.exojnx{-webkit-transition:border 0.2s,background-color 0.2s,box-shadow 0.2s;transition:border 0.2s,background-color 0.2s,box-shadow 0.2s;background:rgb(255,255,255);background:var(--ipt-base-bg,rgb(255,255,255));border-radius:.25rem;border-radius:var(--ipt-cornerRadius,.25rem);}.exojnx.searchform--focused{background:rgb(255,255,255);background:var(--ipt-base-bg,rgb(255,255,255));outline:none;border-color:none;box-shadow:inset 0 0 0 2px rgb(245,197,24);box-shadow:inset 0 0 0 2px var(--ipt-accent1-color,rgb(245,197,24));}}/*!sc*/
.exojnx .searchform__inputContainer{width:100%;padding-right:3.5rem;}/*!sc*/
.exojnx .searchform__submit{background:rgb(250,250,250);background:var(--ipt-base-shade1-bg,rgb(250,250,250));color:rgba(0,0,0,0.54);color:var(--ipt-on-base-textSecondary-color,rgba(0,0,0,0.54));border-radius:.25rem;border-radius:var(--ipt-cornerRadius,.25rem);position:absolute;right:0.35rem;min-width:2rem;cursor:pointer;top:0.35rem;-webkit-transition:all 0.2s;transition:all 0.2s;}/*!sc*/
@media screen and (min-width:600px){.exojnx .searchform__submit{background:rgb(255,255,255);background:var(--ipt-base-bg,rgb(255,255,255));}}/*!sc*/
.exojnx .imdb-header-search__input{background:transparent;-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;outline:none;padding:1rem 1rem 1rem 0.75rem;width:100%;}/*!sc*/
@media screen and (min-width:600px){.exojnx .imdb-header-search__input{padding:0.375em 0 0.375rem 0.5rem;}}/*!sc*/
.exojnx .imdb-header-search__input::-ms-clear{display:none;}/*!sc*/
data-styled.g10[id="sc-papXJ"]{content:"exojnx,"}/*!sc*/
.iJNbPT{-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;left:0;margin:0;min-height:3.5rem;opacity:0;-webkit-transform:translateY(-10px);-ms-transform:translateY(-10px);transform:translateY(-10px);-webkit-transition:none;transition:none;-webkit-order:3;-ms-flex-order:3;order:3;pointer-events:none;position:absolute;top:0;visibility:hidden;width:100%;z-index:1;}/*!sc*/
.iJNbPT .imdb-header-search__state-closer{-webkit-transform:scale(0.5);-ms-transform:scale(0.5);transform:scale(0.5);-webkit-transition:-webkit-transform 0.2s 0.1s;-webkit-transition:transform 0.2s 0.1s;transition:transform 0.2s 0.1s;display:inline;margin:0.25rem;position:absolute;right:0;top:0;}/*!sc*/
.iJNbPT .imdb-header-search__state,.iJNbPT .imdb-header-search__input,.iJNbPT .nav-search__search-submit{-moz-appearance:none;-webkit-appearance:none;-webkit-appearance:none;-moz-appearance:none;appearance:none;border:none;}/*!sc*/
@media screen and (min-width:600px){.iJNbPT{-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;margin:0 0.5rem;padding:0;min-height:2.25rem;-webkit-order:3;-ms-flex-order:3;order:3;opacity:1;visibility:visible;pointer-events:auto;position:relative;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0);}.iJNbPT .imdb-header-search__state,.iJNbPT .nav-search__search-submit{padding:0;}.iJNbPT .nav-search__search-submit:focus{outline:var(--ipt-focus-outline-on-base);outline-offset:1px;}.iJNbPT .imdb-header-search__state-closer{display:none;}}/*!sc*/
data-styled.g11[id="sc-jqUVSM"]{content:"iJNbPT,"}/*!sc*/
.cxVnln{-webkit-transition:all 0.3s;transition:all 0.3s;opacity:1;-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1);-webkit-order:3;-ms-flex-order:3;order:3;}/*!sc*/
@media screen and (min-width:600px){.cxVnln{-webkit-order:3;-ms-flex-order:3;order:3;}.cxVnln.imdb-header-search__state-opener{display:none;}}/*!sc*/
data-styled.g12[id="sc-kDDrLX"]{content:"cxVnln,"}/*!sc*/
.iKpzZH:checked ~ .nav-search__search-container{background-color:rgb(0,0,0);background-color:var(--ipt-baseAlt-color,rgb(0,0,0));opacity:1;-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1);-webkit-transition:opacity 0.2s,-webkit-transform 0.2s;-webkit-transition:opacity 0.2s,transform 0.2s;transition:opacity 0.2s,transform 0.2s;visibility:visible;pointer-events:auto;z-index:100;}/*!sc*/
.iKpzZH:checked ~ .nav-search__search-container .nav-search__search-select,.iKpzZH:checked ~ .nav-search__search-container .nav-search__search-submit{display:none;}/*!sc*/
.iKpzZH:checked ~ .nav-search__search-container .imdb-header-search__state-closer{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1);}/*!sc*/
.iKpzZH:checked ~ .nav-search__search-container ~ .sc-kDDrLX{-webkit-transform:scale(0.5);-ms-transform:scale(0.5);transform:scale(0.5);-webkit-transition:all 0.3s 0.3s;transition:all 0.3s 0.3s;opacity:0;}/*!sc*/
data-styled.g13[id="sc-iqcoie"]{content:"iKpzZH,"}/*!sc*/
body.drawer-bodyLocked{overflow:hidden;position:relative;}/*!sc*/
data-styled.g14[id="sc-global-kcltSs1"]{content:"sc-global-kcltSs1,"}/*!sc*/
.PMSTF.drawer{bottom:0;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;left:0;overflow:hidden;-webkit-perspective:70vh;-moz-perspective:70vh;-ms-perspective:70vh;perspective:70vh;pointer-events:none;position:fixed;right:0;top:0;visibility:hidden;z-index:100;}/*!sc*/
.PMSTF .drawer__panel{background:rgb(31,31,31);background:var(--ipt-baseAlt-shade1-bg,rgb(31,31,31));box-shadow:none;box-sizing:border-box;height:100%;overflow-x:hidden;overflow-y:auto;position:relative;-webkit-transform:translateX(calc(-100% - 36px));-ms-transform:translateX(calc(-100% - 36px));transform:translateX(calc(-100% - 36px));-webkit-transform-origin:right center;-ms-transform-origin:right center;transform-origin:right center;-webkit-transition:all 0.3s,box-shadow 0s;transition:all 0.3s,box-shadow 0s;width:280px;z-index:2;-webkit-overflow-scroll:touch;}/*!sc*/
.PMSTF .drawer__backdrop{background:rgb(31,31,31);background:var(--ipt-baseAlt-shade1-bg,rgb(31,31,31));box-sizing:border-box;display:block;height:100%;left:0;opacity:0;position:absolute;top:0;-webkit-transition:opacity 0.3s;transition:opacity 0.3s;visibility:hidden;width:100%;will-change:opacity;z-index:1;}/*!sc*/
.PMSTF .drawer__panelHeader{background:var(--ipt-baseAlt-stripes-bg);-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:end;-webkit-justify-content:flex-end;-ms-flex-pack:end;justify-content:flex-end;min-height:3.5rem;margin-bottom:0.5rem;padding:0.25rem;}/*!sc*/
.PMSTF .drawer__panelHeaderClose{-webkit-touch-callout:none;-webkit-tap-highlight-color:transparent;}/*!sc*/
.drawer__state:checked ~ .sc-crXcEl.drawer{pointer-events:auto;visibility:visible;}/*!sc*/
.drawer__state:checked ~ .sc-crXcEl.drawer > .drawer__panel{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0);box-shadow:0px 11px 15px -7px rgba(var(--ipt-baseAlt-rgb),0.2), 0px 24px 38px 3px rgba(var(--ipt-baseAlt-rgb),0.14), 0px 9px 46px 8px rgba(var(--ipt-baseAlt-rgb),0.12);}/*!sc*/
.drawer__state:checked ~ .sc-crXcEl.drawer > .drawer__backdrop{opacity:0.5;visibility:visible;}/*!sc*/
.PMSTF .drawer-logo{display:none;}/*!sc*/
@media screen and (max-width:1024px){.PMSTF .drawer__panelHeader .drawer__panelHeaderClose{background:none;}}/*!sc*/
@media screen and (min-width:1024px){.PMSTF .drawer__panel{width:100%;-webkit-transform:translateY(calc(-100%));-ms-transform:translateY(calc(-100%));transform:translateY(calc(-100%));padding:2rem 0;}.PMSTF .drawer__panelHeader{background:none;max-width:1024px;margin:auto;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;padding:0 1rem;}.PMSTF .drawer__panelHeader .drawer__panelHeaderClose{background:rgb(245,197,24);background:var(--ipt-accent1-bg,rgb(245,197,24));color:rgb(0,0,0);color:var(--ipt-on-accent1-color,rgb(0,0,0));}.PMSTF .drawer__panelHeader .drawer__panelHeaderClose:hover{color:rgb(0,0,0);color:var(--ipt-on-accent1-color,rgb(0,0,0));}.PMSTF .drawer__panelContent{max-width:1024px;margin:auto;}.PMSTF .drawer-logo{display:inline;}}/*!sc*/
data-styled.g15[id="sc-crXcEl"]{content:"PMSTF,"}/*!sc*/
.nMWbL .ipc-icon{opacity:0.5;-webkit-transition:opacity 0.2s;transition:opacity 0.2s;}/*!sc*/
.nMWbL:hover .ipc-icon{opacity:1;}/*!sc*/
@media screen and (max-width:479px){.nMWbL.nav-link--hideXS{display:none;}}/*!sc*/
@media screen and (min-width:480px) and (max-width:599px){.nMWbL.nav-link--hideS{display:none;}}/*!sc*/
@media screen and (min-width:600px) and (max-width:1023px){.nMWbL.nav-link--hideM{display:none;}}/*!sc*/
@media screen and (min-width:1024px) and (max-width:1279px){.nMWbL.nav-link--hideL{display:none;}}/*!sc*/
@media screen and (min-width:1280px){.nMWbL.nav-link--hideXL{display:none;}}/*!sc*/
data-styled.g16[id="sc-evZas"]{content:"nMWbL,"}/*!sc*/
.cqozJK .navlinkcat__item{font-family:'Roboto','Helvetica','Arial',sans-serif;font-family:var(--ipt-font-family);font-size:1rem;font-size:var(--ipt-type-body-size,1rem);font-weight:400;font-weight:var(--ipt-type-body-weight,400);-webkit-letter-spacing:.03125em;-moz-letter-spacing:.03125em;-ms-letter-spacing:.03125em;letter-spacing:.03125em;-webkit-letter-spacing:var(--ipt-type-body-letterSpacing,.03125em);-moz-letter-spacing:var(--ipt-type-body-letterSpacing,.03125em);-ms-letter-spacing:var(--ipt-type-body-letterSpacing,.03125em);letter-spacing:var(--ipt-type-body-letterSpacing,.03125em);line-height:1.5rem;line-height:var(--ipt-type-body-lineHeight,1.5rem);text-transform:none;text-transform:var(--ipt-type-body-textTransform,none);cursor:pointer;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;border-top:1px solid transparent;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;margin:0;padding:.5rem 1rem;-webkit-transition:color 0.1s ease-in,border-color 0.1s ease-in, opacity 0.12s ease-in;transition:color 0.1s ease-in,border-color 0.1s ease-in, opacity 0.12s ease-in;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;}/*!sc*/
.cqozJK .navlinkcat__item:hover{background:rgba( rgb(255,255,255), 0.08 );background:rgba( var(--ipt-on-baseAlt-color,rgb(255,255,255)), var(--ipt-baseAlt-hover-opacity,0.08) );}/*!sc*/
.cqozJK .navlinkcat__item:focus{outline:var(--ipt-focus-outline-on-baseAlt);outline-offset:1px;}/*!sc*/
.cqozJK .navlinkcat__itemIcon{-webkit-align-self:flex-start;-ms-flex-item-align:start;align-self:flex-start;padding-right:0.75rem;}/*!sc*/
.cqozJK .navlinkcat__itemTitle{-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;overflow:initial;overflow-wrap:break-word;padding-right:0.75rem;text-overflow:unset;white-space:break-spaces;}/*!sc*/
@media screen and (min-width:1024px){.cqozJK .navlinkcat__itemTitle{font-family:'Roboto','Helvetica','Arial',sans-serif;font-family:var(--ipt-font-family);font-size:1.5rem;font-size:var(--ipt-type-headline5-size,1.5rem);font-weight:600;font-weight:var(--ipt-type-headline5-weight,600);-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;-webkit-letter-spacing:normal;-moz-letter-spacing:normal;-ms-letter-spacing:normal;letter-spacing:normal;-webkit-letter-spacing:var(--ipt-type-headline5-letterSpacing,normal);-moz-letter-spacing:var(--ipt-type-headline5-letterSpacing,normal);-ms-letter-spacing:var(--ipt-type-headline5-letterSpacing,normal);letter-spacing:var(--ipt-type-headline5-letterSpacing,normal);line-height:2rem;line-height:var(--ipt-type-headline5-lineHeight,2rem);text-transform:none;text-transform:var(--ipt-type-headline5-textTransform,none);}}/*!sc*/
.cqozJK .navlinkcat__itemChevron{-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg);}/*!sc*/
.cqozJK .navlinkcat__itemIcon,.cqozJK .navlinkcat__itemChevron{opacity:0.5;-webkit-transition:all 0.2s;transition:all 0.2s;}/*!sc*/
.cqozJK .navlinkcat__item:focus .navlinkcat__itemChevron,.cqozJK .navlinkcat__item:hover .navlinkcat__itemChevron,.cqozJK .navlinkcat__item:focus .navlinkcat__itemIcon,.cqozJK .navlinkcat__item:hover .navlinkcat__itemIcon{opacity:1;}/*!sc*/
.cqozJK .navlinkcat__listContainer{height:0;visibility:hidden;overflow:hidden;border-bottom:1px solid transparent;-webkit-transition:border-color 0.1s ease-in,height 0.2s;transition:border-color 0.1s ease-in,height 0.2s;}/*!sc*/
.cqozJK .navlinkcat__state:checked ~ .navlinkcat__targetWrapper .navlinkcat__item{border-color:rgba(255,255,255,0.2);border-color:var(--ipt-baseAlt-border-color,rgba(255,255,255,0.2));}/*!sc*/
.cqozJK .navlinkcat__state:checked ~ .navlinkcat__targetWrapper .navlinkcat__item .navlinkcat__itemIcon,.cqozJK .navlinkcat__state:checked ~ .navlinkcat__targetWrapper .navlinkcat__item .navlinkcat__itemTitle{color:rgb(245,197,24);color:var(--ipt-on-baseAlt-accent1-color,rgb(245,197,24));}/*!sc*/
.cqozJK .navlinkcat__state:checked ~ .navlinkcat__targetWrapper .navlinkcat__listContainer{border-color:rgba(255,255,255,0.2);border-color:var(--ipt-baseAlt-border-color,rgba(255,255,255,0.2));height:auto;visibility:inherit;}/*!sc*/
.cqozJK .navlinkcat__state:checked ~ span .navlinkcat__item .navlinkcat__itemIcon{opacity:1;}/*!sc*/
.cqozJK .navlinkcat__state:checked ~ span .navlinkcat__item .navlinkcat__itemChevron{-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg);}/*!sc*/
.cqozJK .navlinkcat__state:checked ~ span .navlinkcat__listContainer{display:block;}/*!sc*/
.cqozJK:nth-of-type(1) .navlinkcat__item{border-top:none;}/*!sc*/
@media screen and (min-width:1024px){.cqozJK.noMarginItem .navlinkcat__item{margin-top:0;}}/*!sc*/
.cqozJK .ipc-list__item{height:auto;padding-top:.5rem;padding-bottom:.5rem;}/*!sc*/
.cqozJK .ipc-list__item .ipc-list-item__text{white-space:initial;overflow-wrap:break-word;line-height:normal;}/*!sc*/
@media screen and (min-width:1024px){.cqozJK{-webkit-flex-basis:33%;-ms-flex-preferred-size:33%;flex-basis:33%;max-width:33%;}.cqozJK .navlinkcat__item{border:none;margin-top:1.5rem;padding-top:.5rem;padding-bottom:.5rem;pointer-events:none;}.cqozJK .navlinkcat__state:checked ~ .navlinkcat__targetWrapper .navlinkcat__item .navlinkcat__itemTitle{color:inherit;}.cqozJK .navlinkcat__listContainer{visibility:inherit;height:auto !important;border:0;}.cqozJK .navlinkcat__itemChevron{display:none;}.cqozJK .navlinkcat__itemIcon{color:var(--ipt-on-baseAlt-accent1-color);opacity:1;}.cqozJK .ipc-list--baseAlt .ipc-list__item:hover{background:none;-webkit-text-decoration:underline;text-decoration:underline;}}/*!sc*/
@media screen and (max-width:479px){.cqozJK.navlinkcat--hideXS{display:none;}}/*!sc*/
@media screen and (min-width:480px) and (max-width:599px){.cqozJK.navlinkcat--hideS{display:none;}}/*!sc*/
@media screen and (min-width:600px) and (max-width:1023px){.cqozJK.navlinkcat--hideM{display:none;}}/*!sc*/
@media screen and (min-width:1024px) and (max-width:1279px){.cqozJK.navlinkcat--hideL{display:none;}}/*!sc*/
@media screen and (min-width:1280px){.cqozJK.navlinkcat--hideXL{display:none;}}/*!sc*/
data-styled.g17[id="sc-breuTD"]{content:"cqozJK,"}/*!sc*/
@media screen and (min-width:1024px){.gSOLIo{-webkit-flex-basis:33%;-ms-flex-preferred-size:33%;flex-basis:33%;max-width:33%;}}/*!sc*/
data-styled.g18[id="sc-ksZaOG"]{content:"gSOLIo,"}/*!sc*/
@media screen and (min-width:1024px){.OzViy{-webkit-flex-basis:33%;-ms-flex-preferred-size:33%;flex-basis:33%;max-width:100%;}}/*!sc*/
data-styled.g19[id="sc-hAZoDl"]{content:"OzViy,"}/*!sc*/
@media screen and (min-width:1024px){.SyRwP{max-width:100%;}}/*!sc*/
data-styled.g20[id="sc-fnykZs"]{content:"SyRwP,"}/*!sc*/
.iYlngk .navlcl__divider{list-style:none;margin:0.5rem 0;opacity:0.2;}/*!sc*/
.iYlngk .navlcl__proLink{margin-bottom:3rem;margin-top:1.5rem;padding:1rem;height:auto;}/*!sc*/
.iYlngk .navlcl__proLink:hover,.iYlngk .navlcl__tvLink:hover{background:rgba( rgb(255,255,255), 0.08 );background:rgba( var(--ipt-on-baseAlt-color,rgb(255,255,255)), var(--ipt-baseAlt-hover-opacity,0.08) );}/*!sc*/
@media screen and (min-width:1024px){.iYlngk{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;}.iYlngk .navlcl__tvLink{display:none;}.iYlngk .navlcl__proLink{-webkit-align-self:flex-start;-ms-flex-item-align:start;align-self:flex-start;display:none;}.iYlngk:focus{outline:var(--ipt-focus-outline-on-baseAlt);outline-offset:1px;}}/*!sc*/
data-styled.g21[id="sc-fEOsli"]{content:"iYlngk,"}/*!sc*/
.bpTVou{font-family:'Roboto','Helvetica','Arial',sans-serif;font-family:var(--ipt-font-family);font-size:.875rem;font-size:var(--ipt-type-bodySmall-size,.875rem);font-weight:400;font-weight:var(--ipt-type-bodySmall-weight,400);-webkit-letter-spacing:.01786em;-moz-letter-spacing:.01786em;-ms-letter-spacing:.01786em;letter-spacing:.01786em;-webkit-letter-spacing:var(--ipt-type-bodySmall-letterSpacing,.01786em);-moz-letter-spacing:var(--ipt-type-bodySmall-letterSpacing,.01786em);-ms-letter-spacing:var(--ipt-type-bodySmall-letterSpacing,.01786em);letter-spacing:var(--ipt-type-bodySmall-letterSpacing,.01786em);line-height:1.25rem;line-height:var(--ipt-type-bodySmall-lineHeight,1.25rem);text-transform:none;text-transform:var(--ipt-type-bodySmall-textTransform,none);display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;}/*!sc*/
data-styled.g22[id="sc-bjUoiL"]{content:"bpTVou,"}/*!sc*/
.cUVKHb{margin-top:.25rem;}/*!sc*/
data-styled.g23[id="sc-idiyUo"]{content:"cUVKHb,"}/*!sc*/
.gcmCOw{-webkit-flex-shrink:0;-ms-flex-negative:0;flex-shrink:0;-webkit-order:0;-ms-flex-order:0;order:0;}/*!sc*/
.gcmCOw.desktop{display:none;}/*!sc*/
@media screen and (min-width:1024px){.gcmCOw{-webkit-order:1;-ms-flex-order:1;order:1;}.gcmCOw.mobile{display:none;}.gcmCOw.desktop{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;}}/*!sc*/
data-styled.g24[id="sc-dIouRR"]{content:"gcmCOw,"}/*!sc*/
.fFlqwB{-webkit-order:6;-ms-flex-order:6;order:6;}/*!sc*/
@media screen and (min-width:600px){.fFlqwB .navbar__user-menu__username-divider,.fFlqwB .navbar__user-menu__username{display:none;}}/*!sc*/
@media screen and (min-width:1024px){.fFlqwB{-webkit-order:7;-ms-flex-order:7;order:7;}}/*!sc*/
.fFlqwB .navbar__user-menu-toggle__button{padding-right:0.25rem;}/*!sc*/
.fFlqwB .navbar__user-name{max-width:160px;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;}/*!sc*/
data-styled.g25[id="sc-hHLeRK"]{content:"fFlqwB,"}/*!sc*/
nav__userMenu .ipc-list__item.navbar__user-menu__username{color:rgb(245,197,24);color:var(--ipt-on-baseAlt-accent1-color,rgb(245,197,24));opacity:1;pointer-events:none;}/*!sc*/
data-styled.g26[id="sc-global-gbGWiL1"]{content:"sc-global-gbGWiL1,"}/*!sc*/
.hCFCYu{-webkit-order:5;-ms-flex-order:5;order:5;display:none;}/*!sc*/
@media screen and (min-width:1024px){.hCFCYu{-webkit-order:6;-ms-flex-order:6;order:6;display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;}}/*!sc*/
.hCFCYu .watchlistButtonCount{background:rgb(245,197,24);background:var(--ipt-on-base-accent1-color,rgb(245,197,24));color:rgb(0,0,0);color:var(--ipt-on-accent1-color,rgb(0,0,0));font-family:'Roboto','Helvetica','Arial',sans-serif;font-family:var(--ipt-font-family);font-size:.75rem;font-size:var(--ipt-type-copyright-size,.75rem);font-weight:400;font-weight:var(--ipt-type-copyright-weight,400);-webkit-letter-spacing:.03333em;-moz-letter-spacing:.03333em;-ms-letter-spacing:.03333em;letter-spacing:.03333em;-webkit-letter-spacing:var(--ipt-type-copyright-letterSpacing,.03333em);-moz-letter-spacing:var(--ipt-type-copyright-letterSpacing,.03333em);-ms-letter-spacing:var(--ipt-type-copyright-letterSpacing,.03333em);letter-spacing:var(--ipt-type-copyright-letterSpacing,.03333em);line-height:1rem;line-height:var(--ipt-type-copyright-lineHeight,1rem);text-transform:none;text-transform:var(--ipt-type-copyright-textTransform,none);margin-left:0.5rem;padding:0 0.4rem;border-radius:10px;text-align:center;}/*!sc*/
.hCFCYu .ipc-button__text{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}/*!sc*/
data-styled.g27[id="sc-dmRaPn"]{content:"hCFCYu,"}/*!sc*/
.jjOyce{-webkit-order:4;-ms-flex-order:4;order:4;}/*!sc*/
@media screen and (min-width:1024px){.jjOyce{-webkit-order:4;-ms-flex-order:4;order:4;}}/*!sc*/
.jjOyce .navbar__imdbpro-menu-toggle__name{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;}/*!sc*/
.jjOyce .navbar__imdbpro-content .navbar__flyout--menu{background-image:url(//m.media-amazon.com/images/G/01/imdb/images/navbar/imdbpro_navbar_menu_bg-3083451252._V_.png);background-size:cover;padding-left:17px;padding-bottom:25px;padding-top:25px;color:white;font-weight:bold;}/*!sc*/
.jjOyce .navbar__imdbpro-imdb-pro-ad{background-repeat:no-repeat;color:white;cursor:pointer;width:573px;overflow:hidden;border-radius:8px;left:initial;}/*!sc*/
.jjOyce .navbar__imdbpro-imdb-pro-ad .imdb-pro-ad__content,.jjOyce .navbar__imdbpro-imdb-pro-ad .imdb-pro-ad__image{display:inline-block;}/*!sc*/
.jjOyce .navbar__imdbpro-imdb-pro-ad .imdb-pro-ad__title{color:white;line-height:1.3em;margin-bottom:10px;}/*!sc*/
.jjOyce .navbar__imdbpro-imdb-pro-ad .imdb-pro-ad__line{cursor:inherit;}/*!sc*/
.jjOyce .navbar__imdbpro-imdb-pro-ad .imdb-pro-ad__link{display:inline-block;-webkit-text-decoration:none;text-decoration:none;vertical-align:middle;}/*!sc*/
.jjOyce .navbar__imdbpro-imdb-pro-ad .imdb-pro-ad__content,.jjOyce .navbar__imdbpro-imdb-pro-ad .imdb-pro-ad__image{vertical-align:top;}/*!sc*/
.jjOyce .navbar__imdbpro-imdb-pro-ad .imdb-pro-ad__content{font-family:'Arial';margin-left:15px;width:400px;}/*!sc*/
.jjOyce .navbar__imdbpro-imdb-pro-ad .imdb-pro-ad__content .imdb-pro-ad__line{display:list-item;font-size:12px;list-style-position:inside;list-style-type:disc;margin:0px;padding:0.1rem 0;}/*!sc*/
.jjOyce .navbar__imdbpro-imdb-pro-ad .imdb-pro-ad__content .imdb-pro-ad__title{font-size:15px;}/*!sc*/
.jjOyce .navbar__imdbpro-imdb-pro-ad .imdb-pro-new__button{margin-top:15px;}/*!sc*/
.jjOyce .navbar__imdbpro-imdb-pro-ad .imdb-pro-new__button text{fill:#111111;font-size:13px;font-weight:normal;}/*!sc*/
.jjOyce .navbar__imdbpro-imdb-pro-ad .imdb-pro-new__button svg:hover rect,.jjOyce .navbar__imdbpro-imdb-pro-ad .imdb-pro-new__button text:hover rect{fill:#f7dd95;}/*!sc*/
.jjOyce .navbar__imdbpro-content .sub_nav{background-color:#f2f2f2;border-bottom-left-radius:10px;border-bottom-right-radius:10px;box-shadow:0 2px 5px rgba(0,0,0,0.6);color:#999;height:325px;}/*!sc*/
.jjOyce .navbar__imdbpro-content .sub_nav h5{color:#a58500;margin:20px 0 10px;position:relative;}/*!sc*/
data-styled.g28[id="sc-kgflAQ"]{content:"jjOyce,"}/*!sc*/
.eMmABn{display:none;}/*!sc*/
data-styled.g29[id="sc-fLlhyt"]{content:"eMmABn,"}/*!sc*/
.dlnzbB.dlnzbB.selected{color:rgb(255,255,255);color:var(--ipt-on-baseAlt-color,rgb(255,255,255));font-weight:bold;pointer-events:none;}/*!sc*/
.dlnzbB.dlnzbB.disabled{color:rgba(255,255,255,0.5);color:var(--ipt-on-baseAlt-textDisabled-color,rgba(255,255,255,0.5));}/*!sc*/
.dlnzbB.dlnzbB span{opacity:1;}/*!sc*/
.dlnzbB .language-menu-item-span{padding-right:0.5rem;}/*!sc*/
.dlnzbB .language-menu-item-icon{height:1.5rem;width:1.5rem;}/*!sc*/
.dlnzbB .selected-language-icon{color:rgb(245,197,24);color:var(--ipt-accent1-color,rgb(245,197,24));}/*!sc*/
data-styled.g30[id="sc-bBrHrO"]{content:"dlnzbB,"}/*!sc*/
.cmgxCq{-webkit-order:7;-ms-flex-order:7;order:7;}/*!sc*/
@media screen and (min-width:600px){.cmgxCq{-webkit-order:7;-ms-flex-order:7;order:7;}}/*!sc*/
.cmgxCq .navbar__flyout__text-button-after-mobile{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;padding-right:0.25rem;}/*!sc*/
.cmgxCq .disabled{pointer-events:none;}/*!sc*/
data-styled.g33[id="sc-llJcti"]{content:"cmgxCq,"}/*!sc*/
.dpOEIG.dpOEIG{font-family:'Roboto','Helvetica','Arial',sans-serif;font-family:var(--ipt-font-family);font-size:.75rem;font-size:var(--ipt-type-overline-size,.75rem);font-weight:600;font-weight:var(--ipt-type-overline-weight,600);-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;-webkit-letter-spacing:.16667em;-moz-letter-spacing:.16667em;-ms-letter-spacing:.16667em;letter-spacing:.16667em;-webkit-letter-spacing:var(--ipt-type-overline-letterSpacing,.16667em);-moz-letter-spacing:var(--ipt-type-overline-letterSpacing,.16667em);-ms-letter-spacing:var(--ipt-type-overline-letterSpacing,.16667em);letter-spacing:var(--ipt-type-overline-letterSpacing,.16667em);line-height:1rem;line-height:var(--ipt-type-overline-lineHeight,1rem);text-transform:uppercase;text-transform:var(--ipt-type-overline-textTransform,uppercase);}/*!sc*/
data-styled.g34[id="sc-iIPllB"]{content:"dpOEIG,"}/*!sc*/
.ktUtzl{--ipt-base-rgb:255,255,255;--mdc-theme-ipt-base-rgb:var(--ipt-base-rgb);--ipt-base-bg:rgb(255,255,255);--mdc-theme-ipt-base-bg:var(--ipt-base-bg);--ipt-base-color:rgb(255,255,255);--mdc-theme-ipt-base-color:var(--ipt-base-color);--ipt-base-shade1-rgb:250,250,250;--mdc-theme-ipt-base-shade1-rgb:var(--ipt-base-shade1-rgb);--ipt-base-shade1-bg:rgb(250,250,250);--mdc-theme-ipt-base-shade1-bg:var(--ipt-base-shade1-bg);--ipt-base-shade1-color:rgb(250,250,250);--mdc-theme-ipt-base-shade1-color:var(--ipt-base-shade1-color);--ipt-base-shade2-rgb:240,240,240;--mdc-theme-ipt-base-shade2-rgb:var(--ipt-base-shade2-rgb);--ipt-base-shade2-bg:rgb(240,240,240);--mdc-theme-ipt-base-shade2-bg:var(--ipt-base-shade2-bg);--ipt-base-shade2-color:rgb(240,240,240);--mdc-theme-ipt-base-shade2-color:var(--ipt-base-shade2-color);--ipt-base-shade3-rgb:255,255,255;--mdc-theme-ipt-base-shade3-rgb:var(--ipt-base-shade3-rgb);--ipt-base-shade3-bg:rgb(255,255,255);--mdc-theme-ipt-base-shade3-bg:var(--ipt-base-shade3-bg);--ipt-base-shade3-color:rgb(255,255,255);--mdc-theme-ipt-base-shade3-color:var(--ipt-base-shade3-color);--ipt-on-base-rgb:0,0,0;--mdc-theme-ipt-on-base-rgb:var(--ipt-on-base-rgb);--ipt-on-base-color:rgb(0,0,0);--mdc-theme-ipt-on-base-color:var(--ipt-on-base-color);--ipt-on-base-accent1-rgb:245,197,24;--mdc-theme-ipt-on-base-accent1-rgb:var(--ipt-on-base-accent1-rgb);--ipt-on-base-accent1-color:rgb(245,197,24);--mdc-theme-ipt-on-base-accent1-color:var(--ipt-on-base-accent1-color);--ipt-on-base-accent2-rgb:14,99,190;--mdc-theme-ipt-on-base-accent2-rgb:var(--ipt-on-base-accent2-rgb);--ipt-on-base-accent2-color:rgb(14,99,190);--mdc-theme-ipt-on-base-accent2-color:var(--ipt-on-base-accent2-color);--ipt-on-base-accent3-rgb:189,36,4;--mdc-theme-ipt-on-base-accent3-rgb:var(--ipt-on-base-accent3-rgb);--ipt-on-base-accent3-color:rgb(189,36,4);--mdc-theme-ipt-on-base-accent3-color:var(--ipt-on-base-accent3-color);--ipt-on-base-accent4-rgb:0,138,0;--mdc-theme-ipt-on-base-accent4-rgb:var(--ipt-on-base-accent4-rgb);--ipt-on-base-accent4-color:rgb(0,138,0);--mdc-theme-ipt-on-base-accent4-color:var(--ipt-on-base-accent4-color);--ipt-on-base-textPrimary-opacity:0.87;--mdc-theme-ipt-on-base-textPrimary-opacity:var(--ipt-on-base-textPrimary-opacity);--ipt-on-base-textPrimary-color:rgba(0,0,0,0.87);--mdc-theme-ipt-on-base-textPrimary-color:var(--ipt-on-base-textPrimary-color);--ipt-on-base-textSecondary-opacity:0.54;--mdc-theme-ipt-on-base-textSecondary-opacity:var(--ipt-on-base-textSecondary-opacity);--ipt-on-base-textSecondary-color:rgba(0,0,0,0.54);--mdc-theme-ipt-on-base-textSecondary-color:var(--ipt-on-base-textSecondary-color);--ipt-on-base-textHint-opacity:0.38;--mdc-theme-ipt-on-base-textHint-opacity:var(--ipt-on-base-textHint-opacity);--ipt-on-base-textHint-color:rgba(0,0,0,0.38);--mdc-theme-ipt-on-base-textHint-color:var(--ipt-on-base-textHint-color);--ipt-on-base-textDisabled-opacity:0.38;--mdc-theme-ipt-on-base-textDisabled-opacity:var(--ipt-on-base-textDisabled-opacity);--ipt-on-base-textDisabled-color:rgba(0,0,0,0.38);--mdc-theme-ipt-on-base-textDisabled-color:var(--ipt-on-base-textDisabled-color);--ipt-on-base-textIcon-opacity:0.5;--mdc-theme-ipt-on-base-textIcon-opacity:var(--ipt-on-base-textIcon-opacity);--ipt-on-base-textIcon-color:rgba(0,0,0,0.5);--mdc-theme-ipt-on-base-textIcon-color:var(--ipt-on-base-textIcon-color);--ipt-base-border-opacity:0.12;--mdc-theme-ipt-base-border-opacity:var(--ipt-base-border-opacity);--ipt-base-hover-opacity:0.08;--mdc-theme-ipt-base-hover-opacity:var(--ipt-base-hover-opacity);--ipt-base-pressed-opacity:0.16;--mdc-theme-ipt-base-pressed-opacity:var(--ipt-base-pressed-opacity);--ipt-base-stripes-opacity:0.04;--mdc-theme-ipt-base-stripes-opacity:var(--ipt-base-stripes-opacity);--ipt-base-border-color:rgba(0,0,0,0.12);--mdc-theme-ipt-base-border-color:var(--ipt-base-border-color);--ipt-base-hover-color:rgba(0,0,0,0.08);--mdc-theme-ipt-base-hover-color:var(--ipt-base-hover-color);--ipt-base-pressed-color:rgba(0,0,0,0.16);--mdc-theme-ipt-base-pressed-color:var(--ipt-base-pressed-color);--ipt-base-stripes-color:rgba(0,0,0,0.04);--mdc-theme-ipt-base-stripes-color:var(--ipt-base-stripes-color);--ipt-baseAlt-rgb:0,0,0;--mdc-theme-ipt-baseAlt-rgb:var(--ipt-baseAlt-rgb);--ipt-baseAlt-bg:rgb(0,0,0);--mdc-theme-ipt-baseAlt-bg:var(--ipt-baseAlt-bg);--ipt-baseAlt-color:rgb(0,0,0);--mdc-theme-ipt-baseAlt-color:var(--ipt-baseAlt-color);--ipt-baseAlt-shade1-rgb:31,31,31;--mdc-theme-ipt-baseAlt-shade1-rgb:var(--ipt-baseAlt-shade1-rgb);--ipt-baseAlt-shade1-bg:rgb(31,31,31);--mdc-theme-ipt-baseAlt-shade1-bg:var(--ipt-baseAlt-shade1-bg);--ipt-baseAlt-shade1-color:rgb(31,31,31);--mdc-theme-ipt-baseAlt-shade1-color:var(--ipt-baseAlt-shade1-color);--ipt-baseAlt-shade2-rgb:26,26,26;--mdc-theme-ipt-baseAlt-shade2-rgb:var(--ipt-baseAlt-shade2-rgb);--ipt-baseAlt-shade2-bg:rgb(26,26,26);--mdc-theme-ipt-baseAlt-shade2-bg:var(--ipt-baseAlt-shade2-bg);--ipt-baseAlt-shade2-color:rgb(26,26,26);--mdc-theme-ipt-baseAlt-shade2-color:var(--ipt-baseAlt-shade2-color);--ipt-baseAlt-shade3-rgb:18,18,18;--mdc-theme-ipt-baseAlt-shade3-rgb:var(--ipt-baseAlt-shade3-rgb);--ipt-baseAlt-shade3-bg:rgb(18,18,18);--mdc-theme-ipt-baseAlt-shade3-bg:var(--ipt-baseAlt-shade3-bg);--ipt-baseAlt-shade3-color:rgb(18,18,18);--mdc-theme-ipt-baseAlt-shade3-color:var(--ipt-baseAlt-shade3-color);--ipt-on-baseAlt-rgb:255,255,255;--mdc-theme-ipt-on-baseAlt-rgb:var(--ipt-on-baseAlt-rgb);--ipt-on-baseAlt-color:rgb(255,255,255);--mdc-theme-ipt-on-baseAlt-color:var(--ipt-on-baseAlt-color);--ipt-on-baseAlt-accent1-rgb:245,197,24;--mdc-theme-ipt-on-baseAlt-accent1-rgb:var(--ipt-on-baseAlt-accent1-rgb);--ipt-on-baseAlt-accent1-color:rgb(245,197,24);--mdc-theme-ipt-on-baseAlt-accent1-color:var(--ipt-on-baseAlt-accent1-color);--ipt-on-baseAlt-accent2-rgb:87,153,239;--mdc-theme-ipt-on-baseAlt-accent2-rgb:var(--ipt-on-baseAlt-accent2-rgb);--ipt-on-baseAlt-accent2-color:rgb(87,153,239);--mdc-theme-ipt-on-baseAlt-accent2-color:var(--ipt-on-baseAlt-accent2-color);--ipt-on-baseAlt-accent3-rgb:251,60,60;--mdc-theme-ipt-on-baseAlt-accent3-rgb:var(--ipt-on-baseAlt-accent3-rgb);--ipt-on-baseAlt-accent3-color:rgb(251,60,60);--mdc-theme-ipt-on-baseAlt-accent3-color:var(--ipt-on-baseAlt-accent3-color);--ipt-on-baseAlt-accent4-rgb:103,173,75;--mdc-theme-ipt-on-baseAlt-accent4-rgb:var(--ipt-on-baseAlt-accent4-rgb);--ipt-on-baseAlt-accent4-color:rgb(103,173,75);--mdc-theme-ipt-on-baseAlt-accent4-color:var(--ipt-on-baseAlt-accent4-color);--ipt-on-baseAlt-textPrimary-opacity:1;--mdc-theme-ipt-on-baseAlt-textPrimary-opacity:var(--ipt-on-baseAlt-textPrimary-opacity);--ipt-on-baseAlt-textPrimary-color:rgba(255,255,255,1);--mdc-theme-ipt-on-baseAlt-textPrimary-color:var(--ipt-on-baseAlt-textPrimary-color);--ipt-on-baseAlt-textSecondary-opacity:0.7;--mdc-theme-ipt-on-baseAlt-textSecondary-opacity:var(--ipt-on-baseAlt-textSecondary-opacity);--ipt-on-baseAlt-textSecondary-color:rgba(255,255,255,0.7);--mdc-theme-ipt-on-baseAlt-textSecondary-color:var(--ipt-on-baseAlt-textSecondary-color);--ipt-on-baseAlt-textHint-opacity:0.5;--mdc-theme-ipt-on-baseAlt-textHint-opacity:var(--ipt-on-baseAlt-textHint-opacity);--ipt-on-baseAlt-textHint-color:rgba(255,255,255,0.5);--mdc-theme-ipt-on-baseAlt-textHint-color:var(--ipt-on-baseAlt-textHint-color);--ipt-on-baseAlt-textDisabled-opacity:0.5;--mdc-theme-ipt-on-baseAlt-textDisabled-opacity:var(--ipt-on-baseAlt-textDisabled-opacity);--ipt-on-baseAlt-textDisabled-color:rgba(255,255,255,0.5);--mdc-theme-ipt-on-baseAlt-textDisabled-color:var(--ipt-on-baseAlt-textDisabled-color);--ipt-on-baseAlt-textIcon-opacity:1;--mdc-theme-ipt-on-baseAlt-textIcon-opacity:var(--ipt-on-baseAlt-textIcon-opacity);--ipt-on-baseAlt-textIcon-color:rgba(255,255,255,1);--mdc-theme-ipt-on-baseAlt-textIcon-color:var(--ipt-on-baseAlt-textIcon-color);--ipt-baseAlt-border-opacity:0.2;--mdc-theme-ipt-baseAlt-border-opacity:var(--ipt-baseAlt-border-opacity);--ipt-baseAlt-hover-opacity:0.08;--mdc-theme-ipt-baseAlt-hover-opacity:var(--ipt-baseAlt-hover-opacity);--ipt-baseAlt-pressed-opacity:0.32;--mdc-theme-ipt-baseAlt-pressed-opacity:var(--ipt-baseAlt-pressed-opacity);--ipt-baseAlt-stripes-opacity:0.12;--mdc-theme-ipt-baseAlt-stripes-opacity:var(--ipt-baseAlt-stripes-opacity);--ipt-baseAlt-border-color:rgba(255,255,255,0.2);--mdc-theme-ipt-baseAlt-border-color:var(--ipt-baseAlt-border-color);--ipt-baseAlt-hover-color:rgba(255,255,255,0.08);--mdc-theme-ipt-baseAlt-hover-color:var(--ipt-baseAlt-hover-color);--ipt-baseAlt-pressed-color:rgba(255,255,255,0.32);--mdc-theme-ipt-baseAlt-pressed-color:var(--ipt-baseAlt-pressed-color);--ipt-baseAlt-stripes-color:rgba(255,255,255,0.12);--mdc-theme-ipt-baseAlt-stripes-color:var(--ipt-baseAlt-stripes-color);--ipt-accent1-rgb:245,197,24;--mdc-theme-ipt-accent1-rgb:var(--ipt-accent1-rgb);--ipt-accent1-bg:rgb(245,197,24);--mdc-theme-ipt-accent1-bg:var(--ipt-accent1-bg);--ipt-accent1-color:rgb(245,197,24);--mdc-theme-ipt-accent1-color:var(--ipt-accent1-color);--ipt-on-accent1-rgb:0,0,0;--mdc-theme-ipt-on-accent1-rgb:var(--ipt-on-accent1-rgb);--ipt-on-accent1-color:rgb(0,0,0);--mdc-theme-ipt-on-accent1-color:var(--ipt-on-accent1-color);--ipt-accent2-rgb:14,99,190;--mdc-theme-ipt-accent2-rgb:var(--ipt-accent2-rgb);--ipt-accent2-bg:rgb(14,99,190);--mdc-theme-ipt-accent2-bg:var(--ipt-accent2-bg);--ipt-accent2-color:rgb(14,99,190);--mdc-theme-ipt-accent2-color:var(--ipt-accent2-color);--ipt-on-accent2-rgb:255,255,255;--mdc-theme-ipt-on-accent2-rgb:var(--ipt-on-accent2-rgb);--ipt-on-accent2-color:rgb(255,255,255);--mdc-theme-ipt-on-accent2-color:var(--ipt-on-accent2-color);--ipt-accent3-rgb:189,36,4;--mdc-theme-ipt-accent3-rgb:var(--ipt-accent3-rgb);--ipt-accent3-bg:rgb(189,36,4);--mdc-theme-ipt-accent3-bg:var(--ipt-accent3-bg);--ipt-accent3-color:rgb(189,36,4);--mdc-theme-ipt-accent3-color:var(--ipt-accent3-color);--ipt-on-accent3-rgb:255,255,255;--mdc-theme-ipt-on-accent3-rgb:var(--ipt-on-accent3-rgb);--ipt-on-accent3-color:rgb(255,255,255);--mdc-theme-ipt-on-accent3-color:var(--ipt-on-accent3-color);--ipt-accent4-rgb:0,114,7;--mdc-theme-ipt-accent4-rgb:var(--ipt-accent4-rgb);--ipt-accent4-bg:rgb(0,114,7);--mdc-theme-ipt-accent4-bg:var(--ipt-accent4-bg);--ipt-accent4-color:rgb(0,114,7);--mdc-theme-ipt-accent4-color:var(--ipt-accent4-color);--ipt-on-accent4-rgb:255,255,255;--mdc-theme-ipt-on-accent4-rgb:var(--ipt-on-accent4-rgb);--ipt-on-accent4-color:rgb(255,255,255);--mdc-theme-ipt-on-accent4-color:var(--ipt-on-accent4-color);--mdc-theme-primary:var(--ipt-baseAlt-color);--mdc-theme-secondary:var(--ipt-accent1-color);--mdc-theme-background:var(--ipt-base-color);--mdc-theme-surface:var(--ipt-base-shade1-color);--mdc-theme-on-primary:var(--ipt-on-baseAlt-color);--mdc-theme-on-secondary:var(--ipt-on-accent1-color);--mdc-theme-on-surface:var(--ipt-on-base-color);--mdc-theme-text-primary-on-background:var(--ipt-on-base-textPrimary-color);--mdc-theme-text-secondary-on-background:var(--ipt-on-base-textSecondary-color);--mdc-theme-text-hint-on-background:var(--ipt-on-base-textHint-color);--mdc-theme-text-disabled-on-background:var(--ipt-on-base-textDisabled-color);--mdc-theme-text-icon-on-background:var(--ipt-on-base-textIcon-color);--mdc-theme-text-primary-on-light:var(--ipt-on-base-textPrimary-color);--mdc-theme-text-secondary-on-light:var(--ipt-on-base-textSecondary-color);--mdc-theme-text-hint-on-light:var(--ipt-on-base-textHint-color);--mdc-theme-text-disabled-on-light:var(--ipt-on-base-textDisabled-color);--mdc-theme-text-icon-on-light:var(--ipt-on-base-textIcon-color);--mdc-theme-text-primary-on-dark:var(--ipt-on-baseAlt-textPrimary-color);--mdc-theme-text-secondary-on-dark:var(--ipt-on-baseAlt-textSecondary-color);--mdc-theme-text-hint-on-dark:var(--ipt-on-baseAlt-textHint-color);--mdc-theme-text-disabled-on-dark:var(--ipt-on-baseAlt-textDisabled-color);--mdc-theme-text-icon-on-dark:var(--ipt-on-baseAlt-textIcon-color);background:rgb(18,18,18);background:var(--ipt-baseAlt-shade3-bg,rgb(18,18,18));color:rgba(255,255,255,1);color:var(--ipt-on-baseAlt-textPrimary-color,rgba(255,255,255,1));font-family:'Roboto','Helvetica','Arial',sans-serif;font-family:var(--ipt-font-family);font-size:1rem;font-size:var(--ipt-type-body-size,1rem);font-weight:400;font-weight:var(--ipt-type-body-weight,400);-webkit-letter-spacing:.03125em;-moz-letter-spacing:.03125em;-ms-letter-spacing:.03125em;letter-spacing:.03125em;-webkit-letter-spacing:var(--ipt-type-body-letterSpacing,.03125em);-moz-letter-spacing:var(--ipt-type-body-letterSpacing,.03125em);-ms-letter-spacing:var(--ipt-type-body-letterSpacing,.03125em);letter-spacing:var(--ipt-type-body-letterSpacing,.03125em);line-height:1.5rem;line-height:var(--ipt-type-body-lineHeight,1.5rem);text-transform:none;text-transform:var(--ipt-type-body-textTransform,none);padding:0.25rem;margin:0;position:relative;z-index:1000;min-height:3.5rem;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:100%;}/*!sc*/
.ktUtzl a{color:inherit;}/*!sc*/
.ktUtzl .navbar__inner{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;width:100vw;margin:0;}/*!sc*/
@media screen and (min-width:600px){.ktUtzl .navbar__inner{padding:0 0.75rem;}}/*!sc*/
@media screen and (min-width:1024px){.ktUtzl .navbar__inner{width:100%;margin:0 auto;}}/*!sc*/
.ktUtzl label{margin-bottom:0;}/*!sc*/
.ktUtzl li{margin-bottom:0;}/*!sc*/
data-styled.g36[id="sc-ezWOiH"]{content:"ktUtzl,"}/*!sc*/
.hMAZwf{border:1px solid rgba(var(--ipt-on-baseAlt-rgb),0.16);-webkit-order:5;-ms-flex-order:5;order:5;width:1px;height:2rem;margin:0 0.5rem;}/*!sc*/
@media screen and (max-width:600px){.hMAZwf{display:none;-webkit-order:8;-ms-flex-order:8;order:8;}}/*!sc*/
data-styled.g37[id="sc-bZkfAO"]{content:"hMAZwf,"}/*!sc*/
</style>
<section id="imdb-bmo-navbar"><script>if(typeof uet === 'function'){ uet('bb', 'imdbHeader', {wb: 1}); }</script><nav class="sc-ezWOiH ktUtzl imdb-header imdb-header--react celwidget" id="imdbHeader"><div class="imdb-header__login-state-node" id="nblogin"></div><div class="ipc-page-content-container ipc-page-content-container--center navbar__inner" role="presentation"><label aria-disabled="false" aria-label="Open Navigation Drawer" class="ipc-icon-button hamburger__icon sc-dIouRR gcmCOw mobile ipc-icon-button--baseAlt ipc-icon-button--onBase" for="imdbHeader-navDrawer" id="imdbHeader-navDrawerOpen" role="button" tabindex="0" title="Open Navigation Drawer"><svg class="ipc-icon ipc-icon--menu" fill="currentColor" height="24" id="iconContext-menu" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h24v24H0V0z" fill="none"></path><path d="M4 18h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zm0-5h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zM3 7c0 .55.45 1 1 1h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1z"></path></svg></label><label aria-disabled="false" aria-label="Open Navigation Drawer" class="ipc-button ipc-button--single-padding ipc-button--center-align-content ipc-button--default-height ipc-button--core-baseAlt ipc-button--theme-baseAlt ipc-button--on-textPrimary ipc-text-button hamburger__icon sc-dIouRR gcmCOw desktop" for="imdbHeader-navDrawer" id="imdbHeader-navDrawerOpen--desktop" role="button" tabindex="0"><svg class="ipc-icon ipc-icon--menu ipc-button__icon ipc-button__icon--pre" fill="currentColor" height="24" id="iconContext-menu" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h24v24H0V0z" fill="none"></path><path d="M4 18h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zm0-5h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zM3 7c0 .55.45 1 1 1h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1z"></path></svg><div class="ipc-button__text">Menu</div></label><input aria-hidden="true" class="drawer__state" hidden="" id="imdbHeader-navDrawer" name="imdbHeader-navDrawer" type="checkbox"/><aside class="sc-crXcEl PMSTF drawer hamburger__drawer imdb-header__nav-drawer" data-testid="drawer" role="presentation"><div aria-hidden="true" class="drawer__panel" data-testid="panel" role="presentation"><div class="drawer__panelHeader" data-testid="panel-header" role="presentation"><a href="/?ref_=nv_home"><svg class="ipc-logo drawer-logo" height="56" version="1.1" viewbox="0 0 64 32" width="98" xmlns="http://www.w3.org/2000/svg"><g fill="#F5C518"><rect height="100%" rx="4" width="100%" x="0" y="0"></rect></g><g fill="#000000" fill-rule="nonzero" transform="translate(8.000000, 7.000000)"><polygon points="0 18 5 18 5 0 0 0"></polygon><path d="M15.6725178,0 L14.5534833,8.40846934 L13.8582008,3.83502426 C13.65661,2.37009263 13.4632474,1.09175121 13.278113,0 L7,0 L7,18 L11.2416347,18 L11.2580911,6.11380679 L13.0436094,18 L16.0633571,18 L17.7583653,5.8517865 L17.7707076,18 L22,18 L22,0 L15.6725178,0 Z"></path><path d="M24,18 L24,0 L31.8045586,0 C33.5693522,0 35,1.41994415 35,3.17660424 L35,14.8233958 C35,16.5777858 33.5716617,18 31.8045586,18 L24,18 Z M29.8322479,3.2395236 C29.6339219,3.13233348 29.2545158,3.08072342 28.7026524,3.08072342 L28.7026524,14.8914865 C29.4312846,14.8914865 29.8796736,14.7604764 30.0478195,14.4865461 C30.2159654,14.2165858 30.3021941,13.486105 30.3021941,12.2871637 L30.3021941,5.3078959 C30.3021941,4.49404499 30.272014,3.97397442 30.2159654,3.74371416 C30.1599168,3.5134539 30.0348852,3.34671372 29.8322479,3.2395236 Z"></path><path d="M44.4299079,4.50685823 L44.749518,4.50685823 C46.5447098,4.50685823 48,5.91267586 48,7.64486762 L48,14.8619906 C48,16.5950653 46.5451816,18 44.749518,18 L44.4299079,18 C43.3314617,18 42.3602746,17.4736618 41.7718697,16.6682739 L41.4838962,17.7687785 L37,17.7687785 L37,0 L41.7843263,0 L41.7843263,5.78053556 C42.4024982,5.01015739 43.3551514,4.50685823 44.4299079,4.50685823 Z M43.4055679,13.2842155 L43.4055679,9.01907814 C43.4055679,8.31433946 43.3603268,7.85185468 43.2660746,7.63896485 C43.1718224,7.42607505 42.7955881,7.2893916 42.5316822,7.2893916 C42.267776,7.2893916 41.8607934,7.40047379 41.7816216,7.58767002 L41.7816216,9.01907814 L41.7816216,13.4207851 L41.7816216,14.8074788 C41.8721037,15.0130276 42.2602358,15.1274059 42.5316822,15.1274059 C42.8031285,15.1274059 43.1982131,15.0166981 43.281155,14.8074788 C43.3640968,14.5982595 43.4055679,14.0880581 43.4055679,13.2842155 Z"></path></g></svg></a><label aria-disabled="false" aria-label="Close Navigation Drawer" class="ipc-icon-button drawer__panelHeaderClose ipc-icon-button--baseAlt ipc-icon-button--onBase" for="imdbHeader-navDrawer" role="button" tabindex="0" title="Close Navigation Drawer"><svg class="ipc-icon ipc-icon--clear" fill="currentColor" height="24" id="iconContext-clear" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h24v24H0V0z" fill="none"></path><path d="M18.3 5.71a.996.996 0 0 0-1.41 0L12 10.59 7.11 5.7A.996.996 0 1 0 5.7 7.11L10.59 12 5.7 16.89a.996.996 0 1 0 1.41 1.41L12 13.41l4.89 4.89a.996.996 0 1 0 1.41-1.41L13.41 12l4.89-4.89c.38-.38.38-1.02 0-1.4z"></path></svg></label></div><div class="drawer__panelContent" data-testid="panel-content" role="presentation"><div class="sc-fEOsli iYlngk navlcl" role="presentation"><div class="sc-breuTD cqozJK navlinkcat" data-testid="nav-link-category" role="presentation"><input aria-hidden="true" class="navlinkcat__state" data-category-id="mov" hidden="" id="nav-link-categories-mov" name="nav-categories-list" tabindex="-1" type="radio"/><span class="navlinkcat__targetWrapper"><label aria-label="Expand Movies Nav Links" class="navlinkcat__item" data-testid="category-expando" for="nav-link-categories-mov" role="button" tabindex="0"><span class="navlinkcat__itemIcon"><svg class="ipc-icon ipc-icon--movie" fill="currentColor" height="24" id="iconContext-movie" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h24v24H0V0z" fill="none"></path><path d="M18 4v1h-2V4c0-.55-.45-1-1-1H9c-.55 0-1 .45-1 1v1H6V4c0-.55-.45-1-1-1s-1 .45-1 1v16c0 .55.45 1 1 1s1-.45 1-1v-1h2v1c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-1h2v1c0 .55.45 1 1 1s1-.45 1-1V4c0-.55-.45-1-1-1s-1 .45-1 1zM8 17H6v-2h2v2zm0-4H6v-2h2v2zm0-4H6V7h2v2zm10 8h-2v-2h2v2zm0-4h-2v-2h2v2zm0-4h-2V7h2v2z"></path></svg></span><span class="navlinkcat__itemTitle">Movies</span><span class="navlinkcat__itemChevron"><svg class="ipc-icon ipc-icon--chevron-right" fill="currentColor" height="24" id="iconContext-chevron-right" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h24v24H0V0z" fill="none"></path><path d="M9.29 6.71a.996.996 0 0 0 0 1.41L13.17 12l-3.88 3.88a.996.996 0 1 0 1.41 1.41l4.59-4.59a.996.996 0 0 0 0-1.41L10.7 6.7c-.38-.38-1.02-.38-1.41.01z"></path></svg></span></label><div aria-expanded="false" aria-hidden="true" class="navlinkcat__listContainer" data-testid="list-container"><div class="navlinkcat__listContainerInner" role="presentation"><ul aria-orientation="vertical" class="ipc-list navlinkcat__list ipc-list--baseAlt" role="menu"><a aria-disabled="false" class="ipc-list__item nav-link sc-evZas nMWbL ipc-list__item--indent-one" href="https://www.imdb.com/calendar/?ref_=nv_mv_cal" role="menuitem" tabindex="-1"><span class="ipc-list-item__text" role="presentation">Release Calendar</span></a><a aria-disabled="false" class="ipc-list__item nav-link sc-evZas nMWbL ipc-list__item--indent-one" href="/chart/top/?ref_=nv_mv_250" role="menuitem" tabindex="-1"><span class="ipc-list-item__text" role="presentation">Top 250 Movies</span></a><a aria-disabled="false" class="ipc-list__item nav-link sc-evZas nMWbL ipc-list__item--indent-one" href="/chart/moviemeter/?ref_=nv_mv_mpm" role="menuitem" tabindex="-1"><span class="ipc-list-item__text" role="presentation">Most Popular Movies</span></a><a aria-disabled="false" class="ipc-list__item nav-link sc-evZas nMWbL ipc-list__item--indent-one" href="/feature/genre/?ref_=nv_ch_gr" role="menuitem" tabindex="-1"><span class="ipc-list-item__text" role="presentation">Browse Movies by Genre</span></a><a aria-disabled="false" class="ipc-list__item nav-link sc-evZas nMWbL ipc-list__item--indent-one" href="/chart/boxoffice/?ref_=nv_ch_cht" role="menuitem" tabindex="-1"><span class="ipc-list-item__text" role="presentation">Top Box Office</span></a><a aria-disabled="false" class="ipc-list__item nav-link sc-evZas nMWbL ipc-list__item--indent-one" href="/showtimes/?ref_=nv_mv_sh" role="menuitem" tabindex="-1"><span class="ipc-list-item__text" role="presentation">Showtimes & Tickets</span></a><a aria-disabled="false" class="ipc-list__item nav-link sc-evZas nMWbL ipc-list__item--indent-one" href="/news/movie/?ref_=nv_nw_mv" role="menuitem" tabindex="-1"><span class="ipc-list-item__text" role="presentation">Movie News</span></a><a aria-disabled="false" class="ipc-list__item nav-link sc-evZas nMWbL ipc-list__item--indent-one" href="/india/toprated/?ref_=nv_mv_in" role="menuitem" tabindex="-1"><span class="ipc-list-item__text" role="presentation">India Movie Spotlight</span></a></ul></div></div></span></div><div class="sc-ksZaOG gSOLIo" data-testid="grouped-link-category"><div class="sc-breuTD cqozJK navlinkcat sc-fnykZs SyRwP" data-testid="nav-link-category" role="presentation"><input aria-hidden="true" class="navlinkcat__state" data-category-id="tvshows" hidden="" id="nav-link-categories-tvshows" name="nav-categories-list" tabindex="-1" type="radio"/><span class="navlinkcat__targetWrapper"><label aria-label="Expand TV Shows Nav Links" class="navlinkcat__item" data-testid="category-expando" for="nav-link-categories-tvshows" role="button" tabindex="0"><span class="navlinkcat__itemIcon"><svg class="ipc-icon ipc-icon--television" fill="currentColor" height="24" id="iconContext-television" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h24v24H0V0z" fill="none"></path><path d="M21 3H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h5v1c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-1h5c1.1 0 1.99-.9 1.99-2L23 5a2 2 0 0 0-2-2zm-1 14H4c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1h16c.55 0 1 .45 1 1v10c0 .55-.45 1-1 1z"></path></svg></span><span class="navlinkcat__itemTitle">TV Shows</span><span class="navlinkcat__itemChevron"><svg class="ipc-icon ipc-icon--chevron-right" fill="currentColor" height="24" id="iconContext-chevron-right" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h24v24H0V0z" fill="none"></path><path d="M9.29 6.71a.996.996 0 0 0 0 1.41L13.17 12l-3.88 3.88a.996.996 0 1 0 1.41 1.41l4.59-4.59a.996.996 0 0 0 0-1.41L10.7 6.7c-.38-.38-1.02-.38-1.41.01z"></path></svg></span></label><div aria-expanded="false" aria-hidden="true" class="navlinkcat__listContainer" data-testid="list-container"><div class="navlinkcat__listContainerInner" role="presentation"><ul aria-orientation="vertical" class="ipc-list navlinkcat__list ipc-list--baseAlt" role="menu"><a aria-disabled="false" class="ipc-list__item nav-link sc-evZas nMWbL ipc-list__item--indent-one" href="/whats-on-tv/?ref_=nv_tv_ontv" role="menuitem" tabindex="-1"><span class="ipc-list-item__text" role="presentation">What's on TV & Streaming</span></a><a aria-disabled="false" class="ipc-list__item nav-link sc-evZas nMWbL ipc-list__item--indent-one" href="/chart/toptv/?ref_=nv_tvv_250" role="menuitem" tabindex="-1"><span class="ipc-list-item__text" role="presentation">Top 250 TV Shows</span></a><a aria-disabled="false" class="ipc-list__item nav-link sc-evZas nMWbL ipc-list__item--indent-one" href="/chart/tvmeter/?ref_=nv_tvv_mptv" role="menuitem" tabindex="-1"><span class="ipc-list-item__text" role="presentation">Most Popular TV Shows</span></a><a aria-disabled="false" class="ipc-list__item nav-link sc-evZas nMWbL ipc-list__item--indent-one" href="/feature/genre/" role="menuitem" tabindex="-1"><span class="ipc-list-item__text" role="presentation">Browse TV Shows by Genre</span></a><a aria-disabled="false" class="ipc-list__item nav-link sc-evZas nMWbL ipc-list__item--indent-one" href="/news/tv/?ref_=nv_nw_tv" role="menuitem" tabindex="-1"><span class="ipc-list-item__text" role="presentation">TV News</span></a><a aria-disabled="false" class="ipc-list__item nav-link sc-evZas nMWbL ipc-list__item--indent-one" href="/india/tv?ref_=nv_tv_in" role="menuitem" tabindex="-1"><span class="ipc-list-item__text" role="presentation">India TV Spotlight</span></a></ul></div></div></span></div><div class="sc-breuTD cqozJK navlinkcat sc-fnykZs SyRwP" data-testid="nav-link-category" role="presentation"><input aria-hidden="true" class="navlinkcat__state" data-category-id="video" hidden="" id="nav-link-categories-video" name="nav-categories-list" tabindex="-1" type="radio"/><span class="navlinkcat__targetWrapper"><label aria-label="Expand Watch Nav Links" class="navlinkcat__item" data-testid="category-expando" for="nav-link-categories-video" role="button" tabindex="0"><span class="navlinkcat__itemIcon"><svg class="ipc-icon ipc-icon--video-library" fill="currentColor" height="24" id="iconContext-video-library" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M3 6c-.55 0-1 .45-1 1v13c0 1.1.9 2 2 2h13c.55 0 1-.45 1-1s-.45-1-1-1H5c-.55 0-1-.45-1-1V7c0-.55-.45-1-1-1zm17-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-8 12.5v-9l5.47 4.1c.27.2.27.6 0 .8L12 14.5z"></path></svg></span><span class="navlinkcat__itemTitle">Watch</span><span class="navlinkcat__itemChevron"><svg class="ipc-icon ipc-icon--chevron-right" fill="currentColor" height="24" id="iconContext-chevron-right" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h24v24H0V0z" fill="none"></path><path d="M9.29 6.71a.996.996 0 0 0 0 1.41L13.17 12l-3.88 3.88a.996.996 0 1 0 1.41 1.41l4.59-4.59a.996.996 0 0 0 0-1.41L10.7 6.7c-.38-.38-1.02-.38-1.41.01z"></path></svg></span></label><div aria-expanded="false" aria-hidden="true" class="navlinkcat__listContainer" data-testid="list-container"><div class="navlinkcat__listContainerInner" role="presentation"><ul aria-orientation="vertical" class="ipc-list navlinkcat__list ipc-list--baseAlt" role="menu"><a aria-disabled="false" class="ipc-list__item nav-link sc-evZas nMWbL ipc-list__item--indent-one" href="/what-to-watch/?ref_=nv_watch" role="menuitem" tabindex="-1"><span class="ipc-list-item__text" role="presentation">What to Watch</span></a><a aria-disabled="false" class="ipc-list__item nav-link sc-evZas nMWbL ipc-list__item--indent-one" href="/trailers/?ref_=nv_mv_tr" role="menuitem" tabindex="-1"><span class="ipc-list-item__text" role="presentation">Latest Trailers</span></a><a aria-disabled="false" class="ipc-list__item nav-link sc-evZas nMWbL ipc-list__item--indent-one" href="/originals/?ref_=nv_sf_ori" role="menuitem" tabindex="-1"><span class="ipc-list-item__text" role="presentation">IMDb Originals</span></a><a aria-disabled="false" class="ipc-list__item nav-link sc-evZas nMWbL ipc-list__item--indent-one" href="/imdbpicks/?ref_=nv_pi" role="menuitem" tabindex="-1"><span class="ipc-list-item__text" role="presentation">IMDb Picks</span></a><a aria-disabled="false" class="ipc-list__item nav-link sc-evZas nMWbL ipc-list__item--indent-one" href="/podcasts/?ref_=nv_pod" role="menuitem" tabindex="-1"><span class="ipc-list-item__text" role="presentation">IMDb Podcasts</span></a></ul></div></div></span></div></div><div class="sc-breuTD cqozJK navlinkcat" data-testid="nav-link-category" role="presentation"><input aria-hidden="true" class="navlinkcat__state" data-category-id="awards" hidden="" id="nav-link-categories-awards" name="nav-categories-list" tabindex="-1" type="radio"/><span class="navlinkcat__targetWrapper"><label aria-label="Expand Awards & Events Nav Links" class="navlinkcat__item" data-testid="category-expando" for="nav-link-categories-awards" role="button" tabindex="0"><span class="navlinkcat__itemIcon"><svg class="ipc-icon ipc-icon--star-circle-filled" fill="currentColor" height="24" id="iconContext-star-circle-filled" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h24v24H0V0z" fill="none"></path><path d="M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zm3.23 15.39L12 15.45l-3.22 1.94a.502.502 0 0 1-.75-.54l.85-3.66-2.83-2.45a.505.505 0 0 1 .29-.88l3.74-.32 1.46-3.45c.17-.41.75-.41.92 0l1.46 3.44 3.74.32a.5.5 0 0 1 .28.88l-2.83 2.45.85 3.67c.1.43-.36.77-.74.54z"></path></svg></span><span class="navlinkcat__itemTitle">Awards & Events</span><span class="navlinkcat__itemChevron"><svg class="ipc-icon ipc-icon--chevron-right" fill="currentColor" height="24" id="iconContext-chevron-right" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h24v24H0V0z" fill="none"></path><path d="M9.29 6.71a.996.996 0 0 0 0 1.41L13.17 12l-3.88 3.88a.996.996 0 1 0 1.41 1.41l4.59-4.59a.996.996 0 0 0 0-1.41L10.7 6.7c-.38-.38-1.02-.38-1.41.01z"></path></svg></span></label><div aria-expanded="false" aria-hidden="true" class="navlinkcat__listContainer" data-testid="list-container"><div class="navlinkcat__listContainerInner" role="presentation"><ul aria-orientation="vertical" class="ipc-list navlinkcat__list ipc-list--baseAlt" role="menu"><a aria-disabled="false" class="ipc-list__item nav-link sc-evZas nMWbL ipc-list__item--indent-one" href="/oscars/?ref_=nv_ev_acd" role="menuitem" tabindex="-1"><span class="ipc-list-item__text" role="presentation">Oscars</span></a><a aria-disabled="false" class="ipc-list__item nav-link nav-link--hideL nav-link--hideXL sc-evZas nMWbL ipc-list__item--indent-one" href="https://m.imdb.com/feature/bestpicture/?ref_=nv_ch_osc" role="menuitem" tabindex="-1"><span class="ipc-list-item__text" role="presentation">Best Picture Winners</span></a><a aria-disabled="false" class="ipc-list__item nav-link nav-link--hideXS nav-link--hideS nav-link--hideM sc-evZas nMWbL ipc-list__item--indent-one" href="https://www.imdb.com/search/title/?count=100&groups=oscar_best_picture_winners&sort=year%2Cdesc&ref_=nv_ch_osc" role="menuitem" tabindex="-1"><span class="ipc-list-item__text" role="presentation">Best Picture Winners</span></a><a aria-disabled="false" class="ipc-list__item nav-link sc-evZas nMWbL ipc-list__item--indent-one" href="/emmys/?ref_=nv_ev_rte" role="menuitem" tabindex="-1"><span class="ipc-list-item__text" role="presentation">Emmys</span></a><a aria-disabled="false" class="ipc-list__item nav-link sc-evZas nMWbL ipc-list__item--indent-one" href="/imdbpicks/hispanic-heritage-month/?ref_=nv_ev_hlm" role="menuitem" tabindex="-1"><span class="ipc-list-item__text" role="presentation">Hispanic & Latino Voices</span></a><a aria-disabled="false" class="ipc-list__item nav-link sc-evZas nMWbL ipc-list__item--indent-one" href="/starmeterawards/?ref_=nv_ev_sma" role="menuitem" tabindex="-1"><span class="ipc-list-item__text" role="presentation">STARmeter Awards</span></a><a aria-disabled="false" class="ipc-list__item nav-link sc-evZas nMWbL ipc-list__item--indent-one" href="/comic-con/?ref_=nv_ev_comic" role="menuitem" tabindex="-1"><span class="ipc-list-item__text" role="presentation">San Diego Comic-Con</span></a><a aria-disabled="false" class="ipc-list__item nav-link sc-evZas nMWbL ipc-list__item--indent-one" href="/nycc/?ref_=nv_ev_nycc" role="menuitem" tabindex="-1"><span class="ipc-list-item__text" role="presentation">New York Comic-Con</span></a><a aria-disabled="false" class="ipc-list__item nav-link sc-evZas nMWbL ipc-list__item--indent-one" href="/sundance/?ref_=nv_ev_sun" role="menuitem" tabindex="-1"><span class="ipc-list-item__text" role="presentation">Sundance Film Festival</span></a><a aria-disabled="false" class="ipc-list__item nav-link sc-evZas nMWbL ipc-list__item--indent-one" href="/toronto/?ref_=nv_ev_tor" role="menuitem" tabindex="-1"><span class="ipc-list-item__text" role="presentation">Toronto Int'l Film Festival</span></a><a aria-disabled="false" class="ipc-list__item nav-link sc-evZas nMWbL ipc-list__item--indent-one" href="/awards-central/?ref_=nv_ev_awrd" role="menuitem" tabindex="-1"><span class="ipc-list-item__text" role="presentation">Awards Central</span></a><a aria-disabled="false" class="ipc-list__item nav-link sc-evZas nMWbL ipc-list__item--indent-one" href="/festival-central/?ref_=nv_ev_fc" role="menuitem" tabindex="-1"><span class="ipc-list-item__text" role="presentation">Festival Central</span></a><a aria-disabled="false" class="ipc-list__item nav-link sc-evZas nMWbL ipc-list__item--indent-one" href="/event/all/?ref_=nv_ev_all" role="menuitem" tabindex="-1"><span class="ipc-list-item__text" role="presentation">All Events</span></a></ul></div></div></span></div><div class="sc-breuTD cqozJK navlinkcat noMarginItem" data-testid="nav-link-category" role="presentation"><input aria-hidden="true" class="navlinkcat__state" data-category-id="celebs" hidden="" id="nav-link-categories-celebs" name="nav-categories-list" tabindex="-1" type="radio"/><span class="navlinkcat__targetWrapper"><label aria-label="Expand Celebs Nav Links" class="navlinkcat__item" data-testid="category-expando" for="nav-link-categories-celebs" role="button" tabindex="0"><span class="navlinkcat__itemIcon"><svg class="ipc-icon ipc-icon--people" fill="currentColor" height="24" id="iconContext-people" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h24v24H0V0z" fill="none"></path><path d="M16 11c1.66 0 2.99-1.34 2.99-3S17.66 5 16 5s-3 1.34-3 3 1.34 3 3 3zm-8 0c1.66 0 2.99-1.34 2.99-3S9.66 5 8 5 5 6.34 5 8s1.34 3 3 3zm0 2c-2.33 0-7 1.17-7 3.5V18c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-1.5c0-2.33-4.67-3.5-7-3.5zm8 0c-.29 0-.62.02-.97.05.02.01.03.03.04.04 1.14.83 1.93 1.94 1.93 3.41V18c0 .35-.07.69-.18 1H22c.55 0 1-.45 1-1v-1.5c0-2.33-4.67-3.5-7-3.5z"></path></svg></span><span class="navlinkcat__itemTitle">Celebs</span><span class="navlinkcat__itemChevron"><svg class="ipc-icon ipc-icon--chevron-right" fill="currentColor" height="24" id="iconContext-chevron-right" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h24v24H0V0z" fill="none"></path><path d="M9.29 6.71a.996.996 0 0 0 0 1.41L13.17 12l-3.88 3.88a.996.996 0 1 0 1.41 1.41l4.59-4.59a.996.996 0 0 0 0-1.41L10.7 6.7c-.38-.38-1.02-.38-1.41.01z"></path></svg></span></label><div aria-expanded="false" aria-hidden="true" class="navlinkcat__listContainer" data-testid="list-container"><div class="navlinkcat__listContainerInner" role="presentation"><ul aria-orientation="vertical" class="ipc-list navlinkcat__list ipc-list--baseAlt" role="menu"><a aria-disabled="false" class="ipc-list__item nav-link sc-evZas nMWbL ipc-list__item--indent-one" href="/feature/bornondate/?ref_=nv_cel_brn" role="menuitem" tabindex="-1"><span class="ipc-list-item__text" role="presentation">Born Today</span></a><a aria-disabled="false" class="ipc-list__item nav-link nav-link--hideL nav-link--hideXL sc-evZas nMWbL ipc-list__item--indent-one" href="https://m.imdb.com/chart/starmeter/?ref_=nv_cel_brn" role="menuitem" tabindex="-1"><span class="ipc-list-item__text" role="presentation">Most Popular Celebs</span></a><a aria-disabled="false" class="ipc-list__item nav-link nav-link--hideXS nav-link--hideS nav-link--hideM sc-evZas nMWbL ipc-list__item--indent-one" href="https://www.imdb.com/search/name/?match_all=true&ref_=nv_cel_m" role="menuitem" tabindex="-1"><span class="ipc-list-item__text" role="presentation">Most Popular Celebs</span></a><a aria-disabled="false" class="ipc-list__item nav-link sc-evZas nMWbL ipc-list__item--indent-one" href="/news/celebrity/?ref_=nv_cel_nw" role="menuitem" tabindex="-1"><span class="ipc-list-item__text" role="presentation">Celebrity News</span></a></ul></div></div></span></div><div class="sc-hAZoDl OzViy" data-testid="nav-link-category"></div><div class="sc-breuTD cqozJK navlinkcat noMarginItem" data-testid="nav-link-category" role="presentation"><input aria-hidden="true" class="navlinkcat__state" data-category-id="comm" hidden="" id="nav-link-categories-comm" name="nav-categories-list" tabindex="-1" type="radio"/><span class="navlinkcat__targetWrapper"><label aria-label="Expand Community Nav Links" class="navlinkcat__item" data-testid="category-expando" for="nav-link-categories-comm" role="button" tabindex="0"><span class="navlinkcat__itemIcon"><svg class="ipc-icon ipc-icon--earth" fill="currentColor" height="24" id="iconContext-earth" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h24v24H0V0z" fill="none"></path><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 17.93c-3.95-.49-7-3.85-7-7.93 0-.62.08-1.21.21-1.79L9 15v1c0 1.1.9 2 2 2v1.93zm6.9-2.54c-.26-.81-1-1.39-1.9-1.39h-1v-3c0-.55-.45-1-1-1H8v-2h2c.55 0 1-.45 1-1V7h2c1.1 0 2-.9 2-2v-.41c2.93 1.19 5 4.06 5 7.41 0 2.08-.8 3.97-2.1 5.39z"></path></svg></span><span class="navlinkcat__itemTitle">Community</span><span class="navlinkcat__itemChevron"><svg class="ipc-icon ipc-icon--chevron-right" fill="currentColor" height="24" id="iconContext-chevron-right" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h24v24H0V0z" fill="none"></path><path d="M9.29 6.71a.996.996 0 0 0 0 1.41L13.17 12l-3.88 3.88a.996.996 0 1 0 1.41 1.41l4.59-4.59a.996.996 0 0 0 0-1.41L10.7 6.7c-.38-.38-1.02-.38-1.41.01z"></path></svg></span></label><div aria-expanded="false" aria-hidden="true" class="navlinkcat__listContainer" data-testid="list-container"><div class="navlinkcat__listContainerInner" role="presentation"><ul aria-orientation="vertical" class="ipc-list navlinkcat__list ipc-list--baseAlt" role="menu"><a aria-disabled="false" class="ipc-list__item nav-link sc-evZas nMWbL ipc-list__item--indent-one" href="https://help.imdb.com/imdb?ref_=cons_nb_hlp" role="menuitem" tabindex="-1"><span class="ipc-list-item__text" role="presentation">Help Center</span></a><a aria-disabled="false" class="ipc-list__item nav-link sc-evZas nMWbL ipc-list__item--indent-one" href="https://contribute.imdb.com/czone?ref_=nv_cm_cz" role="menuitem" tabindex="-1"><span class="ipc-list-item__text" role="presentation">Contributor Zone</span></a><a aria-disabled="false" class="ipc-list__item nav-link sc-evZas nMWbL ipc-list__item--indent-one" href="/poll/?ref_=nv_cm_pl" role="menuitem" tabindex="-1"><span class="ipc-list-item__text" role="presentation">Polls</span></a></ul></div></div></span></div><a aria-disabled="false" aria-label="Go To IMDb Pro" class="ipc-list__item nav-link sc-evZas nMWbL navlcl__proLink" href="https://pro.imdb.com?ref_=cons_nb_hm&rf=cons_nb_hm" role="menuitem" tabindex="0" target="_blank"><span class="ipc-list-item__text" role="presentation"><div class="sc-bjUoiL bpTVou navlcl__logoNavLink"><svg class="ipc-logo" height="14" version="1.1" viewbox="0 0 52 14" width="52" xmlns="http://www.w3.org/2000/svg"><g fill="currentColor"><rect height="12.34" width="3.21" x="0" y="1"></rect><path d="M10,1 L9.3,6.76 L8.84,3.63 C8.7,2.62 8.58,1.75 8.45,1 L4.3,1 L4.3,13.34 L7.11,13.34 L7.11,5.19 L8.3,13.34 L10.3,13.34 L11.42,5 L11.42,13.33 L14.22,13.33 L14.22,1 L10,1 Z"></path><path d="M19.24,3.22 C19.3711159,3.29185219 19.4602235,3.42180078 19.48,3.57 C19.5340993,3.92393477 19.554191,4.28223587 19.54,4.64 L19.54,9.42 C19.578852,9.92887392 19.5246327,10.4405682 19.38,10.93 C19.27,11.12 18.99,11.21 18.53,11.21 L18.53,3.11 C18.7718735,3.09406934 19.0142863,3.13162626 19.24,3.22 Z M19.24,13.34 C19.8163127,13.3574057 20.3928505,13.3138302 20.96,13.21 C21.3245396,13.1481159 21.6680909,12.9969533 21.96,12.77 C22.2288287,12.5438006 22.4209712,12.2398661 22.51,11.9 C22.643288,11.1679419 22.6969338,10.4236056 22.67,9.68 L22.67,5.34 C22.6662002,4.55669241 22.6060449,3.77467335 22.49,3 C22.43037,2.59841431 22.260779,2.22116094 22,1.91 C21.6636187,1.56093667 21.2326608,1.317654 20.76,1.21 C19.7709421,1.02848785 18.7647002,0.958050915 17.76,1 L15.32,1 L15.32,13.34 L19.24,13.34 Z"></path><path d="M27.86,10.34 C27.8769902,10.7218086 27.8501483,11.1043064 27.78,11.48 C27.72,11.63 27.46,11.71 27.26,11.71 C27.0954951,11.7299271 26.9386363,11.6349863 26.88,11.48 C26.7930212,11.1542289 26.7592527,10.8165437 26.78,10.48 L26.78,7.18 C26.7626076,6.84408875 26.7929089,6.50740774 26.87,6.18 C26.9317534,6.03447231 27.0833938,5.94840616 27.24,5.97 C27.43,5.97 27.7,6.05 27.76,6.21 C27.8468064,6.53580251 27.8805721,6.87345964 27.86,7.21 L27.86,10.34 Z M23.7,1 L23.7,13.34 L26.58,13.34 L26.78,12.55 C27.0112432,12.8467609 27.3048209,13.0891332 27.64,13.26 C28.0022345,13.4198442 28.394069,13.5016184 28.79,13.5 C29.2588971,13.515288 29.7196211,13.3746089 30.1,13.1 C30.4399329,12.8800058 30.6913549,12.5471372 30.81,12.16 C30.9423503,11.6167622 31.0061799,11.0590937 31,10.5 L31,7 C31.0087531,6.51279482 30.9920637,6.02546488 30.95,5.54 C30.904474,5.28996521 30.801805,5.05382649 30.65,4.85 C30.4742549,4.59691259 30.2270668,4.40194735 29.94,4.29 C29.5869438,4.15031408 29.2096076,4.08232558 28.83,4.09 C28.4361722,4.08961884 28.0458787,4.16428368 27.68,4.31 C27.3513666,4.46911893 27.0587137,4.693713 26.82,4.97 L26.82,1 L23.7,1 Z"></path><path d="M32.13,1 L35.32,1 C35.9925574,0.978531332 36.6650118,1.04577677 37.32,1.2 C37.717112,1.29759578 38.0801182,1.50157071 38.37,1.79 C38.6060895,2.05302496 38.7682605,2.37391646 38.84,2.72 C38.935586,3.27463823 38.9757837,3.8374068 38.96,4.4 L38.96,5.46 C38.9916226,6.03689533 38.9100917,6.61440551 38.72,7.16 C38.5402933,7.53432344 38.2260614,7.82713037 37.84,7.98 C37.3049997,8.18709035 36.7332458,8.28238268 36.16,8.26 L35.31,8.26 L35.31,13.16 L32.13,13.16 L32.13,1 Z M35.29,3.08 L35.29,6.18 L35.53,6.18 C35.7515781,6.20532753 35.9725786,6.12797738 36.13,5.97 C36.2717869,5.69610033 36.3308522,5.38687568 36.3,5.08 L36.3,4.08 C36.3390022,3.79579475 36.2713114,3.5072181 36.11,3.27 C35.8671804,3.11299554 35.5771259,3.04578777 35.29,3.08 Z"></path><path d="M42,4.36 L41.89,5.52 C42.28,4.69 43.67,4.42 44.41,4.37 L43.6,7.3 C43.2290559,7.27725357 42.8582004,7.34593052 42.52,7.5 C42.3057075,7.61238438 42.1519927,7.81367763 42.1,8.05 C42.0178205,8.59259006 41.9843538,9.14144496 42,9.69 L42,13.16 L39.34,13.16 L39.34,4.36 L42,4.36 Z"></path><path d="M51.63,9.71 C51.6472876,10.3265292 51.6003682,10.9431837 51.49,11.55 C51.376862,11.9620426 51.1639158,12.3398504 50.87,12.65 C50.5352227,13.001529 50.1148049,13.2599826 49.65,13.4 C49.0994264,13.5686585 48.5257464,13.6496486 47.95,13.64 C47.3333389,13.6524659 46.7178074,13.5818311 46.12,13.43 C45.6996896,13.322764 45.3140099,13.1092627 45,12.81 C44.7275808,12.5275876 44.5254637,12.1850161 44.41,11.81 C44.2627681,11.2181509 44.1921903,10.6098373 44.2,10 L44.2,7.64 C44.1691064,6.9584837 44.2780071,6.27785447 44.52,5.64 C44.7547114,5.12751365 45.1616363,4.71351186 45.67,4.47 C46.3337168,4.13941646 47.0688388,3.97796445 47.81,4 C48.4454888,3.98667568 49.0783958,4.08482705 49.68,4.29 C50.1352004,4.42444561 50.5506052,4.66819552 50.89,5 C51.1535526,5.26601188 51.3550281,5.58700663 51.48,5.94 C51.6001358,6.42708696 51.6506379,6.92874119 51.63,7.43 L51.63,9.71 Z M48.39,6.73 C48.412199,6.42705368 48.3817488,6.12255154 48.3,5.83 C48.2091142,5.71223121 48.0687606,5.64325757 47.92,5.64325757 C47.7712394,5.64325757 47.6308858,5.71223121 47.54,5.83 C47.447616,6.12046452 47.4136298,6.42634058 47.44,6.73 L47.44,10.93 C47.4168299,11.2204468 47.4508034,11.5126191 47.54,11.79 C47.609766,11.9270995 47.7570827,12.0067302 47.91,11.99 C48.0639216,12.0108082 48.2159732,11.9406305 48.3,11.81 C48.3790864,11.5546009 48.4096133,11.2866434 48.39,11.02 L48.39,6.73 Z"></path></g></svg><div class="sc-idiyUo cUVKHb">For Industry Professionals</div></div></span><span class="ipc-list-item__icon ipc-list-item__icon--post" role="presentation"><svg class="ipc-icon ipc-icon--launch" fill="currentColor" height="24" id="iconContext-launch" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M16 16.667H8A.669.669 0 0 1 7.333 16V8c0-.367.3-.667.667-.667h3.333c.367 0 .667-.3.667-.666C12 6.3 11.7 6 11.333 6h-4C6.593 6 6 6.6 6 7.333v9.334C6 17.4 6.6 18 7.333 18h9.334C17.4 18 18 17.4 18 16.667v-4c0-.367-.3-.667-.667-.667-.366 0-.666.3-.666.667V16c0 .367-.3.667-.667.667zm-2.667-10c0 .366.3.666.667.666h1.727L9.64 13.42a.664.664 0 1 0 .94.94l6.087-6.087V10c0 .367.3.667.666.667.367 0 .667-.3.667-.667V6h-4c-.367 0-.667.3-.667.667z"></path></svg></span></a></div></div></div><label aria-hidden="true" aria-label="Close Navigation Drawer" class="drawer__backdrop" data-testid="backdrop" for="imdbHeader-navDrawer" role="button" tabindex="0"></label></aside><a aria-label="Home" class="sc-bczRLJ hKcFfj imdb-header__logo-link" href="/?ref_=nv_home" id="home_img_holder"><svg class="ipc-logo" height="32" id="home_img" version="1.1" viewbox="0 0 64 32" width="64" xmlns="http://www.w3.org/2000/svg"><g fill="#F5C518"><rect height="100%" rx="4" width="100%" x="0" y="0"></rect></g><g fill="#000000" fill-rule="nonzero" transform="translate(8.000000, 7.000000)"><polygon points="0 18 5 18 5 0 0 0"></polygon><path d="M15.6725178,0 L14.5534833,8.40846934 L13.8582008,3.83502426 C13.65661,2.37009263 13.4632474,1.09175121 13.278113,0 L7,0 L7,18 L11.2416347,18 L11.2580911,6.11380679 L13.0436094,18 L16.0633571,18 L17.7583653,5.8517865 L17.7707076,18 L22,18 L22,0 L15.6725178,0 Z"></path><path d="M24,18 L24,0 L31.8045586,0 C33.5693522,0 35,1.41994415 35,3.17660424 L35,14.8233958 C35,16.5777858 33.5716617,18 31.8045586,18 L24,18 Z M29.8322479,3.2395236 C29.6339219,3.13233348 29.2545158,3.08072342 28.7026524,3.08072342 L28.7026524,14.8914865 C29.4312846,14.8914865 29.8796736,14.7604764 30.0478195,14.4865461 C30.2159654,14.2165858 30.3021941,13.486105 30.3021941,12.2871637 L30.3021941,5.3078959 C30.3021941,4.49404499 30.272014,3.97397442 30.2159654,3.74371416 C30.1599168,3.5134539 30.0348852,3.34671372 29.8322479,3.2395236 Z"></path><path d="M44.4299079,4.50685823 L44.749518,4.50685823 C46.5447098,4.50685823 48,5.91267586 48,7.64486762 L48,14.8619906 C48,16.5950653 46.5451816,18 44.749518,18 L44.4299079,18 C43.3314617,18 42.3602746,17.4736618 41.7718697,16.6682739 L41.4838962,17.7687785 L37,17.7687785 L37,0 L41.7843263,0 L41.7843263,5.78053556 C42.4024982,5.01015739 43.3551514,4.50685823 44.4299079,4.50685823 Z M43.4055679,13.2842155 L43.4055679,9.01907814 C43.4055679,8.31433946 43.3603268,7.85185468 43.2660746,7.63896485 C43.1718224,7.42607505 42.7955881,7.2893916 42.5316822,7.2893916 C42.267776,7.2893916 41.8607934,7.40047379 41.7816216,7.58767002 L41.7816216,9.01907814 L41.7816216,13.4207851 L41.7816216,14.8074788 C41.8721037,15.0130276 42.2602358,15.1274059 42.5316822,15.1274059 C42.8031285,15.1274059 43.1982131,15.0166981 43.281155,14.8074788 C43.3640968,14.5982595 43.4055679,14.0880581 43.4055679,13.2842155 Z"></path></g></svg></a><input aria-hidden="true" class="sc-iqcoie iKpzZH imdb-header-search__state sbar__mobileSearchStateToggle" hidden="" id="navSearch-searchState" name="navSearch-searchState" type="checkbox"/><div class="nav-search__search-container sbar sc-jqUVSM iJNbPT" id="suggestion-search-container"><form action="/find" class="searchform imdb-header__search-form sc-papXJ exojnx" id="nav-search-form" method="get" name="nav-search-form" role="search"><div class="sc-ftvSup cumdHr"><div class="sc-iBkjds iosfhR navbar__flyout--breakpoint-m navbar__flyout--positionLeft"><label aria-disabled="false" aria-label="All" class="ipc-button ipc-button--single-padding ipc-button--center-align-content ipc-button--default-height ipc-button--core-base ipc-button--theme-base ipc-button--on-textPrimary ipc-text-button navbar__flyout__text-button-after-mobile searchCatSelector__opener searchform__categories nav-search-form__categories" for="navbar-search-category-select" role="button" tabindex="0"><div class="ipc-button__text">All<svg class="ipc-icon ipc-icon--arrow-drop-down navbar__flyout__button-pointer" fill="currentColor" height="24" id="iconContext-arrow-drop-down" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h24v24H0V0z" fill="none"></path><path d="M8.71 11.71l2.59 2.59c.39.39 1.02.39 1.41 0l2.59-2.59c.63-.63.18-1.71-.71-1.71H9.41c-.89 0-1.33 1.08-.7 1.71z"></path></svg></div></label><input aria-hidden="true" class="ipc-menu__focused-state" hidden="" id="navbar-search-category-select" name="navbar-search-category-select" tabindex="-1" type="checkbox"/><div class="ipc-menu mdc-menu ipc-menu--not-initialized ipc-menu--on-baseAlt ipc-menu--anchored ipc-menu--with-checkbox ipc-menu--expand-from-top-left navbar__flyout--menu" data-menu-id="navbar-search-category-select" role="presentation"><div class="ipc-menu__items mdc-menu__items" role="presentation"><span id="navbar-search-category-select-contents"><ul aria-orientation="vertical" class="ipc-list searchCatSelector ipc-list--baseAlt" role="menu"><li aria-disabled="false" class="ipc-list__item searchCatSelector__item searchCatSelector__itemSelected" role="menuitem" tabindex="0"><span class="ipc-list-item__text" role="presentation"><svg class="ipc-icon ipc-icon--search searchCatSelector__itemIcon" fill="currentColor" height="24" id="iconContext-search" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h24v24H0V0z" fill="none"></path><path d="M15.5 14h-.79l-.28-.27a6.5 6.5 0 0 0 1.48-5.34c-.47-2.78-2.79-5-5.59-5.34a6.505 6.505 0 0 0-7.27 7.27c.34 2.8 2.56 5.12 5.34 5.59a6.5 6.5 0 0 0 5.34-1.48l.27.28v.79l4.25 4.25c.41.41 1.08.41 1.49 0 .41-.41.41-1.08 0-1.49L15.5 14zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"></path></svg>All</span></li><li aria-disabled="false" class="ipc-list__item searchCatSelector__item" role="menuitem" tabindex="0"><span class="ipc-list-item__text" role="presentation"><svg class="ipc-icon ipc-icon--movie searchCatSelector__itemIcon" fill="currentColor" height="24" id="iconContext-movie" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h24v24H0V0z" fill="none"></path><path d="M18 4v1h-2V4c0-.55-.45-1-1-1H9c-.55 0-1 .45-1 1v1H6V4c0-.55-.45-1-1-1s-1 .45-1 1v16c0 .55.45 1 1 1s1-.45 1-1v-1h2v1c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-1h2v1c0 .55.45 1 1 1s1-.45 1-1V4c0-.55-.45-1-1-1s-1 .45-1 1zM8 17H6v-2h2v2zm0-4H6v-2h2v2zm0-4H6V7h2v2zm10 8h-2v-2h2v2zm0-4h-2v-2h2v2zm0-4h-2V7h2v2z"></path></svg>Titles</span></li><li aria-disabled="false" class="ipc-list__item searchCatSelector__item" role="menuitem" tabindex="0"><span class="ipc-list-item__text" role="presentation"><svg class="ipc-icon ipc-icon--television searchCatSelector__itemIcon" fill="currentColor" height="24" id="iconContext-television" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h24v24H0V0z" fill="none"></path><path d="M21 3H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h5v1c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-1h5c1.1 0 1.99-.9 1.99-2L23 5a2 2 0 0 0-2-2zm-1 14H4c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1h16c.55 0 1 .45 1 1v10c0 .55-.45 1-1 1z"></path></svg>TV Episodes</span></li><li aria-disabled="false" class="ipc-list__item searchCatSelector__item" role="menuitem" tabindex="0"><span class="ipc-list-item__text" role="presentation"><svg class="ipc-icon ipc-icon--people searchCatSelector__itemIcon" fill="currentColor" height="24" id="iconContext-people" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h24v24H0V0z" fill="none"></path><path d="M16 11c1.66 0 2.99-1.34 2.99-3S17.66 5 16 5s-3 1.34-3 3 1.34 3 3 3zm-8 0c1.66 0 2.99-1.34 2.99-3S9.66 5 8 5 5 6.34 5 8s1.34 3 3 3zm0 2c-2.33 0-7 1.17-7 3.5V18c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-1.5c0-2.33-4.67-3.5-7-3.5zm8 0c-.29 0-.62.02-.97.05.02.01.03.03.04.04 1.14.83 1.93 1.94 1.93 3.41V18c0 .35-.07.69-.18 1H22c.55 0 1-.45 1-1v-1.5c0-2.33-4.67-3.5-7-3.5z"></path></svg>Celebs</span></li><li aria-disabled="false" class="ipc-list__item searchCatSelector__item" role="menuitem" tabindex="0"><span class="ipc-list-item__text" role="presentation"><svg class="ipc-icon ipc-icon--business searchCatSelector__itemIcon" fill="currentColor" height="24" id="iconContext-business" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h24v24H0V0z" fill="none"></path><path d="M12 7V5c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2h-8zM6 19H4v-2h2v2zm0-4H4v-2h2v2zm0-4H4V9h2v2zm0-4H4V5h2v2zm4 12H8v-2h2v2zm0-4H8v-2h2v2zm0-4H8V9h2v2zm0-4H8V5h2v2zm9 12h-7v-2h2v-2h-2v-2h2v-2h-2V9h7c.55 0 1 .45 1 1v8c0 .55-.45 1-1 1zm-1-8h-2v2h2v-2zm0 4h-2v2h2v-2z"></path></svg>Companies</span></li><li aria-disabled="false" class="ipc-list__item searchCatSelector__item" role="menuitem" tabindex="0"><span class="ipc-list-item__text" role="presentation"><svg class="ipc-icon ipc-icon--label searchCatSelector__itemIcon" fill="currentColor" height="24" id="iconContext-label" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h24v24H0V0z" fill="none"></path><path d="M17.63 5.84C17.27 5.33 16.67 5 16 5L5 5.01C3.9 5.01 3 5.9 3 7v10c0 1.1.9 1.99 2 1.99L16 19c.67 0 1.27-.33 1.63-.84l3.96-5.58a.99.99 0 0 0 0-1.16l-3.96-5.58z"></path></svg>Keywords</span></li><li class="ipc-list-divider" role="separator"></li><a aria-disabled="false" class="ipc-list__item searchCatSelector__item" href="https://www.imdb.com/search/" role="menuitem" tabindex="0"><span class="ipc-list-item__text" role="presentation"><svg class="ipc-icon ipc-icon--find-in-page searchCatSelector__itemIcon" fill="currentColor" height="24" id="iconContext-find-in-page" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h24v24H0V0z" fill="none"></path><path d="M20 19.59V8.83c0-.53-.21-1.04-.59-1.41l-4.83-4.83c-.37-.38-.88-.59-1.41-.59H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c.45 0 .85-.15 1.19-.4l-4.43-4.43c-.86.56-1.89.88-3 .82-2.37-.11-4.4-1.96-4.72-4.31a5.013 5.013 0 0 1 5.83-5.61c1.95.33 3.57 1.85 4 3.78.33 1.46.01 2.82-.7 3.9L20 19.59zM9 13c0 1.66 1.34 3 3 3s3-1.34 3-3-1.34-3-3-3-3 1.34-3 3z"></path></svg>Advanced Search</span><span class="ipc-list-item__icon ipc-list-item__icon--post" role="presentation"><svg class="ipc-icon ipc-icon--chevron-right" fill="currentColor" height="24" id="iconContext-chevron-right" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h24v24H0V0z" fill="none"></path><path d="M9.29 6.71a.996.996 0 0 0 0 1.41L13.17 12l-3.88 3.88a.996.996 0 1 0 1.41 1.41l4.59-4.59a.996.996 0 0 0 0-1.41L10.7 6.7c-.38-.38-1.02-.38-1.41.01z"></path></svg></span></a></ul></span></div></div></div></div><div class="sc-gKXOVf lbYfkb searchform__inputContainer"><div aria-expanded="false" aria-haspopup="listbox" aria-owns="react-autowhatever-1" class="react-autosuggest__container" role="combobox"><input aria-autocomplete="list" aria-controls="react-autowhatever-1" aria-label="Search IMDb" autocapitalize="off" autocomplete="off" autocorrect="off" class="imdb-header-search__input searchTypeahead__input react-autosuggest__input" id="suggestion-search" name="q" placeholder="Search IMDb" type="text" value=""/></div></div><button aria-label="Submit Search" class="nav-search__search-submit searchform__submit" id="suggestion-search-button" type="submit"><svg class="ipc-icon ipc-icon--magnify" fill="currentColor" height="24" id="iconContext-magnify" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h24v24H0V0z" fill="none"></path><path d="M15.5 14h-.79l-.28-.27a6.5 6.5 0 0 0 1.48-5.34c-.47-2.78-2.79-5-5.59-5.34a6.505 6.505 0 0 0-7.27 7.27c.34 2.8 2.56 5.12 5.34 5.59a6.5 6.5 0 0 0 5.34-1.48l.27.28v.79l4.25 4.25c.41.41 1.08.41 1.49 0 .41-.41.41-1.08 0-1.49L15.5 14zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"></path></svg></button><input name="ref_" type="hidden" value="nv_sr_sm"/></form><label aria-disabled="false" aria-label="Close Search" class="ipc-icon-button imdb-header-search__state-closer ipc-icon-button--baseAlt ipc-icon-button--onBase" for="navSearch-searchState" id="imdbHeader-searchClose" role="button" tabindex="0" title="Close Search"><svg class="ipc-icon ipc-icon--clear" fill="currentColor" height="24" id="iconContext-clear" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h24v24H0V0z" fill="none"></path><path d="M18.3 5.71a.996.996 0 0 0-1.41 0L12 10.59 7.11 5.7A.996.996 0 1 0 5.7 7.11L10.59 12 5.7 16.89a.996.996 0 1 0 1.41 1.41L12 13.41l4.89 4.89a.996.996 0 1 0 1.41-1.41L13.41 12l4.89-4.89c.38-.38.38-1.02 0-1.4z"></path></svg></label></div><label aria-disabled="false" aria-label="Open Search" class="ipc-icon-button sc-kDDrLX cxVnln imdb-header-search__state-opener ipc-icon-button--baseAlt ipc-icon-button--onBase" for="navSearch-searchState" id="imdbHeader-searchOpen" role="button" tabindex="0" title="Open Search"><svg class="ipc-icon ipc-icon--magnify" fill="currentColor" height="24" id="iconContext-magnify" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h24v24H0V0z" fill="none"></path><path d="M15.5 14h-.79l-.28-.27a6.5 6.5 0 0 0 1.48-5.34c-.47-2.78-2.79-5-5.59-5.34a6.505 6.505 0 0 0-7.27 7.27c.34 2.8 2.56 5.12 5.34 5.59a6.5 6.5 0 0 0 5.34-1.48l.27.28v.79l4.25 4.25c.41.41 1.08.41 1.49 0 .41-.41.41-1.08 0-1.49L15.5 14zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"></path></svg></label><div class="navbar__imdbpro sc-kgflAQ jjOyce"><div class="sc-iBkjds iosfhR navbar__imdbpro-content navbar__flyout--breakpoint-l"><a aria-disabled="false" aria-label="Go To IMDb Pro" class="ipc-button ipc-button--single-padding ipc-button--center-align-content ipc-button--default-height ipc-button--core-baseAlt ipc-button--theme-baseAlt ipc-button--on-textPrimary ipc-text-button navbar__flyout__text-button-after-mobile navbar__imdb-pro--toggle" href="https://pro.imdb.com/login/ap?u=/login/lwa&imdbPageAction=signUp&rf=cons_nb_hm&ref_=cons_nb_hm" role="button" tabindex="0"><div class="ipc-button__text"><svg class="ipc-logo navbar__imdbpro-menu-toggle__name" height="14" version="1.1" viewbox="0 0 52 14" width="52" xmlns="http://www.w3.org/2000/svg"><g fill="currentColor"><rect height="12.34" width="3.21" x="0" y="1"></rect><path d="M10,1 L9.3,6.76 L8.84,3.63 C8.7,2.62 8.58,1.75 8.45,1 L4.3,1 L4.3,13.34 L7.11,13.34 L7.11,5.19 L8.3,13.34 L10.3,13.34 L11.42,5 L11.42,13.33 L14.22,13.33 L14.22,1 L10,1 Z"></path><path d="M19.24,3.22 C19.3711159,3.29185219 19.4602235,3.42180078 19.48,3.57 C19.5340993,3.92393477 19.554191,4.28223587 19.54,4.64 L19.54,9.42 C19.578852,9.92887392 19.5246327,10.4405682 19.38,10.93 C19.27,11.12 18.99,11.21 18.53,11.21 L18.53,3.11 C18.7718735,3.09406934 19.0142863,3.13162626 19.24,3.22 Z M19.24,13.34 C19.8163127,13.3574057 20.3928505,13.3138302 20.96,13.21 C21.3245396,13.1481159 21.6680909,12.9969533 21.96,12.77 C22.2288287,12.5438006 22.4209712,12.2398661 22.51,11.9 C22.643288,11.1679419 22.6969338,10.4236056 22.67,9.68 L22.67,5.34 C22.6662002,4.55669241 22.6060449,3.77467335 22.49,3 C22.43037,2.59841431 22.260779,2.22116094 22,1.91 C21.6636187,1.56093667 21.2326608,1.317654 20.76,1.21 C19.7709421,1.02848785 18.7647002,0.958050915 17.76,1 L15.32,1 L15.32,13.34 L19.24,13.34 Z"></path><path d="M27.86,10.34 C27.8769902,10.7218086 27.8501483,11.1043064 27.78,11.48 C27.72,11.63 27.46,11.71 27.26,11.71 C27.0954951,11.7299271 26.9386363,11.6349863 26.88,11.48 C26.7930212,11.1542289 26.7592527,10.8165437 26.78,10.48 L26.78,7.18 C26.7626076,6.84408875 26.7929089,6.50740774 26.87,6.18 C26.9317534,6.03447231 27.0833938,5.94840616 27.24,5.97 C27.43,5.97 27.7,6.05 27.76,6.21 C27.8468064,6.53580251 27.8805721,6.87345964 27.86,7.21 L27.86,10.34 Z M23.7,1 L23.7,13.34 L26.58,13.34 L26.78,12.55 C27.0112432,12.8467609 27.3048209,13.0891332 27.64,13.26 C28.0022345,13.4198442 28.394069,13.5016184 28.79,13.5 C29.2588971,13.515288 29.7196211,13.3746089 30.1,13.1 C30.4399329,12.8800058 30.6913549,12.5471372 30.81,12.16 C30.9423503,11.6167622 31.0061799,11.0590937 31,10.5 L31,7 C31.0087531,6.51279482 30.9920637,6.02546488 30.95,5.54 C30.904474,5.28996521 30.801805,5.05382649 30.65,4.85 C30.4742549,4.59691259 30.2270668,4.40194735 29.94,4.29 C29.5869438,4.15031408 29.2096076,4.08232558 28.83,4.09 C28.4361722,4.08961884 28.0458787,4.16428368 27.68,4.31 C27.3513666,4.46911893 27.0587137,4.693713 26.82,4.97 L26.82,1 L23.7,1 Z"></path></g><g fill="#33C5F3"><path d="M32.13,1 L35.32,1 C35.9925574,0.978531332 36.6650118,1.04577677 37.32,1.2 C37.717112,1.29759578 38.0801182,1.50157071 38.37,1.79 C38.6060895,2.05302496 38.7682605,2.37391646 38.84,2.72 C38.935586,3.27463823 38.9757837,3.8374068 38.96,4.4 L38.96,5.46 C38.9916226,6.03689533 38.9100917,6.61440551 38.72,7.16 C38.5402933,7.53432344 38.2260614,7.82713037 37.84,7.98 C37.3049997,8.18709035 36.7332458,8.28238268 36.16,8.26 L35.31,8.26 L35.31,13.16 L32.13,13.16 L32.13,1 Z M35.29,3.08 L35.29,6.18 L35.53,6.18 C35.7515781,6.20532753 35.9725786,6.12797738 36.13,5.97 C36.2717869,5.69610033 36.3308522,5.38687568 36.3,5.08 L36.3,4.08 C36.3390022,3.79579475 36.2713114,3.5072181 36.11,3.27 C35.8671804,3.11299554 35.5771259,3.04578777 35.29,3.08 Z"></path><path d="M42,4.36 L41.89,5.52 C42.28,4.69 43.67,4.42 44.41,4.37 L43.6,7.3 C43.2290559,7.27725357 42.8582004,7.34593052 42.52,7.5 C42.3057075,7.61238438 42.1519927,7.81367763 42.1,8.05 C42.0178205,8.59259006 41.9843538,9.14144496 42,9.69 L42,13.16 L39.34,13.16 L39.34,4.36 L42,4.36 Z"></path><path d="M51.63,9.71 C51.6472876,10.3265292 51.6003682,10.9431837 51.49,11.55 C51.376862,11.9620426 51.1639158,12.3398504 50.87,12.65 C50.5352227,13.001529 50.1148049,13.2599826 49.65,13.4 C49.0994264,13.5686585 48.5257464,13.6496486 47.95,13.64 C47.3333389,13.6524659 46.7178074,13.5818311 46.12,13.43 C45.6996896,13.322764 45.3140099,13.1092627 45,12.81 C44.7275808,12.5275876 44.5254637,12.1850161 44.41,11.81 C44.2627681,11.2181509 44.1921903,10.6098373 44.2,10 L44.2,7.64 C44.1691064,6.9584837 44.2780071,6.27785447 44.52,5.64 C44.7547114,5.12751365 45.1616363,4.71351186 45.67,4.47 C46.3337168,4.13941646 47.0688388,3.97796445 47.81,4 C48.4454888,3.98667568 49.0783958,4.08482705 49.68,4.29 C50.1352004,4.42444561 50.5506052,4.66819552 50.89,5 C51.1535526,5.26601188 51.3550281,5.58700663 51.48,5.94 C51.6001358,6.42708696 51.6506379,6.92874119 51.63,7.43 L51.63,9.71 Z M48.39,6.73 C48.412199,6.42705368 48.3817488,6.12255154 48.3,5.83 C48.2091142,5.71223121 48.0687606,5.64325757 47.92,5.64325757 C47.7712394,5.64325757 47.6308858,5.71223121 47.54,5.83 C47.447616,6.12046452 47.4136298,6.42634058 47.44,6.73 L47.44,10.93 C47.4168299,11.2204468 47.4508034,11.5126191 47.54,11.79 C47.609766,11.9270995 47.7570827,12.0067302 47.91,11.99 C48.0639216,12.0108082 48.2159732,11.9406305 48.3,11.81 C48.3790864,11.5546009 48.4096133,11.2866434 48.39,11.02 L48.39,6.73 Z"></path></g></svg></div></a></div></div><div class="sc-bZkfAO hMAZwf"></div><div class="sc-dmRaPn hCFCYu imdb-header__watchlist-button"><a aria-disabled="false" class="ipc-button ipc-button--single-padding ipc-button--center-align-content ipc-button--default-height ipc-button--core-baseAlt ipc-button--theme-baseAlt ipc-button--on-textPrimary ipc-text-button" href="/list/watchlist?ref_=nv_usr_wl_all_0" role="button" tabindex="0"><svg class="ipc-icon ipc-icon--watchlist ipc-button__icon ipc-button__icon--pre" fill="currentColor" height="24" id="iconContext-watchlist" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M17 3c1.05 0 1.918.82 1.994 1.851L19 5v16l-7-3-7 3V5c0-1.05.82-1.918 1.851-1.994L7 3h10zm-4 4h-2v3H8v2h3v3h2v-3h3v-2h-3V7z" fill="currentColor"></path></svg><div class="ipc-button__text">Watchlist</div></a></div><div class="nav__userMenu navbar__user sc-hHLeRK fFlqwB"><a aria-disabled="false" class="ipc-button ipc-button--single-padding ipc-button--center-align-content ipc-button--default-height ipc-button--core-baseAlt ipc-button--theme-baseAlt ipc-button--on-textPrimary ipc-text-button imdb-header__signin-text" href="/registration/signin?ref=nv_generic_lgin" role="button" tabindex="0"><div class="ipc-button__text">Sign In</div></a></div><div class="sc-iBkjds sc-llJcti iosfhR cmgxCq navbar__flyout--breakpoint-m"><label aria-disabled="false" aria-label="Toggle language selector" class="ipc-button ipc-button--single-padding ipc-button--center-align-content ipc-button--default-height ipc-button--core-baseAlt ipc-button--theme-baseAlt ipc-button--on-textDisabled ipc-text-button navbar__flyout__text-button-after-mobile" for="nav-language-selector" role="button" tabindex="0"><div class="ipc-button__text">EN<svg class="ipc-icon ipc-icon--arrow-drop-down navbar__flyout__button-pointer" fill="currentColor" height="24" id="iconContext-arrow-drop-down" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h24v24H0V0z" fill="none"></path><path d="M8.71 11.71l2.59 2.59c.39.39 1.02.39 1.41 0l2.59-2.59c.63-.63.18-1.71-.71-1.71H9.41c-.89 0-1.33 1.08-.7 1.71z"></path></svg></div></label><input aria-hidden="true" class="ipc-menu__focused-state" hidden="" id="nav-language-selector" name="nav-language-selector" tabindex="-1" type="checkbox"/><div class="ipc-menu mdc-menu ipc-menu--not-initialized ipc-menu--on-baseAlt ipc-menu--anchored ipc-menu--with-checkbox ipc-menu--expand-from-top-right navbar__flyout--menu" data-menu-id="nav-language-selector" role="presentation"><div class="ipc-menu__items mdc-menu__items" role="presentation"><span id="nav-language-selector-contents"><ul aria-orientation="vertical" class="ipc-list nav-fully-supported-languages ipc-list--baseAlt" role="menu"><li aria-disabled="false" class="ipc-list__item sc-iIPllB dpOEIG disabled" role="menuitem" tabindex="0"><span class="ipc-list-item__text" role="presentation">Fully supported</span></li><li class="ipc-list-divider" role="separator"></li><li aria-disabled="false" aria-label="English (United States)" class="ipc-list__item sc-bBrHrO dlnzbB language-option disabled selected" id="language-option-en-US" role="menuitem" tabindex="0"><span class="language-menu-item-span ipc-list-item__icon ipc-list-item__icon--pre" role="presentation"><svg class="ipc-icon ipc-icon--radio-button-checked language-menu-item-icon selected-language-icon" fill="currentColor" height="24" id="iconContext-radio-button-checked" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h24v24H0V0z" fill="none"></path><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z"></path><circle cx="12" cy="12" r="5"></circle></svg></span><span class="ipc-list-item__text" role="presentation">English (United States)</span></li><li class="ipc-list-divider" role="separator"></li></ul><ul aria-orientation="vertical" class="ipc-list nav-partially-supported-languages ipc-list--baseAlt" role="menu"><a aria-disabled="false" aria-label="Learn more about partially supported languages." class="ipc-list__item sc-iIPllB dpOEIG" href="https://help.imdb.com/article/issues/G6TCMBKAAR5G95EN?ref_=loc_nav_sel_hlp" role="menuitem" tabindex="0" target="_blank"><span class="ipc-list-item__text" role="presentation">Partially supported</span><span class="ipc-list-item__icon ipc-list-item__icon--post" role="presentation"><svg class="ipc-icon ipc-icon--help-outline" fill="currentColor" height="24" id="iconContext-help-outline" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h24v24H0V0z" fill="none"></path><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm-1-4h2v2h-2zm1.61-9.96c-2.06-.3-3.88.97-4.43 2.79-.18.58.26 1.17.87 1.17h.2c.41 0 .74-.29.88-.67.32-.89 1.27-1.5 2.3-1.28.95.2 1.65 1.13 1.57 2.1-.1 1.34-1.62 1.63-2.45 2.88 0 .01-.01.01-.01.02-.01.02-.02.03-.03.05-.09.15-.18.32-.25.5-.01.03-.03.05-.04.08-.01.02-.01.04-.02.07-.12.34-.2.75-.2 1.25h2c0-.42.11-.77.28-1.07.02-.03.03-.06.05-.09.08-.14.18-.27.28-.39.01-.01.02-.03.03-.04.1-.12.21-.23.33-.34.96-.91 2.26-1.65 1.99-3.56-.24-1.74-1.61-3.21-3.35-3.47z"></path></svg></span></a><li class="ipc-list-divider" role="separator"></li><li aria-disabled="false" aria-label="Français (Canada)" class="ipc-list__item sc-bBrHrO dlnzbB language-option disabled" id="language-option-fr-CA" role="menuitem" tabindex="0"><span class="language-menu-item-span ipc-list-item__icon ipc-list-item__icon--pre" role="presentation"><svg class="ipc-icon ipc-icon--radio-button-unchecked language-menu-item-icon" fill="currentColor" height="24" id="iconContext-radio-button-unchecked" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h24v24H0V0z" fill="none"></path><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z"></path></svg></span><span class="ipc-list-item__text" role="presentation">Français (Canada)</span></li><li aria-disabled="false" aria-label="Français (France)" class="ipc-list__item sc-bBrHrO dlnzbB language-option disabled" id="language-option-fr-FR" role="menuitem" tabindex="0"><span class="language-menu-item-span ipc-list-item__icon ipc-list-item__icon--pre" role="presentation"><svg class="ipc-icon ipc-icon--radio-button-unchecked language-menu-item-icon" fill="currentColor" height="24" id="iconContext-radio-button-unchecked" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h24v24H0V0z" fill="none"></path><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z"></path></svg></span><span class="ipc-list-item__text" role="presentation">Français (France)</span></li><li aria-disabled="false" aria-label="Deutsch (Deutschland)" class="ipc-list__item sc-bBrHrO dlnzbB language-option disabled" id="language-option-de-DE" role="menuitem" tabindex="0"><span class="language-menu-item-span ipc-list-item__icon ipc-list-item__icon--pre" role="presentation"><svg class="ipc-icon ipc-icon--radio-button-unchecked language-menu-item-icon" fill="currentColor" height="24" id="iconContext-radio-button-unchecked" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h24v24H0V0z" fill="none"></path><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z"></path></svg></span><span class="ipc-list-item__text" role="presentation">Deutsch (Deutschland)</span></li><li aria-disabled="false" aria-label="हिंदी (भारत)" class="ipc-list__item sc-bBrHrO dlnzbB language-option disabled" id="language-option-hi-IN" role="menuitem" tabindex="0"><span class="language-menu-item-span ipc-list-item__icon ipc-list-item__icon--pre" role="presentation"><svg class="ipc-icon ipc-icon--radio-button-unchecked language-menu-item-icon" fill="currentColor" height="24" id="iconContext-radio-button-unchecked" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h24v24H0V0z" fill="none"></path><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z"></path></svg></span><span class="ipc-list-item__text" role="presentation">हिंदी (भारत)</span></li><li aria-disabled="false" aria-label="Italiano (Italia)" class="ipc-list__item sc-bBrHrO dlnzbB language-option disabled" id="language-option-it-IT" role="menuitem" tabindex="0"><span class="language-menu-item-span ipc-list-item__icon ipc-list-item__icon--pre" role="presentation"><svg class="ipc-icon ipc-icon--radio-button-unchecked language-menu-item-icon" fill="currentColor" height="24" id="iconContext-radio-button-unchecked" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h24v24H0V0z" fill="none"></path><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z"></path></svg></span><span class="ipc-list-item__text" role="presentation">Italiano (Italia)</span></li><li aria-disabled="false" aria-label="Português (Brasil)" class="ipc-list__item sc-bBrHrO dlnzbB language-option disabled" id="language-option-pt-BR" role="menuitem" tabindex="0"><span class="language-menu-item-span ipc-list-item__icon ipc-list-item__icon--pre" role="presentation"><svg class="ipc-icon ipc-icon--radio-button-unchecked language-menu-item-icon" fill="currentColor" height="24" id="iconContext-radio-button-unchecked" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h24v24H0V0z" fill="none"></path><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z"></path></svg></span><span class="ipc-list-item__text" role="presentation">Português (Brasil)</span></li><li aria-disabled="false" aria-label="Español (España)" class="ipc-list__item sc-bBrHrO dlnzbB language-option disabled" id="language-option-es-ES" role="menuitem" tabindex="0"><span class="language-menu-item-span ipc-list-item__icon ipc-list-item__icon--pre" role="presentation"><svg class="ipc-icon ipc-icon--radio-button-unchecked language-menu-item-icon" fill="currentColor" height="24" id="iconContext-radio-button-unchecked" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h24v24H0V0z" fill="none"></path><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z"></path></svg></span><span class="ipc-list-item__text" role="presentation">Español (España)</span></li><li aria-disabled="false" aria-label="Español (México)" class="ipc-list__item sc-bBrHrO dlnzbB language-option disabled" id="language-option-es-MX" role="menuitem" tabindex="0"><span class="language-menu-item-span ipc-list-item__icon ipc-list-item__icon--pre" role="presentation"><svg class="ipc-icon ipc-icon--radio-button-unchecked language-menu-item-icon" fill="currentColor" height="24" id="iconContext-radio-button-unchecked" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h24v24H0V0z" fill="none"></path><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z"></path></svg></span><span class="ipc-list-item__text" role="presentation">Español (México)</span></li></ul></span></div></div></div></div></nav><script>if(typeof uet === 'function'){ uet('be', 'imdbHeader', {wb: 1}); }</script><script>if(typeof uex === 'function'){ uex('ld', 'imdbHeader', {wb: 1}); }</script><svg style="width:0;height:0;overflow:hidden;display:block" version="1.1" xmlns="http://www.w3.org/2000/svg"><defs><lineargradient id="ipc-svg-gradient-tv-logo-t" x1="31.973%" x2="153.413%" y1="53.409%" y2="-16.853%"><stop offset="21.89%" stop-color="#D01F49"></stop><stop offset="83.44%" stop-color="#E8138B"></stop></lineargradient><lineargradient id="ipc-svg-gradient-tv-logo-v" x1="-38.521%" x2="104.155%" y1="84.997%" y2="14.735%"><stop offset="21.89%" stop-color="#D01F49"></stop><stop offset="83.44%" stop-color="#E8138B"></stop></lineargradient></defs></svg></section> <script>
window.__NAVBAR_PROPS__ = {
locale: 'en-US',
isLoggedIn: false,
serviceName: 'Legacy',
showLanguageSelector: true
};
</script>
<script>
if (typeof uet == 'function') {
uet("ne");
}
</script>
<div id="wrapper">
<div class="redesign" id="root">
<div class="navbarSprite" id="nb20">
<div id="supertab">
<!-- no content received for slot: top_ad -->
<script>
var event = {
type: '',
slotName: 'top_ad',
timestamp: Date.now()
};
var mediaEvent = event;
mediaEvent.type = 'no-autoplay-video-ad-detected';
if (window && window.mediaOrchestrator) {
window.mediaOrchestrator.publish('mediaPlaybackEvent', mediaEvent);
window.mediaOrchestrator.publish('noAdToLoad', event);
}
</script>
</div>
<!-- no content received for slot: navstrip -->
<!-- no content received for slot: injected_navstrip -->
</div>
<div class="pagecontent" id="pagecontent">
<!-- no content received for slot: injected_billboard -->
<div id="content-2-wide">
<div id="main">
<div class="article listo">
<div class="overflow-menu">
<div class="circle">
<div class="vertical-ellipsis">
<svg fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9
2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z"></path>
</svg>
</div>
</div>
<div class="pop-up-dialog">
<ul class="pop-up-menu-list-items">
<li><a class="pop-up-menu-list-item-link" href="/list/ls056092300/copy">
Copy from this list
</a></li>
<li><a class="pop-up-menu-list-item-link" href="/list/ls056092300/export">
Export
</a></li>
<li><a class="pop-up-menu-list-item-link" href="/contact?deepLink=list_report&disableLoginPopup=true&list=ls056092300">
Report this list
</a></li>
</ul>
</div>
</div>
<h1 class="header list-name">100 Best Indian Films Till Date</h1>
<span class="list-overview text-small" id="list-overview-summary">
by <a href="/user/ur40466907/">yashmishra91</a>
<span class="ghost">|</span> <span class="text-muted" id="list-overview-created">created - 23 Jul 2013</span>
<span class="ghost">|</span> <span class="text-muted" id="list-overview-lastupdated">updated - 24 Jul 2013</span>
<span class="ghost">|</span> <svg class="privacy-public item-privacy-lock" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path class="path" d="M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm-6 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm3.1-9H8.9V6c0-1.71 1.39-3.1 3.1-3.1 1.71 0 3.1 1.39 3.1 3.1v2z"></path>
</svg>
<span class="privacy-overview text-muted">
Public
</span>
</span>
<div class="list-description"><p>Here is the list of 100 Best Indian Films till date</p></div>
<div class="faceter nojs-hidden">
<div class="faceter-header">
<span class="expand">
<span class="global-sprite double-arrow down active"></span> <strong>Refine</strong>
</span>
<span class="facets-active">
<span class="empty text-muted">See titles to watch instantly, titles you haven't rated, etc</span>
</span>
</div>
<div class="faceter-content">
<div class="faceter-categories">
<ul>
<li class="faceter-category" data-for="watch_options">
<strong>Instant Watch Options</strong>
</li>
<li class="faceter-category" data-for="genres">
<strong>Genres</strong>
</li>
<li class="faceter-category" data-for="title_type">
<strong>Movies or TV</strong>
</li>
<li class="faceter-category" data-for="imdb_rating">
<strong>IMDb Rating</strong>
</li>
<li class="faceter-category" data-for="in_theaters">
<strong>In Theaters</strong>
</li>
<li class="faceter-category" data-for="release_date">
<strong>Release Year</strong>
</li>
<li class="faceter-category" data-for="keywords">
<strong>Keywords</strong>
</li>
</ul>
</div><div class="faceter-facets">
<div class="faceter-fieldset watch_options">
<fieldset data-join="and" name="watch_option">
<label class="unbold">
<input data-count="38" name="has_video_prime_instant_video" ref-marker="ttls_ref_inst_piv" type="checkbox"/>
<span class="faceter-facet-text">Prime Video</span>
<span class="text-muted text-small">(38)</span>
</label>
<br/>
</fieldset>
</div>
<div class="faceter-fieldset genres">
<fieldset data-join="and" name="genres">
<span class="col-2">
<label class="unbold">
<input data-count="93" name="Drama" ref-marker="ttls_ref_gnr" type="checkbox"/>
<span class="faceter-facet-text">Drama</span>
<span class="text-muted text-small">(93)</span>
</label>
</span>
<span class="col-2">
<label class="unbold">
<input data-count="32" name="Romance" ref-marker="ttls_ref_gnr" type="checkbox"/>
<span class="faceter-facet-text">Romance</span>
<span class="text-muted text-small">(32)</span>
</label>
</span>
<span class="col-2">
<label class="unbold">
<input data-count="27" name="Comedy" ref-marker="ttls_ref_gnr" type="checkbox"/>
<span class="faceter-facet-text">Comedy</span>
<span class="text-muted text-small">(27)</span>
</label>
</span>
<span class="col-2">
<label class="unbold">
<input data-count="26" name="Musical" ref-marker="ttls_ref_gnr" type="checkbox"/>
<span class="faceter-facet-text">Musical</span>
<span class="text-muted text-small">(26)</span>
</label>
</span>
<span class="col-2">
<label class="unbold">
<input data-count="17" name="Action" ref-marker="ttls_ref_gnr" type="checkbox"/>
<span class="faceter-facet-text">Action</span>
<span class="text-muted text-small">(17)</span>
</label>
</span>
<span class="col-2">
<label class="unbold">
<input data-count="17" name="Crime" ref-marker="ttls_ref_gnr" type="checkbox"/>
<span class="faceter-facet-text">Crime</span>
<span class="text-muted text-small">(17)</span>
</label>
</span>
<span class="col-2">
<label class="unbold">
<input data-count="11" name="Thriller" ref-marker="ttls_ref_gnr" type="checkbox"/>
<span class="faceter-facet-text">Thriller</span>
<span class="text-muted text-small">(11)</span>
</label>
</span>
<span class="col-2">
<label class="unbold">
<input data-count="5" name="Biography" ref-marker="ttls_ref_gnr" type="checkbox"/>
<span class="faceter-facet-text">Biography</span>
<span class="text-muted text-small">(5)</span>
</label>
</span>
<span class="col-2">
<label class="unbold">
<input data-count="5" name="Family" ref-marker="ttls_ref_gnr" type="checkbox"/>
<span class="faceter-facet-text">Family</span>
<span class="text-muted text-small">(5)</span>
</label>
</span>
<span class="col-2">
<label class="unbold">
<input data-count="5" name="War" ref-marker="ttls_ref_gnr" type="checkbox"/>
<span class="faceter-facet-text">War</span>
<span class="text-muted text-small">(5)</span>
</label>
</span>
<span class="col-2">
<label class="unbold">
<input data-count="3" name="History" ref-marker="ttls_ref_gnr" type="checkbox"/>
<span class="faceter-facet-text">History</span>
<span class="text-muted text-small">(3)</span>
</label>
</span>
<span class="col-2">
<label class="unbold">
<input data-count="2" name="Adventure" ref-marker="ttls_ref_gnr" type="checkbox"/>
<span class="faceter-facet-text">Adventure</span>
<span class="text-muted text-small">(2)</span>
</label>
</span>
<span class="col-2">
<label class="unbold">
<input data-count="2" name="Fantasy" ref-marker="ttls_ref_gnr" type="checkbox"/>
<span class="faceter-facet-text">Fantasy</span>
<span class="text-muted text-small">(2)</span>
</label>
</span>
<span class="col-2">
<label class="unbold">
<input data-count="2" name="Music" ref-marker="ttls_ref_gnr" type="checkbox"/>
<span class="faceter-facet-text">Music</span>
<span class="text-muted text-small">(2)</span>
</label>
</span>
<span class="col-2">
<label class="unbold">
<input data-count="2" name="Mystery" ref-marker="ttls_ref_gnr" type="checkbox"/>
<span class="faceter-facet-text">Mystery</span>
<span class="text-muted text-small">(2)</span>
</label>
</span>
<span class="col-2">
<label class="unbold">
<input data-count="2" name="Sci-Fi" ref-marker="ttls_ref_gnr" type="checkbox"/>
<span class="faceter-facet-text">Sci-Fi</span>
<span class="text-muted text-small">(2)</span>
</label>
</span>
<span class="col-2">
<label class="unbold">
<input data-count="2" name="Sport" ref-marker="ttls_ref_gnr" type="checkbox"/>
<span class="faceter-facet-text">Sport</span>
<span class="text-muted text-small">(2)</span>
</label>
</span>
<span class="col-2">
<label class="unbold">
<input data-count="1" name="Western" ref-marker="ttls_ref_gnr" type="checkbox"/>
<span class="faceter-facet-text">Western</span>
<span class="text-muted text-small">(1)</span>
</label>
</span>
</fieldset>
</div>
<div class="faceter-fieldset title_type">
<fieldset data-join="or" name="title_type">
<label class="unbold">
<input data-count="100" name="movie" ref-marker="ttls_ref_typ" type="checkbox"/>
<span class="faceter-facet-text">Feature Film</span>
<span class="text-muted text-small">(100)</span>
</label>
<br/>
</fieldset>
</div>
<div class="faceter-fieldset imdb_rating">
<fieldset data-join="between" name="user_rating">
<legend class="text-muted unbold" data-tag="IMDb Rating">IMDb user rating (average)</legend>
<span></span>
<select name="min" ref-marker="ttls_ref_rt_usr" value="0.0">
<option value="1">1</option>
<option value="1.1">1.1</option>
<option value="1.2">1.2</option>
<option value="1.3">1.3</option>
<option value="1.4">1.4</option>
<option value="1.5">1.5</option>
<option value="1.6">1.6</option>
<option value="1.7">1.7</option>
<option value="1.8">1.8</option>
<option value="1.9">1.9</option>
<option value="2.0">2.0</option>
<option value="2.1">2.1</option>
<option value="2.2">2.2</option>
<option value="2.3">2.3</option>
<option value="2.4">2.4</option>
<option value="2.5">2.5</option>
<option value="2.6">2.6</option>
<option value="2.7">2.7</option>
<option value="2.8">2.8</option>
<option value="2.9">2.9</option>
<option value="3.0">3.0</option>
<option value="3.1">3.1</option>
<option value="3.2">3.2</option>
<option value="3.3">3.3</option>
<option value="3.4">3.4</option>
<option value="3.5">3.5</option>
<option value="3.6">3.6</option>
<option value="3.7">3.7</option>
<option value="3.8">3.8</option>
<option value="3.9">3.9</option>
<option value="4.0">4.0</option>
<option value="4.1">4.1</option>
<option value="4.2">4.2</option>
<option value="4.3">4.3</option>
<option value="4.4">4.4</option>
<option value="4.5">4.5</option>
<option value="4.6">4.6</option>
<option value="4.7">4.7</option>
<option value="4.8">4.8</option>
<option value="4.9">4.9</option>
<option value="5.0">5.0</option>
<option value="5.1">5.1</option>
<option value="5.2">5.2</option>
<option value="5.3">5.3</option>
<option value="5.4">5.4</option>
<option value="5.5">5.5</option>
<option value="5.6">5.6</option>
<option value="5.7">5.7</option>
<option value="5.8">5.8</option>
<option value="5.9">5.9</option>
<option value="6.0">6.0</option>
<option value="6.1">6.1</option>
<option value="6.2">6.2</option>
<option value="6.3">6.3</option>
<option value="6.4">6.4</option>
<option value="6.5">6.5</option>
<option value="6.6">6.6</option>
<option value="6.7">6.7</option>
<option value="6.8">6.8</option>
<option value="6.9">6.9</option>
<option value="7.0">7.0</option>
<option value="7.1">7.1</option>
<option value="7.2">7.2</option>
<option value="7.3">7.3</option>
<option value="7.4">7.4</option>
<option value="7.5">7.5</option>
<option value="7.6">7.6</option>
<option value="7.7">7.7</option>
<option value="7.8">7.8</option>
<option value="7.9">7.9</option>
<option value="8.0">8.0</option>
<option value="8.1">8.1</option>
<option value="8.2">8.2</option>
<option value="8.3">8.3</option>
<option value="8.4">8.4</option>
<option value="8.5">8.5</option>
<option value="8.6">8.6</option>
<option value="8.7">8.7</option>
<option value="8.8">8.8</option>
<option value="8.9">8.9</option>
<option value="9.0">9.0</option>
<option value="9.1">9.1</option>
<option value="9.2">9.2</option>
<option value="9.3">9.3</option>
<option value="9.4">9.4</option>
<option value="9.5">9.5</option>
<option value="9.6">9.6</option>
<option value="9.7">9.7</option>
<option value="9.8">9.8</option>
<option value="9.9">9.9</option>
<option value="10">10</option>
</select>
<span>to</span>
<select name="max" ref-marker="ttls_ref_rt_usr" value="0.0">
<option value="10">10</option>
<option value="9.9">9.9</option>
<option value="9.8">9.8</option>
<option value="9.7">9.7</option>
<option value="9.6">9.6</option>
<option value="9.5">9.5</option>
<option value="9.4">9.4</option>
<option value="9.3">9.3</option>
<option value="9.2">9.2</option>
<option value="9.1">9.1</option>
<option value="9.0">9.0</option>
<option value="8.9">8.9</option>
<option value="8.8">8.8</option>
<option value="8.7">8.7</option>
<option value="8.6">8.6</option>
<option value="8.5">8.5</option>
<option value="8.4">8.4</option>
<option value="8.3">8.3</option>
<option value="8.2">8.2</option>
<option value="8.1">8.1</option>
<option value="8.0">8.0</option>
<option value="7.9">7.9</option>
<option value="7.8">7.8</option>
<option value="7.7">7.7</option>
<option value="7.6">7.6</option>
<option value="7.5">7.5</option>
<option value="7.4">7.4</option>
<option value="7.3">7.3</option>
<option value="7.2">7.2</option>
<option value="7.1">7.1</option>
<option value="7.0">7.0</option>
<option value="6.9">6.9</option>
<option value="6.8">6.8</option>
<option value="6.7">6.7</option>
<option value="6.6">6.6</option>
<option value="6.5">6.5</option>
<option value="6.4">6.4</option>
<option value="6.3">6.3</option>
<option value="6.2">6.2</option>
<option value="6.1">6.1</option>
<option value="6.0">6.0</option>
<option value="5.9">5.9</option>
<option value="5.8">5.8</option>
<option value="5.7">5.7</option>
<option value="5.6">5.6</option>
<option value="5.5">5.5</option>
<option value="5.4">5.4</option>
<option value="5.3">5.3</option>
<option value="5.2">5.2</option>
<option value="5.1">5.1</option>
<option value="5.0">5.0</option>
<option value="4.9">4.9</option>
<option value="4.8">4.8</option>
<option value="4.7">4.7</option>
<option value="4.6">4.6</option>
<option value="4.5">4.5</option>
<option value="4.4">4.4</option>
<option value="4.3">4.3</option>
<option value="4.2">4.2</option>
<option value="4.1">4.1</option>
<option value="4.0">4.0</option>
<option value="3.9">3.9</option>
<option value="3.8">3.8</option>
<option value="3.7">3.7</option>
<option value="3.6">3.6</option>
<option value="3.5">3.5</option>
<option value="3.4">3.4</option>
<option value="3.3">3.3</option>
<option value="3.2">3.2</option>
<option value="3.1">3.1</option>
<option value="3.0">3.0</option>
<option value="2.9">2.9</option>
<option value="2.8">2.8</option>
<option value="2.7">2.7</option>
<option value="2.6">2.6</option>
<option value="2.5">2.5</option>
<option value="2.4">2.4</option>
<option value="2.3">2.3</option>
<option value="2.2">2.2</option>
<option value="2.1">2.1</option>
<option value="2.0">2.0</option>
<option value="1.9">1.9</option>
<option value="1.8">1.8</option>
<option value="1.7">1.7</option>
<option value="1.6">1.6</option>
<option value="1.5">1.5</option>
<option value="1.4">1.4</option>
<option value="1.3">1.3</option>
<option value="1.2">1.2</option>
<option value="1.1">1.1</option>
<option value="1">1</option>
</select>
</fieldset>
<fieldset data-join="between" name="num_votes">
<legend class="text-muted unbold" data-tag="Votes">Number of votes</legend>
<span></span>
<input data-validation="^[0-9]\d*$" name="min" ref-marker="ttls_ref_rt_vt" size="10" type="text" value=""/>
<span>to</span>
<input data-validation="^[0-9]\d*$" name="max" ref-marker="ttls_ref_rt_vt" size="10" type="text" value=""/>
<a class="btn small secondary faceter-search-btn" data-group="num_votes" href="#" title="Search"> »
</a> </fieldset>
</div>
<div class="faceter-fieldset in_theaters">
<fieldset data-join="and" name="now_playing">
<label class="unbold">
<input data-count="" name="in_theaters" ref-marker="ttls_ref_sh_fav" type="radio" value="favorite">
<span class="faceter-facet-text">In Favorite Theaters</span>
</input></label>
<br/>
<label class="unbold">
<input data-count="" name="in_theaters" ref-marker="ttls_ref_sh_you" type="radio" value="restrict">
<span class="faceter-facet-text">In Theaters Near You</span>
</input></label>
<br/>
<hr/>
</fieldset>
<a class="faceter-reset" data-fieldset="in_theaters" href="#">Reset</a>
</div>
<div class="faceter-fieldset release_date">
<fieldset data-join="between" name="release_date">
<legend class="text-muted unbold" data-tag="Released">Release year or range</legend>
<span></span>
<input data-validation="^[0-9]\d*$" name="min" ref-marker="ttls_ref_yr" size="10" type="text" value=""/>
<span>to</span>
<input data-validation="^[0-9]\d*$" name="max" ref-marker="ttls_ref_yr" size="10" type="text" value=""/>
<a class="btn small secondary faceter-search-btn" data-group="release_date" href="#" title="Search"> »
</a> </fieldset>
</div>
<div class="faceter-fieldset keywords">
<fieldset data-join="and" name="keywords">
<label class="unbold">
<input data-count="30" name="death" ref-marker="ttls_ref_key" type="checkbox">
<span class="faceter-facet-text">Death</span>
<span class="text-muted text-small">(30)</span>
</input></label>
<br/>
<label class="unbold">
<input data-count="30" name="love" ref-marker="ttls_ref_key" type="checkbox">
<span class="faceter-facet-text">Love</span>
<span class="text-muted text-small">(30)</span>
</input></label>
<br/>
<label class="unbold">
<input data-count="26" name="husband-wife-relationship" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Husband Wife Relationship</span>
<span class="text-muted text-small">(26)</span>
</label>
<br/>
<label class="unbold">
<input data-count="22" name="father-son-relationship" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Father Son Relationship</span>
<span class="text-muted text-small">(22)</span>
</label>
<br/>
<label class="unbold">
<input data-count="21" name="friendship" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Friendship</span>
<span class="text-muted text-small">(21)</span>
</label>
<br/>
<label class="unbold">
<input data-count="21" name="train" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Train</span>
<span class="text-muted text-small">(21)</span>
</label>
<br/>
<label class="unbold">
<input data-count="20" name="one-word-title" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">One Word Title</span>
<span class="text-muted text-small">(20)</span>
</label>
<br/>
<label class="unbold">
<input data-count="19" name="cult-film" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Cult Film</span>
<span class="text-muted text-small">(19)</span>
</label>
<br/>
<label class="unbold">
<input data-count="18" name="mother-son-relationship" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Mother Son Relationship</span>
<span class="text-muted text-small">(18)</span>
</label>
<br/>
<label class="unbold">
<input data-count="18" name="murder" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Murder</span>
<span class="text-muted text-small">(18)</span>
</label>
<br/>
<label class="unbold">
<input data-count="17" name="based-on-novel" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Based On Novel</span>
<span class="text-muted text-small">(17)</span>
</label>
<br/>
<label class="unbold">
<input data-count="16" name="india" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">India</span>
<span class="text-muted text-small">(16)</span>
</label>
<br/>
<label class="unbold">
<input data-count="16" name="title-spoken-by-character" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Title Spoken By Character</span>
<span class="text-muted text-small">(16)</span>
</label>
<br/>
<label class="unbold">
<input data-count="15" name="family-relationships" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Family Relationships</span>
<span class="text-muted text-small">(15)</span>
</label>
<br/>
<label class="unbold">
<input data-count="15" name="flashback" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Flashback</span>
<span class="text-muted text-small">(15)</span>
</label>
<br/>
<label class="unbold">
<input data-count="15" name="muslim" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Muslim</span>
<span class="text-muted text-small">(15)</span>
</label>
<br/>
<label class="unbold">
<input data-count="15" name="wedding" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Wedding</span>
<span class="text-muted text-small">(15)</span>
</label>
<br/>
<label class="unbold">
<input data-count="14" name="drunkenness" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Drunkenness</span>
<span class="text-muted text-small">(14)</span>
</label>
<br/>
<label class="unbold">
<input data-count="14" name="marriage" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Marriage</span>
<span class="text-muted text-small">(14)</span>
</label>
<br/>
<label class="unbold">
<input data-count="14" name="police" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Police</span>
<span class="text-muted text-small">(14)</span>
</label>
<br/>
<label class="unbold">
<input data-count="14" name="rain" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Rain</span>
<span class="text-muted text-small">(14)</span>
</label>
<br/>
<label class="unbold">
<input data-count="12" name="anger" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Anger</span>
<span class="text-muted text-small">(12)</span>
</label>
<br/>
<label class="unbold">
<input data-count="12" name="beating" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Beating</span>
<span class="text-muted text-small">(12)</span>
</label>
<br/>
<label class="unbold">
<input data-count="12" name="dancer" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Dancer</span>
<span class="text-muted text-small">(12)</span>
</label>
<br/>
<label class="unbold">
<input data-count="12" name="local-blockbuster" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Local Blockbuster</span>
<span class="text-muted text-small">(12)</span>
</label>
<br/>
<label class="unbold">
<input data-count="12" name="tragic-event" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Tragic Event</span>
<span class="text-muted text-small">(12)</span>
</label>
<br/>
<label class="unbold">
<input data-count="12" name="village" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Village</span>
<span class="text-muted text-small">(12)</span>
</label>
<br/>
<label class="unbold">
<input data-count="11" name="based-on-true-story" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Based On True Story</span>
<span class="text-muted text-small">(11)</span>
</label>
<br/>
<label class="unbold">
<input data-count="11" name="dancing" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Dancing</span>
<span class="text-muted text-small">(11)</span>
</label>
<br/>
<label class="unbold">
<input data-count="11" name="father-daughter-relationship" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Father Daughter Relationship</span>
<span class="text-muted text-small">(11)</span>
</label>
<br/>
<label class="unbold">
<input data-count="11" name="hindu" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Hindu</span>
<span class="text-muted text-small">(11)</span>
</label>
<br/>
<label class="unbold">
<input data-count="11" name="mumbai-india" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Mumbai India</span>
<span class="text-muted text-small">(11)</span>
</label>
<br/>
<label class="unbold">
<input data-count="11" name="poverty" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Poverty</span>
<span class="text-muted text-small">(11)</span>
</label>
<br/>
<label class="unbold">
<input data-count="11" name="train-station" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Train Station</span>
<span class="text-muted text-small">(11)</span>
</label>
<br/>
<label class="unbold">
<input data-count="10" name="fight" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Fight</span>
<span class="text-muted text-small">(10)</span>
</label>
<br/>
<label class="unbold">
<input data-count="10" name="friend" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Friend</span>
<span class="text-muted text-small">(10)</span>
</label>
<br/>
<label class="unbold">
<input data-count="10" name="song" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Song</span>
<span class="text-muted text-small">(10)</span>
</label>
<br/>
<label class="unbold">
<input data-count="9" name="alcoholic" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Alcoholic</span>
<span class="text-muted text-small">(9)</span>
</label>
<br/>
<label class="unbold">
<input data-count="9" name="blood" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Blood</span>
<span class="text-muted text-small">(9)</span>
</label>
<br/>
<label class="unbold">
<input data-count="9" name="character-name-in-title" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Character Name In Title</span>
<span class="text-muted text-small">(9)</span>
</label>
<br/>
<label class="unbold">
<input data-count="9" name="drinking" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Drinking</span>
<span class="text-muted text-small">(9)</span>
</label>
<br/>
<label class="unbold">
<input data-count="9" name="gangster" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Gangster</span>
<span class="text-muted text-small">(9)</span>
</label>
<br/>
<label class="unbold">
<input data-count="9" name="grief" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Grief</span>
<span class="text-muted text-small">(9)</span>
</label>
<br/>
<label class="unbold">
<input data-count="9" name="mistaken-identity" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Mistaken Identity</span>
<span class="text-muted text-small">(9)</span>
</label>
<br/>
<label class="unbold">
<input data-count="9" name="singing" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Singing</span>
<span class="text-muted text-small">(9)</span>
</label>
<br/>
<label class="unbold">
<input data-count="9" name="slapped-in-the-face" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Slapped In The Face</span>
<span class="text-muted text-small">(9)</span>
</label>
<br/>
<label class="unbold">
<input data-count="9" name="tragedy" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Tragedy</span>
<span class="text-muted text-small">(9)</span>
</label>
<br/>
<label class="unbold">
<input data-count="9" name="unrequited-love" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Unrequited Love</span>
<span class="text-muted text-small">(9)</span>
</label>
<br/>
<label class="unbold">
<input data-count="9" name="violence" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Violence</span>
<span class="text-muted text-small">(9)</span>
</label>
<br/>
<label class="unbold">
<input data-count="8" name="anti-hero" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Anti Hero</span>
<span class="text-muted text-small">(8)</span>
</label>
<br/>
<label class="unbold">
<input data-count="8" name="arranged-marriage" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Arranged Marriage</span>
<span class="text-muted text-small">(8)</span>
</label>
<br/>
<label class="unbold">
<input data-count="8" name="hospital" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Hospital</span>
<span class="text-muted text-small">(8)</span>
</label>
<br/>
<label class="unbold">
<input data-count="8" name="love-triangle" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Love Triangle</span>
<span class="text-muted text-small">(8)</span>
</label>
<br/>
<label class="unbold">
<input data-count="8" name="photograph" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Photograph</span>
<span class="text-muted text-small">(8)</span>
</label>
<br/>
<label class="unbold">
<input data-count="8" name="police-station" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Police Station</span>
<span class="text-muted text-small">(8)</span>
</label>
<br/>
<label class="unbold">
<input data-count="8" name="revenge" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Revenge</span>
<span class="text-muted text-small">(8)</span>
</label>
<br/>
<label class="unbold">
<input data-count="8" name="singer" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Singer</span>
<span class="text-muted text-small">(8)</span>
</label>
<br/>
<label class="unbold">
<input data-count="7" name="character-name-as-title" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Character Name As Title</span>
<span class="text-muted text-small">(7)</span>
</label>
<br/>
<label class="unbold">
<input data-count="7" name="character-repeats-someone-else's-dialogue" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Character Repeats Someone Else's Dialogue</span>
<span class="text-muted text-small">(7)</span>
</label>
<br/>
<label class="unbold">
<input data-count="7" name="coming-of-age" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Coming Of Age</span>
<span class="text-muted text-small">(7)</span>
</label>
<br/>
<label class="unbold">
<input data-count="7" name="death-of-friend" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Death Of Friend</span>
<span class="text-muted text-small">(7)</span>
</label>
<br/>
<label class="unbold">
<input data-count="7" name="death-of-protagonist" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Death Of Protagonist</span>
<span class="text-muted text-small">(7)</span>
</label>
<br/>
<label class="unbold">
<input data-count="7" name="escape" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Escape</span>
<span class="text-muted text-small">(7)</span>
</label>
<br/>
<label class="unbold">
<input data-count="7" name="freeze-frame" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Freeze Frame</span>
<span class="text-muted text-small">(7)</span>
</label>
<br/>
<label class="unbold">
<input data-count="7" name="kidnapping" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Kidnapping</span>
<span class="text-muted text-small">(7)</span>
</label>
<br/>
<label class="unbold">
<input data-count="7" name="party" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Party</span>
<span class="text-muted text-small">(7)</span>
</label>
<br/>
<label class="unbold">
<input data-count="7" name="patriotism" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Patriotism</span>
<span class="text-muted text-small">(7)</span>
</label>
<br/>
<label class="unbold">
<input data-count="7" name="poetry" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Poetry</span>
<span class="text-muted text-small">(7)</span>
</label>
<br/>
<label class="unbold">
<input data-count="7" name="police-officer" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Police Officer</span>
<span class="text-muted text-small">(7)</span>
</label>
<br/>
<label class="unbold">
<input data-count="7" name="pregnancy" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Pregnancy</span>
<span class="text-muted text-small">(7)</span>
</label>
<br/>
<label class="unbold">
<input data-count="7" name="prison" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Prison</span>
<span class="text-muted text-small">(7)</span>
</label>
<br/>
<label class="unbold">
<input data-count="7" name="rural-setting" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Rural Setting</span>
<span class="text-muted text-small">(7)</span>
</label>
<br/>
<label class="unbold">
<input data-count="7" name="suicide" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Suicide</span>
<span class="text-muted text-small">(7)</span>
</label>
<br/>
<label class="unbold">
<input data-count="7" name="telephone-call" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Telephone Call</span>
<span class="text-muted text-small">(7)</span>
</label>
<br/>
<label class="unbold">
<input data-count="7" name="voice-over-narration" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Voice Over Narration</span>
<span class="text-muted text-small">(7)</span>
</label>
<br/>
<label class="unbold">
<input data-count="6" name="arrest" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Arrest</span>
<span class="text-muted text-small">(6)</span>
</label>
<br/>
<label class="unbold">
<input data-count="6" name="brother-brother-relationship" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Brother Brother Relationship</span>
<span class="text-muted text-small">(6)</span>
</label>
<br/>
<label class="unbold">
<input data-count="6" name="dance" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Dance</span>
<span class="text-muted text-small">(6)</span>
</label>
<br/>
<label class="unbold">
<input data-count="6" name="directorial-debut" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Directorial Debut</span>
<span class="text-muted text-small">(6)</span>
</label>
<br/>
<label class="unbold">
<input data-count="6" name="dog" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Dog</span>
<span class="text-muted text-small">(6)</span>
</label>
<br/>
<label class="unbold">
<input data-count="6" name="dual-role" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Dual Role</span>
<span class="text-muted text-small">(6)</span>
</label>
<br/>
<label class="unbold">
<input data-count="6" name="explosion" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Explosion</span>
<span class="text-muted text-small">(6)</span>
</label>
<br/>
<label class="unbold">
<input data-count="6" name="famous-line" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Famous Line</span>
<span class="text-muted text-small">(6)</span>
</label>
<br/>
<label class="unbold">
<input data-count="6" name="female-protagonist" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Female Protagonist</span>
<span class="text-muted text-small">(6)</span>
</label>
<br/>
<label class="unbold">
<input data-count="6" name="gun" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Gun</span>
<span class="text-muted text-small">(6)</span>
</label>
<br/>
<label class="unbold">
<input data-count="6" name="hotel" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Hotel</span>
<span class="text-muted text-small">(6)</span>
</label>
<br/>
<label class="unbold">
<input data-count="6" name="independent-film" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Independent Film</span>
<span class="text-muted text-small">(6)</span>
</label>
<br/>
<label class="unbold">
<input data-count="6" name="loneliness" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Loneliness</span>
<span class="text-muted text-small">(6)</span>
</label>
<br/>
<label class="unbold">
<input data-count="6" name="loss-of-father" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Loss Of Father</span>
<span class="text-muted text-small">(6)</span>
</label>
<br/>
<label class="unbold">
<input data-count="6" name="mistress" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Mistress</span>
<span class="text-muted text-small">(6)</span>
</label>
<br/>
<label class="unbold">
<input data-count="6" name="restaurant" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Restaurant</span>
<span class="text-muted text-small">(6)</span>
</label>
<br/>
<label class="unbold">
<input data-count="6" name="rivalry" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Rivalry</span>
<span class="text-muted text-small">(6)</span>
</label>
<br/>
<label class="unbold">
<input data-count="6" name="told-in-flashback" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Told In Flashback</span>
<span class="text-muted text-small">(6)</span>
</label>
<br/>
<label class="unbold">
<input data-count="6" name="torture" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Torture</span>
<span class="text-muted text-small">(6)</span>
</label>
<br/>
<label class="unbold">
<input data-count="5" name="1960s" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">1960s</span>
<span class="text-muted text-small">(5)</span>
</label>
<br/>
<label class="unbold">
<input data-count="5" name="adultery" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Adultery</span>
<span class="text-muted text-small">(5)</span>
</label>
<br/>
<label class="unbold">
<input data-count="5" name="alcoholism" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Alcoholism</span>
<span class="text-muted text-small">(5)</span>
</label>
<br/>
<label class="unbold">
<input data-count="5" name="anguish" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Anguish</span>
<span class="text-muted text-small">(5)</span>
</label>
<br/>
<label class="unbold">
<input data-count="5" name="attempted-murder" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Attempted Murder</span>
<span class="text-muted text-small">(5)</span>
</label>
<br/>
<label class="unbold">
<input data-count="5" name="beach" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">Beach</span>
<span class="text-muted text-small">(5)</span>
</label>
<br/>
</fieldset>
</div>
</div>
</div>
<div class="hidden faceter-working">
</div>
</div>
<div class="lister list detail sub-list">
<div class="header filmosearch">
<div class="nav">
<div class="lister-controls float-right lister-activated">
<div class="lister-control-group">
Sort by: <br/>
<select class="lister-sort-by" name="sort">
<option selected="selected" value="list_order:ascending">List Order</option>
<option value="moviemeter:ascending">Popularity</option>
<option value="alpha:ascending">Alphabetical</option>
<option value="user_rating:descending">IMDb Rating</option>
<option value="num_votes:descending">Number of Votes</option>
<option value="release_date:descending">Release Date</option>
<option value="runtime:descending">Runtime</option>
<option value="date_added:descending">Date Added</option>
</select>
<span class="global-sprite lister-sort-reverse descending" data-sort="list_order:descending" title="Ascending order"></span>
</div>
<div class="lister-control-group">
View: <br/>
<span +="" class="global-sprite lister-mode grid" data-mode="grid" ref-marker="ttls_vw_grd" title="Grid view"></span>
<span +="" class="global-sprite lister-mode detail" data-mode="detail" ref-marker="ttls_vm_dtl" title="Detail view"></span>
<span +="" class="global-sprite lister-mode simple" data-mode="simple" ref-marker="ttls_vw_smp" title="Compact view"></span>
</div>
</div>
<div class="desc lister-total-num-results">
100 titles
</div>
<div class="clear"></div>
</div>
</div>
<div class="clear"></div>
<div class="lister-list">
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt1773764">
<a href="/title/tt1773764/"> <img alt="Ship of Theseus" class="loadlate" data-tconst="tt1773764" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BMTU5Njc1NjkxMl5BMl5BanBnXkFtZTgwNTkzNTQwMDE@._V1_UY209_CR2,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">1.</span>
<a href="/title/tt1773764/">Ship of Theseus</a>
<span class="lister-item-year text-muted unbold">(2012)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">UA</span>
<span class="ghost">|</span>
<span class="runtime">139 min</span>
<span class="ghost">|</span>
<span class="genre">
Drama </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt1773764" id="checkbox-tt1773764" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt1773764">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt1773764">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt1773764">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
The film explores questions of identity, justice, beauty, meaning and death through an experimental photographer, an ailing monk and a young stockbroker.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm1628153/">Anand Gandhi</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm3733098/">Aydah El-Kashef</a>,
<a href="/name/nm6814353/">Yogesh Shah</a>,
<a href="/name/nm3822917/">Faraz Khan</a>,
<a href="/name/nm6814354/">Hannan Youssef</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="7397" name="nv">7,397</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt1773764" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0119385">
<a href="/title/tt0119385/"> <img alt="Iruvar" class="loadlate" data-tconst="tt0119385" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BZDg5MGJjM2EtZWVmYS00MDNkLTg1MDQtOGU3MmIzNjg2Mjk4XkEyXkFqcGdeQXVyNjE1OTQ0NjA@._V1_UY209_CR2,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">2.</span>
<a href="/title/tt0119385/">Iruvar</a>
<span class="lister-item-year text-muted unbold">(1997)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">UA</span>
<span class="ghost">|</span>
<span class="runtime">140 min</span>
<span class="ghost">|</span>
<span class="genre">
Biography, Drama </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8.4</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0119385" id="checkbox-tt0119385" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0119385">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0119385">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0119385">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
A struggling actor and a writer-politician become friends as young men and rise to great heights in cinema and politics respectively. But when both become contenders for the top political post in the state, a rift develops between them.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0711745/">Mani Ratnam</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0482320/">Mohanlal</a>,
<a href="/name/nm0706787/">Aishwarya Rai Bachchan</a>,
<a href="/name/nm0695177/">Prakash Raj</a>,
<a href="/name/nm0310221/">Gautami</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="6196" name="nv">6,196</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0119385" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0052954">
<a href="/title/tt0052954/"> <img alt="Kaagaz Ke Phool" class="loadlate" data-tconst="tt0052954" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BMzUzMDI1OTctODgwOS00NDNhLTg3ZDEtNTY2OTQ4NjBhMGIwXkEyXkFqcGdeQXVyMTMzMjU3NzA0._V1_UY209_CR1,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">3.</span>
<a href="/title/tt0052954/">Kaagaz Ke Phool</a>
<span class="lister-item-year text-muted unbold">(1959)</span>
</h3>
<p class="text-muted text-small">
<span class="runtime">148 min</span>
<span class="ghost">|</span>
<span class="genre">
Romance </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7.8</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0052954" id="checkbox-tt0052954" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0052954">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0052954">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0052954">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
Suresh Sinha, a famous director, discovers star potential in Shanti, a woman he stumbled into one rainy evening, and casts her as the lead in a film. In a twist of fate, Shanti becomes a superstar and Suresh faces a decline in his career.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0244870/">Guru Dutt</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0716851/">Waheeda Rehman</a>,
<a href="/name/nm0244870/">Guru Dutt</a>,
<a href="/name/nm0045132/">Kumari Naaz</a>,
<a href="/name/nm0907888/">Johnny Walker</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="2392" name="nv">2,392</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0052954" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0169102">
<a href="/title/tt0169102/"> <img alt="Lagaan: Once Upon a Time in India" class="loadlate" data-tconst="tt0169102" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BNmYxZGJlNmQtMWY3OS00Njc0LThjODgtOWEwMWU4NTUxMDExXkEyXkFqcGdeQXVyNDAzNDk0MTQ@._V1_UY209_CR3,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">4.</span>
<a href="/title/tt0169102/">Lagaan: Once Upon a Time in India</a>
<span class="lister-item-year text-muted unbold">(2001)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">U</span>
<span class="ghost">|</span>
<span class="runtime">224 min</span>
<span class="ghost">|</span>
<span class="genre">
Drama, Musical, Sport </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8.1</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0169102" id="checkbox-tt0169102" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0169102">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0169102">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0169102">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">84 </span>
Metascore
</div>
<p class="">
The people of a small village in Victorian India stake their future on a game of cricket against their ruthless British rulers.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0332950/">Ashutosh Gowariker</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0451148/">Aamir Khan</a>,
<a href="/name/nm0944834/">Raghuvir Yadav</a>,
<a href="/name/nm0961737/">Gracy Singh</a>,
<a href="/name/nm0791226/">Rachel Shelley</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="114206" name="nv">114,206</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="70,147" name="nv">$0.07M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0169102" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0048473">
<a href="/title/tt0048473/"> <img alt="Pather Panchali" class="loadlate" data-tconst="tt0048473" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BMmFkNDY5OTktNzY3Yy00OTFlLThhNjktOTRhMmZjZmIxYjAxXkEyXkFqcGdeQXVyNTgyNTA4MjM@._V1_UX140_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">5.</span>
<a href="/title/tt0048473/">Pather Panchali</a>
<span class="lister-item-year text-muted unbold">(1955)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">U</span>
<span class="ghost">|</span>
<span class="runtime">125 min</span>
<span class="ghost">|</span>
<span class="genre">
Drama </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8.3</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0048473" id="checkbox-tt0048473" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0048473">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0048473">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0048473">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
Impoverished priest Harihar Ray, dreaming of a better life for himself and his family, leaves his rural Bengal village in search of work.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0006249/">Satyajit Ray</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0052333/">Kanu Bannerjee</a>,
<a href="/name/nm0052334/">Karuna Bannerjee</a>,
<a href="/name/nm0052343/">Subir Banerjee</a>,
<a href="/name/nm0222447/">Chunibala Devi</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="32874" name="nv">32,874</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="536,364" name="nv">$0.54M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0048473" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0057935">
<a href="/title/tt0057935/"> <img alt="Charulata" class="loadlate" data-tconst="tt0057935" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BNzE1NjhiMDktOWE1ZS00YmQ3LWFjM2UtMDYzZjEyZWZkZWZjXkEyXkFqcGdeQXVyNDUzOTQ5MjY@._V1_UX140_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">6.</span>
<a href="/title/tt0057935/">Charulata</a>
<span class="lister-item-year text-muted unbold">(1964)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">U</span>
<span class="ghost">|</span>
<span class="runtime">117 min</span>
<span class="ghost">|</span>
<span class="genre">
Drama, Romance </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8.1</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0057935" id="checkbox-tt0057935" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0057935">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0057935">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0057935">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
The lonely wife of a newspaper editor falls in love with her visiting cousin-in-law, who shares her love for literature.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0006249/">Satyajit Ray</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0154164/">Soumitra Chatterjee</a>,
<a href="/name/nm0611538/">Madhavi Mukherjee</a>,
<a href="/name/nm0611561/">Shailen Mukherjee</a>,
<a href="/name/nm0315929/">Shyamal Ghoshal</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="6489" name="nv">6,489</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="77,820" name="nv">$0.08M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0057935" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0405508">
<a href="/title/tt0405508/"> <img alt="Rang De Basanti" class="loadlate" data-tconst="tt0405508" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BYThmZDA0YmQtMWJhNy00MDQwLTk0Y2YtMDhmZTE5ZjhlNjliXkEyXkFqcGdeQXVyODE5NzE3OTE@._V1_UY209_CR3,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">7.</span>
<a href="/title/tt0405508/">Rang De Basanti</a>
<span class="lister-item-year text-muted unbold">(2006)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">UA</span>
<span class="ghost">|</span>
<span class="runtime">167 min</span>
<span class="ghost">|</span>
<span class="genre">
Comedy, Crime, Drama </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8.1</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0405508" id="checkbox-tt0405508" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0405508">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0405508">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0405508">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
The story of six young Indians who assist an English woman to film a documentary on the freedom fighters from their past, and the events that lead them to relive the long-forgotten saga of freedom.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm1018493/">Rakeysh Omprakash Mehra</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0451148/">Aamir Khan</a>,
<a href="/name/nm1675786/">Soha Ali Khan</a>,
<a href="/name/nm1413459/">Siddharth</a>,
<a href="/name/nm0430817/">Sharman Joshi</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="119067" name="nv">119,067</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="2,197,331" name="nv">$2.20M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0405508" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt1327035">
<a href="/title/tt1327035/"> <img alt="Dev.D" class="loadlate" data-tconst="tt1327035" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BYjU1NjczNzYtYmFjOC00NzkxLTg4YTUtNGYzMTk3NTU0ZDE3XkEyXkFqcGdeQXVyNDUzOTQ5MjY@._V1_UY209_CR2,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">8.</span>
<a href="/title/tt1327035/">Dev.D</a>
<span class="lister-item-year text-muted unbold">(2009)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">A</span>
<span class="ghost">|</span>
<span class="runtime">144 min</span>
<span class="ghost">|</span>
<span class="genre">
Comedy, Drama, Romance </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7.9</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt1327035" id="checkbox-tt1327035" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt1327035">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt1327035">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt1327035">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
After breaking up with his childhood sweetheart, a young man finds solace in drugs. Meanwhile, a teenage girl is caught in the world of prostitution. Will they be destroyed, or will they find redemption?</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0440604/">Anurag Kashyap</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm1867717/">Abhay Deol</a>,
<a href="/name/nm2977124/">Mahie Gill</a>,
<a href="/name/nm3202701/">Kalki Koechlin</a>,
<a href="/name/nm0080349/">Dibyendu Bhattacharya</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="30815" name="nv">30,815</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="10,950" name="nv">$0.01M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt1327035" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt1187043">
<a href="/title/tt1187043/"> <img alt="3 Idiots" class="loadlate" data-tconst="tt1187043" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BNTkyOGVjMGEtNmQzZi00NzFlLTlhOWQtODYyMDc2ZGJmYzFhXkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UY209_CR2,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">9.</span>
<a href="/title/tt1187043/">3 Idiots</a>
<span class="lister-item-year text-muted unbold">(2009)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">UA</span>
<span class="ghost">|</span>
<span class="runtime">170 min</span>
<span class="ghost">|</span>
<span class="genre">
Comedy, Drama </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8.4</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt1187043" id="checkbox-tt1187043" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt1187043">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt1187043">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt1187043">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">67 </span>
Metascore
</div>
<p class="">
Two friends are searching for their long lost companion. They revisit their college days and recall the memories of their friend who inspired them to think differently, even as the rest of the world called them "idiots".</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0386246/">Rajkumar Hirani</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0451148/">Aamir Khan</a>,
<a href="/name/nm0534856/">Madhavan</a>,
<a href="/name/nm1587175/">Mona Singh</a>,
<a href="/name/nm0430817/">Sharman Joshi</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="396318" name="nv">396,318</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="6,532,908" name="nv">$6.53M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt1187043" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0043306">
<a href="/title/tt0043306/"> <img alt="Awaara" class="loadlate" data-tconst="tt0043306" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BZDY5NmYzY2UtYWFiMy00MTRmLWEwNDQtZjRjMWUxYTNhMTM3XkEyXkFqcGdeQXVyMDkwNTkwNg@@._V1_UX140_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">10.</span>
<a href="/title/tt0043306/">Awaara</a>
<span class="lister-item-year text-muted unbold">(1951)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">U</span>
<span class="ghost">|</span>
<span class="runtime">193 min</span>
<span class="ghost">|</span>
<span class="genre">
Drama, Musical, Romance </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7.8</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0043306" id="checkbox-tt0043306" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0043306">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0043306">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0043306">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
A poor young man named Raj joins a criminal gang to feed his mother. But when he falls in love with Rita, he decides to reform himself for her.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0004292/">Raj Kapoor</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0004292/">Raj Kapoor</a>,
<a href="/name/nm0004291/">Nargis</a>,
<a href="/name/nm0004432/">Prithviraj Kapoor</a>,
<a href="/name/nm0802144/">K.N. Singh</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="4164" name="nv">4,164</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0043306" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0093603">
<a href="/title/tt0093603/"> <img alt="Nayakan" class="loadlate" data-tconst="tt0093603" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BZmFiYjJkNTEtZDdlMi00YTA5LTk1YTYtMDgxM2M2MTRmNGFhXkEyXkFqcGdeQXVyNjc5Mjg4Nzc@._V1_UX140_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">11.</span>
<a href="/title/tt0093603/">Nayakan</a>
<span class="lister-item-year text-muted unbold">(1987)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">A</span>
<span class="ghost">|</span>
<span class="runtime">156 min</span>
<span class="ghost">|</span>
<span class="genre">
Crime, Drama </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8.6</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0093603" id="checkbox-tt0093603" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0093603">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0093603">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0093603">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
A common man's struggles against a corrupt police force put him on the wrong side of the law. He becomes a don, who is loved and respected by many, but his growing power and influence exact a heavy toll.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0711745/">Mani Ratnam</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0352032/">Kamal Haasan</a>,
<a href="/name/nm0764853/">Saranya Ponvannan</a>,
<a href="/name/nm0304265/">Delhi Ganesh</a>,
<a href="/name/nm0417301/">Janakaraj</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="20137" name="nv">20,137</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0093603" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0048956">
<a href="/title/tt0048956/"> <img alt="Aparajito" class="loadlate" data-tconst="tt0048956" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BNGZhZDAxODQtNjhhZi00MGEwLWE0OWItNjZjYzVlNmM1Nzk0XkEyXkFqcGdeQXVyNTgyNTA4MjM@._V1_UX140_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">12.</span>
<a href="/title/tt0048956/">Aparajito</a>
<span class="lister-item-year text-muted unbold">(1956)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">U</span>
<span class="ghost">|</span>
<span class="runtime">110 min</span>
<span class="ghost">|</span>
<span class="genre">
Drama </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8.3</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0048956" id="checkbox-tt0048956" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0048956">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0048956">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0048956">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
Following his father's death, a boy leaves home to study in Calcutta, while his mother must face a life alone.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0006249/">Satyajit Ray</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0348483/">Pinaki Sengupta</a>,
<a href="/name/nm0315871/">Smaran Ghosal</a>,
<a href="/name/nm0011967/">Kamala Adhikari</a>,
<a href="/name/nm0051837/">Lalchand Banerjee</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="14468" name="nv">14,468</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="170,215" name="nv">$0.17M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0048956" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0251355">
<a href="/title/tt0251355/"> <img alt="Pushpaka Vimana" class="loadlate" data-tconst="tt0251355" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BOGJhYWQxYzUtNmFhZi00NDI3LWEzNjMtYjgzZDg3NTQ1NWQzXkEyXkFqcGdeQXVyODEzOTQwNTY@._V1_UY209_CR6,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">13.</span>
<a href="/title/tt0251355/">Pushpaka Vimana</a>
<span class="lister-item-year text-muted unbold">(1987)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">U</span>
<span class="ghost">|</span>
<span class="runtime">125 min</span>
<span class="ghost">|</span>
<span class="genre">
Comedy, Drama </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8.6</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0251355" id="checkbox-tt0251355" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0251355">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0251355">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0251355">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
A silent movie about an unemployed young man.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0801870/">Singeetam Srinivasa Rao</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0352032/">Kamal Haasan</a>,
<a href="/name/nm0023839/">Amala Akkineni</a>,
<a href="/name/nm0025627/">Tinnu Anand</a>,
<a href="/name/nm0006770/">Narayana P.L.</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="3616" name="nv">3,616</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0251355" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0050870">
<a href="/title/tt0050870/"> <img alt="Pyaasa" class="loadlate" data-tconst="tt0050870" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BMjAwOGI2YjAtM2I1Yi00MzkyLThiMjMtOTljZDkxOTgxMTY2XkEyXkFqcGdeQXVyNjc5Mjg4Nzc@._V1_UX140_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">14.</span>
<a href="/title/tt0050870/">Pyaasa</a>
<span class="lister-item-year text-muted unbold">(1957)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">U</span>
<span class="ghost">|</span>
<span class="runtime">146 min</span>
<span class="ghost">|</span>
<span class="genre">
Drama, Musical, Romance </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8.3</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0050870" id="checkbox-tt0050870" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0050870">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0050870">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0050870">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
A talented but indigent poet Vijay struggles for love and recognition in this selfish world.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0244870/">Guru Dutt</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0244870/">Guru Dutt</a>,
<a href="/name/nm0716851/">Waheeda Rehman</a>,
<a href="/name/nm0802366/">Mala Sinha</a>,
<a href="/name/nm0716839/">Rehman Khan</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="6542" name="nv">6,542</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0050870" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0076080">
<a href="/title/tt0076080/"> <img alt="Ghatashraddha" class="loadlate" data-tconst="tt0076080" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BYjQ2YjgyMTctZTdiMS00N2E0LWI2M2QtYzNhNmNmY2VhNDJlL2ltYWdlXkEyXkFqcGdeQXVyNzE4OTYxODc@._V1_UY209_CR1,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">15.</span>
<a href="/title/tt0076080/">Ghatashraddha</a>
<span class="lister-item-year text-muted unbold">(1977)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">A</span>
<span class="ghost">|</span>
<span class="runtime">144 min</span>
<span class="ghost">|</span>
<span class="genre">
Drama </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7.5</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0076080" id="checkbox-tt0076080" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0076080">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0076080">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0076080">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
A young Brahmin Vedic school student, who is from an aristocratic family, befriends his school master's daughter who is a pregnant widow. The boy tries but fails in concealing his friend's ... <a href="/title/tt0076080/plotsummary">See full summary</a> »
</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0440424/">Girish Kasaravalli</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm1859919/">Narayan Bhatt</a>,
<a href="/name/nm0412673/">Ramaswamy Iyengar</a>,
<a href="/name/nm1854838/">Janganath</a>,
<a href="/name/nm1069586/">Ajith Kumar</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="146" name="nv">146</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0076080" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0073707">
<a href="/title/tt0073707/"> <img alt="Sholay" class="loadlate" data-tconst="tt0073707" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BODhlNjJkZTEtMWQ3Ni00MTA2LTg4YTMtYTQzYzk1ZTM4MDQzXkEyXkFqcGdeQXVyODAzNzAwOTU@._V1_UY209_CR8,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">16.</span>
<a href="/title/tt0073707/">Sholay</a>
<span class="lister-item-year text-muted unbold">(1975)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">U</span>
<span class="ghost">|</span>
<span class="runtime">204 min</span>
<span class="ghost">|</span>
<span class="genre">
Action, Adventure, Comedy </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8.1</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0073707" id="checkbox-tt0073707" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0073707">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0073707">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0073707">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
After his family is murdered by a notorious and ruthless bandit, a former police officer enlists the services of two outlaws to capture the bandit.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0802693/">Ramesh Sippy</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0474876/">Sanjeev Kumar</a>,
<a href="/name/nm0004429/">Dharmendra</a>,
<a href="/name/nm0000821/">Amitabh Bachchan</a>,
<a href="/name/nm0451166/">Amjad Khan</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="55806" name="nv">55,806</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0073707" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0065416">
<a href="/title/tt0065416/"> <img alt="Aradhana" class="loadlate" data-tconst="tt0065416" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BOTVjM2M5ZmYtYmU0MC00MzYzLWIwNTktODUyYWMwNWNhODcyXkEyXkFqcGdeQXVyNjc1MzY5NDU@._V1_UY209_CR9,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">17.</span>
<a href="/title/tt0065416/">Aradhana</a>
<span class="lister-item-year text-muted unbold">(1969)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">U</span>
<span class="ghost">|</span>
<span class="runtime">169 min</span>
<span class="ghost">|</span>
<span class="genre">
Drama, Musical, Romance </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7.5</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0065416" id="checkbox-tt0065416" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0065416">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0065416">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0065416">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
Arun meets Vandana during a vacation and very soon they secretly get married. Arun is an Air Force pilot and dies in a crash, leaving pregnant Vandana heartbroken--and unable to prove that ... <a href="/title/tt0065416/plotsummary">See full summary</a> »
</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0759662/">Shakti Samanta</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0004435/">Rajesh Khanna</a>,
<a href="/name/nm0846616/">Sharmila Tagore</a>,
<a href="/name/nm0474895/">Sujit Kumar</a>,
<a href="/name/nm0416077/">Farida Jalal</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="1880" name="nv">1,880</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0065416" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0050322">
<a href="/title/tt0050322/"> <img alt="Do Ankhen Barah Haath" class="loadlate" data-tconst="tt0050322" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BMDU3Yjc4MjItMjdhMy00YzU0LTg3OWItZWQzYjAyNGQ4MTZmXkEyXkFqcGdeQXVyNDUzOTQ5MjY@._V1_UY209_CR8,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">18.</span>
<a href="/title/tt0050322/">Do Ankhen Barah Haath</a>
<span class="lister-item-year text-muted unbold">(1957)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">U</span>
<span class="ghost">|</span>
<span class="runtime">143 min</span>
<span class="ghost">|</span>
<span class="genre">
Comedy, Crime, Drama </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8.4</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0050322" id="checkbox-tt0050322" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0050322">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0050322">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0050322">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
Progressive, reform-minded young warden gets permission to take six surly murderers from prison to dilapidated country farm, to rehabilitate it and themselves through hard work and kindly guidance.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0788391/">Shantaram Rajaram Vankudre</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0788391/">Shantaram Rajaram Vankudre</a>,
<a href="/name/nm0761890/">Sandhya</a>,
<a href="/name/nm0880419/">Ulhas</a>,
<a href="/name/nm0904494/">B.M. Vyas</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="1813" name="nv">1,813</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0050322" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0112553">
<a href="/title/tt0112553/"> <img alt="Bombay" class="loadlate" data-tconst="tt0112553" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BYTczNDcyNzctZGVjYS00NGNmLWFkYzAtNWVjNTk3NjM3MzhjXkEyXkFqcGdeQXVyODEzOTQwNTY@._V1_UX140_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">19.</span>
<a href="/title/tt0112553/">Bombay</a>
<span class="lister-item-year text-muted unbold">(1995)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">U</span>
<span class="ghost">|</span>
<span class="runtime">141 min</span>
<span class="ghost">|</span>
<span class="genre">
Drama, Romance </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8.1</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0112553" id="checkbox-tt0112553" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0112553">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0112553">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0112553">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
A Hindu man and a Muslim woman fall in love in a small village and move to Mumbai, where they have two children. However, growing religious tensions and erupting riots threaten to tear the family apart.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0711745/">Mani Ratnam</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0841552/">Arvind Swamy</a>,
<a href="/name/nm0463539/">Manisha Koirala</a>,
<a href="/name/nm0621937/">Nassar</a>,
<a href="/name/nm1390149/">Kitty</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="12769" name="nv">12,769</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0112553" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0154942">
<a href="/title/tt0154942/"> <img alt="Neecha Nagar" class="loadlate" data-tconst="tt0154942" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BYmFiNWEyYjUtZmEwNS00ZTQyLWJkMjYtMzA3MDNlM2Y4ZmUyXkEyXkFqcGdeQXVyODE5NzE3OTE@._V1_UX140_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">20.</span>
<a href="/title/tt0154942/">Neecha Nagar</a>
<span class="lister-item-year text-muted unbold">(1946)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">U</span>
<span class="ghost">|</span>
<span class="runtime">122 min</span>
<span class="ghost">|</span>
<span class="genre">
Drama </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6.7</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0154942" id="checkbox-tt0154942" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0154942">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0154942">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0154942">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
The film takes an expressionist look at the gulf between the rich and poor in society. The film centers on wealthy, capacious landlord Sarkar (Rafi Peer) who lives in a palatial estate high... <a href="/title/tt0154942/plotsummary">See full summary</a> »
</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0025608/">Chetan Anand</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0031692/">Rafiq Anwar</a>,
<a href="/name/nm0025628/">Uma Anand</a>,
<a href="/name/nm0442470/">Kamini Kaushal</a>,
<a href="/name/nm5085600/">Rafi Peer</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="234" name="nv">234</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0154942" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0045693">
<a href="/title/tt0045693/"> <img alt="Do Bigha Zamin" class="loadlate" data-tconst="tt0045693" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BODYzNjNiNDYtNDY3Yi00YzExLTkzNzUtZGY3MDM5NTgxZWU3XkEyXkFqcGdeQXVyNDI3NjcxMDA@._V1_UX140_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">21.</span>
<a href="/title/tt0045693/">Do Bigha Zamin</a>
<span class="lister-item-year text-muted unbold">(1953)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">U</span>
<span class="ghost">|</span>
<span class="runtime">131 min</span>
<span class="ghost">|</span>
<span class="genre">
Drama </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8.2</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0045693" id="checkbox-tt0045693" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0045693">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0045693">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0045693">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
In the hope of earning enough money to pay off his debts and save his land, a poor farmer becomes a rickshaw puller in Calcutta and faces many difficulties.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0746950/">Bimal Roy</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0756379/">Balraj Sahni</a>,
<a href="/name/nm0747131/">Nirupa Roy</a>,
<a href="/name/nm2727823/">Ratan Kumar</a>,
<a href="/name/nm0613407/">Murad</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="2062" name="nv">2,062</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0045693" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0073034">
<a href="/title/tt0073034/"> <img alt="Garm Hava" class="loadlate" data-tconst="tt0073034" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BYWI5OGEwYWQtZGZhMy00NTAyLTk5Y2YtZjRkMDg2NDAyMjMxXkEyXkFqcGdeQXVyMzU0NzkwMDg@._V1_UY209_CR2,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">22.</span>
<a href="/title/tt0073034/">Garm Hava</a>
<span class="lister-item-year text-muted unbold">(1974)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">(Banned)</span>
<span class="ghost">|</span>
<span class="runtime">146 min</span>
<span class="ghost">|</span>
<span class="genre">
Drama </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8.1</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0073034" id="checkbox-tt0073034" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0073034">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0073034">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0073034">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
In post-partition India, a Muslim businessman and his family struggle for their rights in a country which was once their own.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0766166/">M.S. Sathyu</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0756379/">Balraj Sahni</a>,
<a href="/name/nm0359845/">A.K. Hangal</a>,
<a href="/name/nm0796496/">Geeta Kak</a>,
<a href="/name/nm0368098/">Jamal Hashmi</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="761" name="nv">761</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0073034" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0095872">
<a href="/title/tt0095872/"> <img alt="Piravi" class="loadlate" data-tconst="tt0095872" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BNzU2NDVjZTctZmI5ZC00ZjA1LTg1ODAtN2NjMzZlNDZiMWZmXkEyXkFqcGdeQXVyMjkxNzQ1NDI@._V1_UY209_CR1,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">23.</span>
<a href="/title/tt0095872/">Piravi</a>
<span class="lister-item-year text-muted unbold">(1989)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">Unrated</span>
<span class="ghost">|</span>
<span class="runtime">110 min</span>
<span class="ghost">|</span>
<span class="genre">
Drama </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7.8</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0095872" id="checkbox-tt0095872" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0095872">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0095872">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0095872">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
Raghu, the only son of Raghava Chakyar was born late for him. So he poured his entire love and affection on him. Raghu, studying in an engineering college in a far away city has to arrive ... <a href="/title/tt0095872/plotsummary">See full summary</a> »
</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0440267/">Shaji N. Karun</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0695939/">Premji</a>,
<a href="/name/nm0033610/">Archana</a>,
<a href="/name/nm0471470/">Lakshmi Krishnamurthy</a>,
<a href="/name/nm2818206/">V.K. Sriraman</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="278" name="nv">278</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0095872" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0054098">
<a href="/title/tt0054098/"> <img alt="Mughal-E-Azam" class="loadlate" data-tconst="tt0054098" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BMmM2YWQ3MzctOTk1NS00NThhLWExY2MtYjQzZGRmZTFiYWY3XkEyXkFqcGdeQXVyMjUxMTY3ODM@._V1_UY209_CR6,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">24.</span>
<a href="/title/tt0054098/">Mughal-E-Azam</a>
<span class="lister-item-year text-muted unbold">(1960)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">PG</span>
<span class="ghost">|</span>
<span class="runtime">197 min</span>
<span class="ghost">|</span>
<span class="genre">
Drama, Romance, War </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8.1</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0054098" id="checkbox-tt0054098" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0054098">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0054098">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0054098">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
A 16th century prince falls in love with a court dancer and battles with his emperor father.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0039339/">K. Asif</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0004432/">Prithviraj Kapoor</a>,
<a href="/name/nm0534870/">Madhubala</a>,
<a href="/name/nm0474801/">Dilip Kumar</a>,
<a href="/name/nm0451862/">Durga Khote</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="8277" name="nv">8,277</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="161,434" name="nv">$0.16M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0054098" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0090634">
<a href="/title/tt0090634/"> <img alt="Amma Ariyan" class="loadlate" data-tconst="tt0090634" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BYWQ5ZjFkNzAtNzQ5Ny00MmY4LWEwMmMtNmRhNzE4ZTU2ZWYxXkEyXkFqcGdeQXVyMjkxNzQ1NDI@._V1_UY209_CR34,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">25.</span>
<a href="/title/tt0090634/">Amma Ariyan</a>
<span class="lister-item-year text-muted unbold">(1986)</span>
</h3>
<p class="text-muted text-small">
<span class="runtime">115 min</span>
<span class="ghost">|</span>
<span class="genre">
Drama </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7.1</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0090634" id="checkbox-tt0090634" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0090634">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0090634">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0090634">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
The story revolves around the incidents following the death of a young Naxalite, upon whose death his friends travel to the village where his mother lives to inform her of the death of her only son.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0008943/">John Abraham</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm1117321/">Kunhulakshmi Amma</a>,
<a href="/name/nm0049413/">Nilambur Balan</a>,
<a href="/name/nm1118325/">Harinarayan</a>,
<a href="/name/nm0558593/">Joy Mathew</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="203" name="nv">203</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0090634" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0050665">
<a href="/title/tt0050665/"> <img alt="Madhumati" class="loadlate" data-tconst="tt0050665" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BY2UzOWY3MTgtZGFjMS00N2E1LWEwYjYtZDdiYjNlMzRhZDQ0XkEyXkFqcGdeQXVyMTA4Njk3Mjcw._V1_UY209_CR8,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">26.</span>
<a href="/title/tt0050665/">Madhumati</a>
<span class="lister-item-year text-muted unbold">(1958)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">U</span>
<span class="ghost">|</span>
<span class="runtime">110 min</span>
<span class="ghost">|</span>
<span class="genre">
Fantasy, Musical, Mystery </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7.8</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0050665" id="checkbox-tt0050665" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0050665">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0050665">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0050665">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
A young man takes shelter in a mansion when a landslide blocks his route to the railway station. Then, he finds the mansion familiar and soon learns about the story of his previous birth.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0746950/">Bimal Roy</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0474801/">Dilip Kumar</a>,
<a href="/name/nm0904537/">Vyjayanthimala</a>,
<a href="/name/nm0907888/">Johnny Walker</a>,
<a href="/name/nm0695199/">Pran Sikand</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="1450" name="nv">1,450</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0050665" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0063023">
<a href="/title/tt0063023/"> <img alt="Goopy Gyne Bagha Byne" class="loadlate" data-tconst="tt0063023" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BZTEwZGI4MjktZjg4ZS00ZWNjLWE4ODctOTVhYjVhNGI5NGU2XkEyXkFqcGdeQXVyNDUzOTQ5MjY@._V1_UY209_CR6,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">27.</span>
<a href="/title/tt0063023/">Goopy Gyne Bagha Byne</a>
<span class="lister-item-year text-muted unbold">(1969)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">U</span>
<span class="ghost">|</span>
<span class="runtime">132 min</span>
<span class="ghost">|</span>
<span class="genre">
Adventure, Comedy, Family </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8.7</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0063023" id="checkbox-tt0063023" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0063023">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0063023">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0063023">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
Goopy wants to sing, and Bagha wants to play the dhol. They meet accidentally and are helped by King of Ghosts. With newly endowed abilities, they land in kingdom of Shundi, where their adventure begins.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0006249/">Satyajit Ray</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0154170/">Tapan Chatterjee</a>,
<a href="/name/nm0315917/">Rabi Ghosh</a>,
<a href="/name/nm0051831/">Ajoy Banerjee</a>,
<a href="/name/nm4878254/">Iva Banerjee</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="2538" name="nv">2,538</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0063023" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt1954470">
<a href="/title/tt1954470/"> <img alt="Gangs of Wasseypur" class="loadlate" data-tconst="tt1954470" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BMTc5NjY4MjUwNF5BMl5BanBnXkFtZTgwODM3NzM5MzE@._V1_UY209_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">28.</span>
<a href="/title/tt1954470/">Gangs of Wasseypur</a>
<span class="lister-item-year text-muted unbold">(2012)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">A</span>
<span class="ghost">|</span>
<span class="runtime">321 min</span>
<span class="ghost">|</span>
<span class="genre">
Action, Comedy, Crime </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8.2</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt1954470" id="checkbox-tt1954470" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt1954470">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt1954470">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt1954470">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">89 </span>
Metascore
</div>
<p class="">
A clash between Sultan and Shahid Khan leads to the expulsion of Khan from Wasseypur, and ignites a deadly blood feud spanning three generations.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0440604/">Anurag Kashyap</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0048075/">Manoj Bajpayee</a>,
<a href="/name/nm14022766/">Ashish Chhipa</a>,
<a href="/name/nm3190246/">Richa Chadha</a>,
<a href="/name/nm1596350/">Nawazuddin Siddiqui</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="95760" name="nv">95,760</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt1954470" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0059246">
<a href="/title/tt0059246/"> <img alt="Guide" class="loadlate" data-tconst="tt0059246" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BOTM4ZjhiNGItMzE2My00YjM0LWE5ZTEtYTA5NDMzZDJlOWQ3XkEyXkFqcGdeQXVyODMyODMxNDY@._V1_UY209_CR2,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">29.</span>
<a href="/title/tt0059246/">Guide</a>
<span class="lister-item-year text-muted unbold">(1965)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">U</span>
<span class="ghost">|</span>
<span class="runtime">183 min</span>
<span class="ghost">|</span>
<span class="genre">
Drama, Musical, Romance </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8.4</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0059246" id="checkbox-tt0059246" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0059246">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0059246">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0059246">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
When mistaken to be a sage by some villagers, an ex-tour guide reflects on his past and lost love to search for spiritual wisdom to guide the villagers.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0025629/">Vijay Anand</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0007147/">Dev Anand</a>,
<a href="/name/nm0716851/">Waheeda Rehman</a>,
<a href="/name/nm0158332/">Leela Chitnis</a>,
<a href="/name/nm0403952/">Anwar Hussain</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="8154" name="nv">8,154</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0059246" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0195231">
<a href="/title/tt0195231/"> <img alt="Satya" class="loadlate" data-tconst="tt0195231" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BMTMwMjk3MzA2OF5BMl5BanBnXkFtZTcwNjU2ODgzMQ@@._V1_UY209_CR4,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">30.</span>
<a href="/title/tt0195231/">Satya</a>
<span class="lister-item-year text-muted unbold">(1998)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">A</span>
<span class="ghost">|</span>
<span class="runtime">170 min</span>
<span class="ghost">|</span>
<span class="genre">
Action, Crime, Drama </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8.3</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0195231" id="checkbox-tt0195231" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0195231">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0195231">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0195231">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
An innocent man is embroiled in underworld after being falsely charged and sets out to punish the perpetrators who subjected his life to misery.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0890060/">Ram Gopal Varma</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0149835/">J.D. Chakravarthi</a>,
<a href="/name/nm0048075/">Manoj Bajpayee</a>,
<a href="/name/nm0007107/">Urmila Matondkar</a>,
<a href="/name/nm0712546/">Paresh Rawal</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="15267" name="nv">15,267</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0195231" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0105271">
<a href="/title/tt0105271/"> <img alt="Roja" class="loadlate" data-tconst="tt0105271" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BMTBlZTk1YTMtZTQ2Ni00YzhkLWJiNDEtNWI2NjE0M2I4ZmYzXkEyXkFqcGdeQXVyNjc5Mjg4Nzc@._V1_UX140_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">31.</span>
<a href="/title/tt0105271/">Roja</a>
<span class="lister-item-year text-muted unbold">(1992)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">U</span>
<span class="ghost">|</span>
<span class="runtime">137 min</span>
<span class="ghost">|</span>
<span class="genre">
Drama, Romance, Thriller </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8.1</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0105271" id="checkbox-tt0105271" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0105271">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0105271">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0105271">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
A woman from a village in Tamil Nadu marries a sophisticated city dweller and moves with him to Kashmir, where all is rosy - until he gets kidnapped by militants.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0711745/">Mani Ratnam</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0841552/">Arvind Swamy</a>,
<a href="/name/nm0534866/">Madhoo</a>,
<a href="/name/nm0438488/">Pankaj Kapur</a>,
<a href="/name/nm0621937/">Nassar</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="12968" name="nv">12,968</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0105271" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0093578">
<a href="/title/tt0093578/"> <img alt="Mr. India" class="loadlate" data-tconst="tt0093578" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BZTdhMmJjYjMtMjZmOC00NjhkLWE3MjQtODAzNDI4NmM5OTA5XkEyXkFqcGdeQXVyODAzNzAwOTU@._V1_UX140_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">32.</span>
<a href="/title/tt0093578/">Mr. India</a>
<span class="lister-item-year text-muted unbold">(1987)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">U</span>
<span class="ghost">|</span>
<span class="runtime">179 min</span>
<span class="ghost">|</span>
<span class="genre">
Action, Comedy, Drama </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7.7</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0093578" id="checkbox-tt0093578" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0093578">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0093578">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0093578">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
A poor but big-hearted man takes orphans into his home. After discovering his scientist father's invisibility device, he rises to the occasion and fights to save his children and all of India from the clutches of a megalomaniac.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0001408/">Shekhar Kapur</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0438463/">Anil Kapoor</a>,
<a href="/name/nm0004437/">Sridevi</a>,
<a href="/name/nm0700869/">Amrish Puri</a>,
<a href="/name/nm0442479/">Satish Kaushik</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="15592" name="nv">15,592</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0093578" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0054073">
<a href="/title/tt0054073/"> <img alt="The Cloud-Capped Star" class="loadlate" data-tconst="tt0054073" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BY2NiMGFiMzMtNDg1MC00MDc1LTg5N2UtNTAzZDI0ZjNkOWM2XkEyXkFqcGdeQXVyNTgyNTA4MjM@._V1_UY209_CR3,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">33.</span>
<a href="/title/tt0054073/">The Cloud-Capped Star</a>
<span class="lister-item-year text-muted unbold">(1960)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">U</span>
<span class="ghost">|</span>
<span class="runtime">126 min</span>
<span class="ghost">|</span>
<span class="genre">
Drama, Musical </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7.9</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0054073" id="checkbox-tt0054073" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0054073">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0054073">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0054073">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
A selfless young woman (Supriya Choudhury) sacrifices her own happiness for her unappreciative family.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0315547/">Ritwik Ghatak</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0159350/">Supriya Choudhury</a>,
<a href="/name/nm0154110/">Anil Chatterjee</a>,
<a href="/name/nm0611525/">Gyanesh Mukherjee</a>,
<a href="/name/nm0080346/">Bijon Bhattacharya</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="2851" name="nv">2,851</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0054073" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt1524539">
<a href="/title/tt1524539/"> <img alt="Harishchandrachi Factory" class="loadlate" data-tconst="tt1524539" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BOTA5YmIxNDgtNzVlZS00OTljLWEyNzItMmI4YmNlY2JlYTA4XkEyXkFqcGdeQXVyMzA5NzAyMDU@._V1_UY209_CR8,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">34.</span>
<a href="/title/tt1524539/">Harishchandrachi Factory</a>
<span class="lister-item-year text-muted unbold">(2009)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">U</span>
<span class="ghost">|</span>
<span class="runtime">96 min</span>
<span class="ghost">|</span>
<span class="genre">
Biography, Comedy, Drama </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8.4</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt1524539" id="checkbox-tt1524539" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt1524539">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt1524539">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt1524539">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
In 1913 India's cinema industry is born from Dadasaheb Phalke's efforts to make <a href="/title/tt0003311">Raja Harishchandra</a> (1913), India's first feature-length B&W silent film.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm3642647/">Paresh Mokashi</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0534852/">Nandu Madhav</a>,
<a href="/name/nm3252571/">Vibhawari Deshpande</a>,
<a href="/name/nm3644131/">Atharva Karve</a>,
<a href="/name/nm3640891/">Mohit Gokhale</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="2529" name="nv">2,529</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt1524539" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0085913">
<a href="/title/tt0085913/"> <img alt="Masoom" class="loadlate" data-tconst="tt0085913" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BMjZjZGM1OGQtNDgyOS00M2Y4LWI2MDgtN2JjMTM1M2U0Mzk0XkEyXkFqcGdeQXVyODE5NzE3OTE@._V1_UY209_CR8,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">35.</span>
<a href="/title/tt0085913/">Masoom</a>
<span class="lister-item-year text-muted unbold">(1983)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">U</span>
<span class="ghost">|</span>
<span class="runtime">165 min</span>
<span class="ghost">|</span>
<span class="genre">
Drama </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8.4</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0085913" id="checkbox-tt0085913" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0085913">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0085913">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0085913">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
A happy family goes through turbulent times because of a big mistake by one of the family members.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0001408/">Shekhar Kapur</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0787462/">Naseeruddin Shah</a>,
<a href="/name/nm0000818/">Shabana Azmi</a>,
<a href="/name/nm0361407/">Jugal Hansraj</a>,
<a href="/name/nm0007107/">Urmila Matondkar</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="4102" name="nv">4,102</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0085913" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0098999">
<a href="/title/tt0098999/"> <img alt="Agneepath" class="loadlate" data-tconst="tt0098999" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BOGIyNGNhN2EtYTZiNC00MDJjLWI2M2ItZjA1MTBlYmNiODNlXkEyXkFqcGdeQXVyODE5NzE3OTE@._V1_UY209_CR10,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">36.</span>
<a href="/title/tt0098999/">Agneepath</a>
<span class="lister-item-year text-muted unbold">(1990)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">16</span>
<span class="ghost">|</span>
<span class="runtime">174 min</span>
<span class="ghost">|</span>
<span class="genre">
Action, Crime, Drama </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7.6</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0098999" id="checkbox-tt0098999" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0098999">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0098999">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0098999">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
A young boy's quest for revenge leads him to become a gangster as an adult, and with each day he becomes more and more like his enemies. Can he find vengeance and redemption?</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0002172/">Mukul Anand</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0000821/">Amitabh Bachchan</a>,
<a href="/name/nm0149822/">Mithun Chakraborty</a>,
<a href="/name/nm0534863/">Madhavi</a>,
<a href="/name/nm0624174/">Neelam Kothari</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="9014" name="nv">9,014</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0098999" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0232753">
<a href="/title/tt0232753/"> <img alt="Tabarana Kathe" class="loadlate" data-tconst="tt0232753" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BMjVjZTFhNDctMzRhNC00Nzg4LTg5ZGEtNDYxOWEzMTE0YTRkXkEyXkFqcGdeQXVyODEzOTQwNTY@._V1_UY209_CR1,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">37.</span>
<a href="/title/tt0232753/">Tabarana Kathe</a>
<span class="lister-item-year text-muted unbold">(1986)</span>
</h3>
<p class="text-muted text-small">
<span class="runtime">179 min</span>
<span class="ghost">|</span>
<span class="genre">
Drama </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7.9</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0232753" id="checkbox-tt0232753" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0232753">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0232753">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0232753">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
Tabarana Kathe is the story of Tabara Shetty, a government servant. He serves the government till his retirement. But problems emerge after his retirement. Matters worsen when his wife and only companion falls sick.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0440424/">Girish Kasaravalli</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm2637070/">Nalini Murthy</a>,
<a href="/name/nm2640174/">R. Nagesh</a>,
<a href="/name/nm0352031/">Charu Haasan</a>,
<a href="/name/nm2639493/">Vaishali Kasaravalli</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="82" name="nv">82</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0232753" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0211126">
<a href="/title/tt0211126/"> <img alt="Zakhm" class="loadlate" data-tconst="tt0211126" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BZjQ1Y2VjMDAtNjc2MS00ZDhhLTgxNzEtMDE0ZjYzZGVhODAyXkEyXkFqcGdeQXVyODE5NzE3OTE@._V1_UY209_CR3,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">38.</span>
<a href="/title/tt0211126/">Zakhm</a>
<span class="lister-item-year text-muted unbold">(1998)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">A</span>
<span class="ghost">|</span>
<span class="runtime">125 min</span>
<span class="ghost">|</span>
<span class="genre">
Drama </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7.9</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0211126" id="checkbox-tt0211126" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0211126">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0211126">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0211126">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
Amidst religious riots, a son deals with his mother's life-threatening injuries, and her last request.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0080315/">Mahesh Bhatt</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0222426/">Ajay Devgn</a>,
<a href="/name/nm0080324/">Pooja Bhatt</a>,
<a href="/name/nm0015459/">Nagarjuna Akkineni</a>,
<a href="/name/nm0007114/">Sonali Bendre</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="3267" name="nv">3,267</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0211126" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0292490">
<a href="/title/tt0292490/"> <img alt="Dil Chahta Hai" class="loadlate" data-tconst="tt0292490" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BMjRjMTYwMTYtMmRkNi00MmVkLWE0MjQtNmM3YjI0NWFhZDNmXkEyXkFqcGdeQXVyODE5NzE3OTE@._V1_UX140_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">39.</span>
<a href="/title/tt0292490/">Dil Chahta Hai</a>
<span class="lister-item-year text-muted unbold">(2001)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">Unrated</span>
<span class="ghost">|</span>
<span class="runtime">183 min</span>
<span class="ghost">|</span>
<span class="genre">
Comedy, Drama, Romance </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8.1</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0292490" id="checkbox-tt0292490" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0292490">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0292490">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0292490">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
Three inseparable childhood friends are just out of college. Nothing comes between them - until they each fall in love, and their wildly different approaches to relationships creates tension.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm1027719/">Farhan Akhtar</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0451148/">Aamir Khan</a>,
<a href="/name/nm0451307/">Saif Ali Khan</a>,
<a href="/name/nm0451379/">Akshaye Khanna</a>,
<a href="/name/nm0006689/">Preity Zinta</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="72257" name="nv">72,257</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="300,000" name="nv">$0.30M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0292490" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt2356180">
<a href="/title/tt2356180/"> <img alt="Bhaag Milkha Bhaag" class="loadlate" data-tconst="tt2356180" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BMTY1Nzg4MjcwN15BMl5BanBnXkFtZTcwOTc1NTk1OQ@@._V1_UY209_CR2,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">40.</span>
<a href="/title/tt2356180/">Bhaag Milkha Bhaag</a>
<span class="lister-item-year text-muted unbold">(2013)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">U</span>
<span class="ghost">|</span>
<span class="runtime">186 min</span>
<span class="ghost">|</span>
<span class="genre">
Biography, Drama, Sport </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8.2</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt2356180" id="checkbox-tt2356180" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt2356180">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt2356180">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt2356180">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
The truth behind the ascension of <a href="/name/nm2245260">Milkha Singh</a>, who was scarred by of the India-Pakistan partition.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm1018493/">Rakeysh Omprakash Mehra</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm1027719/">Farhan Akhtar</a>,
<a href="/name/nm5800951/">Japtej Singh</a>,
<a href="/name/nm0244890/">Divya Dutta</a>,
<a href="/name/nm0539497/">Pawan Malhotra</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="67994" name="nv">67,994</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="1,626,289" name="nv">$1.63M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt2356180" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0072783">
<a href="/title/tt0072783/"> <img alt="Chupke Chupke" class="loadlate" data-tconst="tt0072783" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BMjAzMjMzMzU2N15BMl5BanBnXkFtZTgwMDkxOTE3NDE@._V1_UY209_CR8,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">41.</span>
<a href="/title/tt0072783/">Chupke Chupke</a>
<span class="lister-item-year text-muted unbold">(1975)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">U</span>
<span class="ghost">|</span>
<span class="runtime">146 min</span>
<span class="ghost">|</span>
<span class="genre">
Comedy, Drama, Romance </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8.3</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0072783" id="checkbox-tt0072783" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0072783">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0072783">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0072783">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
A newly wedded husband plays a practical joke on his wife's family with full support from his wife and friends.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0611531/">Hrishikesh Mukherjee</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0004429/">Dharmendra</a>,
<a href="/name/nm0846616/">Sharmila Tagore</a>,
<a href="/name/nm0000821/">Amitabh Bachchan</a>,
<a href="/name/nm0080149/">Jaya Bachchan</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="12633" name="nv">12,633</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0072783" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0112870">
<a href="/title/tt0112870/"> <img alt="Dilwale Dulhania Le Jayenge" class="loadlate" data-tconst="tt0112870" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BMDQ2ZmE2NTMtZDE3NC00YzFjLWJhNmEtMDEzMTI5ZjU2ZGM0XkEyXkFqcGdeQXVyNTkzNDQ4ODc@._V1_UY209_CR8,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">42.</span>
<a href="/title/tt0112870/">Dilwale Dulhania Le Jayenge</a>
<span class="lister-item-year text-muted unbold">(1995)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">U</span>
<span class="ghost">|</span>
<span class="runtime">189 min</span>
<span class="ghost">|</span>
<span class="genre">
Drama, Romance </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0112870" id="checkbox-tt0112870" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0112870">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0112870">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0112870">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
When Raj meets Simran in Europe, it isn't love at first sight but when Simran moves to India for an arranged marriage, love makes its presence felt.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0159147/">Aditya Chopra</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0451321/">Shah Rukh Khan</a>,
<a href="/name/nm0004418/">Kajol</a>,
<a href="/name/nm0700869/">Amrish Puri</a>,
<a href="/name/nm0416077/">Farida Jalal</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="69613" name="nv">69,613</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0112870" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0986264">
<a href="/title/tt0986264/"> <img alt="Taare Zameen Par" class="loadlate" data-tconst="tt0986264" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BMDhjZWViN2MtNzgxOS00NmI4LThiZDQtZDI3MzM4MDE4NTc0XkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_UY209_CR3,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">43.</span>
<a href="/title/tt0986264/">Taare Zameen Par</a>
<span class="lister-item-year text-muted unbold">(2007)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">U</span>
<span class="ghost">|</span>
<span class="runtime">165 min</span>
<span class="ghost">|</span>
<span class="genre">
Drama, Family </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8.3</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0986264" id="checkbox-tt0986264" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0986264">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0986264">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0986264">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
An eight-year-old boy is thought to be a lazy trouble-maker, until the new art teacher has the patience and compassion to discover the real problem behind his struggles in school.</p>
<p class="text-muted text-small">
Directors:
<a href="/name/nm0451148/">Aamir Khan</a>,
<a href="/name/nm1244760/">Amole Gupte</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm2594301/">Darsheel Safary</a>,
<a href="/name/nm0451148/">Aamir Khan</a>,
<a href="/name/nm1538116/">Tisca Chopra</a>,
<a href="/name/nm1479650/">Vipin Sharma</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="192437" name="nv">192,437</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="1,223,869" name="nv">$1.22M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0986264" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0085178">
<a href="/title/tt0085178/"> <img alt="Ardh Satya" class="loadlate" data-tconst="tt0085178" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BNjE4YjZiZmMtZTE5Zi00YmIzLTkzZWItZjA5ZGMxMDEyOWRlXkEyXkFqcGdeQXVyNDUzOTQ5MjY@._V1_UY209_CR1,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">44.</span>
<a href="/title/tt0085178/">Ardh Satya</a>
<span class="lister-item-year text-muted unbold">(1983)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">A</span>
<span class="ghost">|</span>
<span class="runtime">130 min</span>
<span class="ghost">|</span>
<span class="genre">
Crime, Drama </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8.1</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0085178" id="checkbox-tt0085178" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0085178">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0085178">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0085178">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
A newly appointed police rookie deals with corruption, romance, and brutality.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0631539/">Govind Nihalani</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0700875/">Om Puri</a>,
<a href="/name/nm0665599/">Smita Patil</a>,
<a href="/name/nm0700869/">Amrish Puri</a>,
<a href="/name/nm0408371/">Shafi Inamdar</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="1771" name="nv">1,771</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0085178" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0075747">
<a href="/title/tt0075747/"> <img alt="Bhumika" class="loadlate" data-tconst="tt0075747" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BYWFjOWMxY2ItZmUyNy00YzUxLWJmM2QtYTY1YTA4NjFmMDVlXkEyXkFqcGdeQXVyODE5NzE3OTE@._V1_UY209_CR16,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">45.</span>
<a href="/title/tt0075747/">Bhumika</a>
<span class="lister-item-year text-muted unbold">(1977)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">A</span>
<span class="ghost">|</span>
<span class="runtime">142 min</span>
<span class="ghost">|</span>
<span class="genre">
Drama </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7.4</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0075747" id="checkbox-tt0075747" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0075747">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0075747">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0075747">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
A girl learns music from her courtesan grandmother and breaks into the burgeoning show business industry of 1930s Bombay, which eventually leads to decades of superstardom as well as romantic entanglements.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0070867/">Shyam Benegal</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0665599/">Smita Patil</a>,
<a href="/name/nm0619047/">Anant Nag</a>,
<a href="/name/nm0787462/">Naseeruddin Shah</a>,
<a href="/name/nm0700869/">Amrish Puri</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="663" name="nv">663</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0075747" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt1305797">
<a href="/title/tt1305797/"> <img alt="Enthiran" class="loadlate" data-tconst="tt1305797" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BZmI0YmZkOGUtMTcwZS00MTk4LTg5ODQtOTliNWU2MTcwZjQ3XkEyXkFqcGdeQXVyOTk3NTc2MzE@._V1_UY209_CR12,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">46.</span>
<a href="/title/tt1305797/">Enthiran</a>
<span class="lister-item-year text-muted unbold">(2010)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">U</span>
<span class="ghost">|</span>
<span class="runtime">155 min</span>
<span class="ghost">|</span>
<span class="genre">
Action, Sci-Fi, Thriller </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7.1</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt1305797" id="checkbox-tt1305797" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt1305797">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt1305797">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt1305797">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
A brilliant scientist creates a humanoid robot to protect mankind, but things go awry when human emotions are programmed and inner turmoil causes the robot to switch sides.</p>
<p class="text-muted text-small">
Directors:
<a href="/name/nm13901483/">Bazin Bs</a>,
<a href="/name/nm0788171/">S. Shankar</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0707425/">Rajinikanth</a>,
<a href="/name/nm0706787/">Aishwarya Rai Bachchan</a>,
<a href="/name/nm0219939/">Danny Denzongpa</a>,
<a href="/name/nm1962272/">Santhanam</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="27709" name="nv">27,709</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="4,373,898" name="nv">$4.37M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt1305797" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0086230">
<a href="/title/tt0086230/"> <img alt="Sadma" class="loadlate" data-tconst="tt0086230" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BMjc1NDZkYzMtMGI5MS00MTg3LWIyZjAtMzkxNWNhY2RhMDYwXkEyXkFqcGdeQXVyODEzOTQwNTY@._V1_UY209_CR7,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">47.</span>
<a href="/title/tt0086230/">Sadma</a>
<span class="lister-item-year text-muted unbold">(1983)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">A</span>
<span class="ghost">|</span>
<span class="runtime">141 min</span>
<span class="ghost">|</span>
<span class="genre">
Drama, Romance </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8.3</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0086230" id="checkbox-tt0086230" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0086230">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0086230">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0086230">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
A head injury causes a woman to regresses to childhood. Lost and confused, she is eventually befriended by a school teacher.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0536818/">Balu Mahendra</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0352032/">Kamal Haasan</a>,
<a href="/name/nm0004437/">Sridevi</a>,
<a href="/name/nm0004109/">Gulshan Grover</a>,
<a href="/name/nm0810426/">Silk Smitha</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="3264" name="nv">3,264</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0086230" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0396962">
<a href="/title/tt0396962/"> <img alt="Shwaas" class="loadlate" data-tconst="tt0396962" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BNDE3YWJjZWYtZTIxZC00NjEwLWE1NjgtYmQzYmZhYmE3NjM5XkEyXkFqcGdeQXVyMzc0ODYyNzk@._V1_UY209_CR2,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">48.</span>
<a href="/title/tt0396962/">Shwaas</a>
<span class="lister-item-year text-muted unbold">(2004)</span>
</h3>
<p class="text-muted text-small">
<span class="runtime">107 min</span>
<span class="ghost">|</span>
<span class="genre">
Drama </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8.2</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0396962" id="checkbox-tt0396962" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0396962">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0396962">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0396962">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore unfavorable">36 </span>
Metascore
</div>
<p class="">
This story is about how an old man tried to show his grandson the preciousness and beauty of life in a no win situation such as cancer. It is about keeping a positive attitude towards life.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm1680304/">Sandeep Sawant</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm1550913/">Arun Nalawade</a>,
<a href="/name/nm1727096/">Ashwin Chitale</a>,
<a href="/name/nm1276263/">Sandeep Kulkarni</a>,
<a href="/name/nm1576284/">Amruta Subhash</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="1573" name="nv">1,573</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="1,042" name="nv">$0.00M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0396962" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0102258">
<a href="/title/tt0102258/"> <img alt="Lamhe" class="loadlate" data-tconst="tt0102258" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BZjhhZTc3YzQtNGJjMy00MzI4LWE3Y2EtZDNiNzVkZTM2OTdhXkEyXkFqcGdeQXVyNTkzNDQ4ODc@._V1_UY209_CR8,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">49.</span>
<a href="/title/tt0102258/">Lamhe</a>
<span class="lister-item-year text-muted unbold">(1991)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">U</span>
<span class="ghost">|</span>
<span class="runtime">187 min</span>
<span class="ghost">|</span>
<span class="genre">
Drama, Musical, Romance </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7.2</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0102258" id="checkbox-tt0102258" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0102258">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0102258">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0102258">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
When the young Viren comes to India for the first time, he is captivated by Pallavi. When he learns she is already spoken for, he returns to London a broken man. When he gets the news of ... <a href="/title/tt0102258/plotsummary">See full summary</a> »
</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0007181/">Yash Chopra</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0438463/">Anil Kapoor</a>,
<a href="/name/nm0004437/">Sridevi</a>,
<a href="/name/nm0451600/">Anupam Kher</a>,
<a href="/name/nm0716851/">Waheeda Rehman</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="2930" name="nv">2,930</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0102258" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0154565">
<a href="/title/tt0154565/"> <img alt="Haqeeqat" class="loadlate" data-tconst="tt0154565" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BNjYyMWUwYjEtYjkzZi00YTZlLWEzMGQtNDYwZTVlNDM5ZDhjXkEyXkFqcGdeQXVyNDUzOTQ5MjY@._V1_UY209_CR10,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">50.</span>
<a href="/title/tt0154565/">Haqeeqat</a>
<span class="lister-item-year text-muted unbold">(1964)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">U</span>
<span class="ghost">|</span>
<span class="runtime">184 min</span>
<span class="ghost">|</span>
<span class="genre">
Action, Musical, War </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7.8</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0154565" id="checkbox-tt0154565" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0154565">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0154565">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0154565">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
A platoon of Indian soldiers encounters harsh realities while fighting in the Sino-Indian War of 1962.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0025608/">Chetan Anand</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0756379/">Balraj Sahni</a>,
<a href="/name/nm0004429/">Dharmendra</a>,
<a href="/name/nm0025629/">Vijay Anand</a>,
<a href="/name/nm0611532/">Indrani Mukherjee</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="519" name="nv">519</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0154565" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0048613">
<a href="/title/tt0048613/"> <img alt="Shree 420" class="loadlate" data-tconst="tt0048613" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BNzg4Y2NjZjctMzU3My00YTY4LWJmNjUtZmMxNzVlZWRkNTk4XkEyXkFqcGdeQXVyNjQ1MDcxNzM@._V1_UY209_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">51.</span>
<a href="/title/tt0048613/">Shree 420</a>
<span class="lister-item-year text-muted unbold">(1955)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">U</span>
<span class="ghost">|</span>
<span class="runtime">168 min</span>
<span class="ghost">|</span>
<span class="genre">
Comedy, Crime, Drama </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7.9</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0048613" id="checkbox-tt0048613" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0048613">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0048613">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0048613">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
When a young man from a small town decides to make it big in a city, he faces several challenges.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0004292/">Raj Kapoor</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0004291/">Nargis</a>,
<a href="/name/nm0004292/">Raj Kapoor</a>,
<a href="/name/nm0618918/">Nadira</a>,
<a href="/name/nm0625973/">Nemo</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="2800" name="nv">2,800</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0048613" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0312859">
<a href="/title/tt0312859/"> <img alt="Kannathil Muthamittal" class="loadlate" data-tconst="tt0312859" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BMTQ0YmIzOGQtNGMwNS00ODE0LTg3NjAtY2UxYzU0ODdjZTIwXkEyXkFqcGdeQXVyOTk3NTc2MzE@._V1_UX140_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">52.</span>
<a href="/title/tt0312859/">Kannathil Muthamittal</a>
<span class="lister-item-year text-muted unbold">(2002)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">U</span>
<span class="ghost">|</span>
<span class="runtime">136 min</span>
<span class="ghost">|</span>
<span class="genre">
Action, Drama, War </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8.4</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0312859" id="checkbox-tt0312859" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0312859">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0312859">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0312859">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
A little girl is told by her parents that she is adopted. Determined to find her real mother, she begs to be taken to Sri Lanka, where her mother works with a militant group of activists.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0711745/">Mani Ratnam</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm1149405/">Keerthana Parthiepan</a>,
<a href="/name/nm0801264/">Simran</a>,
<a href="/name/nm0534856/">Madhavan</a>,
<a href="/name/nm0201903/">Nandita Das</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="8579" name="nv">8,579</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0312859" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0110076">
<a href="/title/tt0110076/"> <img alt="Hum Aapke Hain Koun..!" class="loadlate" data-tconst="tt0110076" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BZjc0ODAwMmItMmQwMy00MmRmLThjOGYtZGEwYjQ2ZjcyYzA3XkEyXkFqcGdeQXVyODE5NzE3OTE@._V1_UY209_CR2,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">53.</span>
<a href="/title/tt0110076/">Hum Aapke Hain Koun..!</a>
<span class="lister-item-year text-muted unbold">(1994)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">U</span>
<span class="ghost">|</span>
<span class="runtime">206 min</span>
<span class="ghost">|</span>
<span class="genre">
Comedy, Drama, Musical </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7.5</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0110076" id="checkbox-tt0110076" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0110076">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0110076">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0110076">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
Prem and Nisha meet and fall in love at the wedding of their elder siblings, but their plans to be together are put in jeopardy when Nisha's sister dies, leaving behind a baby.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0054744/">Sooraj R. Barjatya</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0002043/">Madhuri Dixit</a>,
<a href="/name/nm0006795/">Salman Khan</a>,
<a href="/name/nm0046894/">Mohnish Behl</a>,
<a href="/name/nm0787509/">Renuka Shahane</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="21284" name="nv">21,284</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0110076" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt2218988">
<a href="/title/tt2218988/"> <img alt="Ustad Hotel" class="loadlate" data-tconst="tt2218988" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BNWYzYjk3YzItNzBhMC00NmQwLTk0MmUtNzU5MWNmNDI2Mzg0XkEyXkFqcGdeQXVyODE0NjUxNzY@._V1_UY209_CR8,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">54.</span>
<a href="/title/tt2218988/">Ustad Hotel</a>
<span class="lister-item-year text-muted unbold">(2012)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">U</span>
<span class="ghost">|</span>
<span class="runtime">151 min</span>
<span class="ghost">|</span>
<span class="genre">
Comedy, Drama </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8.2</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt2218988" id="checkbox-tt2218988" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt2218988">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt2218988">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt2218988">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
Faisi wants to go to UK to become a professional chef but circumstances force him to assist his grandfather in a small restaurant in Kozhikode city, changing his outlook on life forever.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm2057169/">Anwar Rasheed</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm4921260/">Dulquer Salmaan</a>,
<a href="/name/nm0858128/">Thilakan</a>,
<a href="/name/nm1388202/">Siddique</a>,
<a href="/name/nm3383930/">Nithya Menen</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="14594" name="nv">14,594</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt2218988" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0109206">
<a href="/title/tt0109206/"> <img alt="Bandit Queen" class="loadlate" data-tconst="tt0109206" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BOThkN2U4ZTItYmQzYi00YzBlLWJjNzAtZjRkZjQ4ODc4OTk0XkEyXkFqcGdeQXVyMTMxMTY0OTQ@._V1_UY209_CR2,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">55.</span>
<a href="/title/tt0109206/">Bandit Queen</a>
<span class="lister-item-year text-muted unbold">(1994)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">(Banned)</span>
<span class="ghost">|</span>
<span class="runtime">119 min</span>
<span class="ghost">|</span>
<span class="genre">
Action, Biography, Crime </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7.5</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0109206" id="checkbox-tt0109206" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0109206">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0109206">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0109206">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
The story of the bandit queen Phoolan Devi who was sent to prison in 1983 and got free in 1994.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0001408/">Shekhar Kapur</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0084443/">Seema Biswas</a>,
<a href="/name/nm0659241/">Nirmal Pandey</a>,
<a href="/name/nm0900267/">Rajesh Vivek</a>,
<a href="/name/nm0944834/">Raghuvir Yadav</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="4937" name="nv">4,937</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="399,748" name="nv">$0.40M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0109206" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0323013">
<a href="/title/tt0323013/"> <img alt="Lakshya" class="loadlate" data-tconst="tt0323013" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BY2Y0NjY5ZTctZWMzNC00MDQ4LTkyMWUtOGZkMzk4NWNhYWI5XkEyXkFqcGdeQXVyODE5NzE3OTE@._V1_UY209_CR2,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">56.</span>
<a href="/title/tt0323013/">Lakshya</a>
<span class="lister-item-year text-muted unbold">(2004)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">UA</span>
<span class="ghost">|</span>
<span class="runtime">186 min</span>
<span class="ghost">|</span>
<span class="genre">
Action, Drama, Romance </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7.9</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0323013" id="checkbox-tt0323013" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0323013">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0323013">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0323013">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
An aimless, jobless, irresponsible grown man joins the army and matures into a battlefield hero.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm1027719/">Farhan Akhtar</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0004335/">Hrithik Roshan</a>,
<a href="/name/nm0006689/">Preity Zinta</a>,
<a href="/name/nm0000821/">Amitabh Bachchan</a>,
<a href="/name/nm0700875/">Om Puri</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="23548" name="nv">23,548</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="752,344" name="nv">$0.75M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0323013" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0400234">
<a href="/title/tt0400234/"> <img alt="Black Friday" class="loadlate" data-tconst="tt0400234" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BYWRjMDlmNGYtOGFhYy00ZWU4LTk3MzEtOTI4ZTgxN2Y5NGNkXkEyXkFqcGdeQXVyNzU3Nzk4MDQ@._V1_UX140_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">57.</span>
<a href="/title/tt0400234/">Black Friday</a>
<span class="lister-item-year text-muted unbold">(2004)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">(Banned)</span>
<span class="ghost">|</span>
<span class="runtime">143 min</span>
<span class="ghost">|</span>
<span class="genre">
Action, Crime, Drama </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8.4</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0400234" id="checkbox-tt0400234" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0400234">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0400234">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0400234">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">76 </span>
Metascore
</div>
<p class="">
A film about the investigations following the 1993 serial Bombay bomb blasts, told through the different stories of the people involved --police, conspirators, victims, middlemen.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0440604/">Anurag Kashyap</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm1946407/">Kay Kay Menon</a>,
<a href="/name/nm0539497/">Pawan Malhotra</a>,
<a href="/name/nm0820282/">Aditya Srivastav</a>,
<a href="/name/nm0080349/">Dibyendu Bhattacharya</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="20975" name="nv">20,975</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="34,000" name="nv">$0.03M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0400234" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0074858">
<a href="/title/tt0074858/"> <img alt="Manthan" class="loadlate" data-tconst="tt0074858" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BYjRlZmEyYTMtYjY5My00MmU0LTk1MjQtOGE5N2NmYTQ0Y2JiXkEyXkFqcGdeQXVyODE5NzE3OTE@._V1_UX140_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">58.</span>
<a href="/title/tt0074858/">Manthan</a>
<span class="lister-item-year text-muted unbold">(1976)</span>
</h3>
<p class="text-muted text-small">
<span class="runtime">134 min</span>
<span class="ghost">|</span>
<span class="genre">
Drama </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7.6</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0074858" id="checkbox-tt0074858" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0074858">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0074858">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0074858">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
Dr.Rao (Girih Karnad) is a Vetinary doc, who comes to this village with the aim of starting a Milk Co-operative society for the welfare of the villagers. But the wealthy businessman ... <a href="/title/tt0074858/plotsummary">See full summary</a> »
</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0070867/">Shyam Benegal</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0439784/">Girish Karnad</a>,
<a href="/name/nm0665599/">Smita Patil</a>,
<a href="/name/nm0787462/">Naseeruddin Shah</a>,
<a href="/name/nm0619047/">Anant Nag</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="627" name="nv">627</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0074858" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0154159">
<a href="/title/tt0154159/"> <img alt="Apoorva Raagangal" class="loadlate" data-tconst="tt0154159" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BYmNhYTdhNmMtYTczYy00ZjY0LWJlYjQtNTE2ZDNmYjM1NmFkXkEyXkFqcGdeQXVyODEzOTQwNTY@._V1_UX140_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">59.</span>
<a href="/title/tt0154159/">Apoorva Raagangal</a>
<span class="lister-item-year text-muted unbold">(1975)</span>
</h3>
<p class="text-muted text-small">
<span class="runtime">144 min</span>
<span class="ghost">|</span>
<span class="genre">
Drama, Romance </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7.5</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0154159" id="checkbox-tt0154159" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0154159">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0154159">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0154159">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
Drama and melodrama follow two relationships involving single parents.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0049335/">K. Balachander</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0352032/">Kamal Haasan</a>,
<a href="/name/nm1139300/">Major Sundarrajan</a>,
<a href="/name/nm0820286/">Srividya</a>,
<a href="/name/nm0419707/">Jayasudha</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="418" name="nv">418</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0154159" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt2181931">
<a href="/title/tt2181931/"> <img alt="English Vinglish" class="loadlate" data-tconst="tt2181931" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BMjQ5YWVmYmYtOWFiZC00NGMxLWEwODctZDM2MWI4YWViN2E5XkEyXkFqcGdeQXVyNjQ2MjQ5NzM@._V1_UY209_CR3,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">60.</span>
<a href="/title/tt2181931/">English Vinglish</a>
<span class="lister-item-year text-muted unbold">(2012)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">U</span>
<span class="ghost">|</span>
<span class="runtime">134 min</span>
<span class="ghost">|</span>
<span class="genre">
Comedy, Drama, Family </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7.8</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt2181931" id="checkbox-tt2181931" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt2181931">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt2181931">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt2181931">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
A quiet, sweet tempered housewife endures small slights from her well-educated husband and daughter every day because of her inability to speak and understand English.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm1903006/">Gauri Shinde</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0004437/">Sridevi</a>,
<a href="/name/nm1300009/">Adil Hussain</a>,
<a href="/name/nm0623854/">Mehdi Nebbou</a>,
<a href="/name/nm3591550/">Priya Anand</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="36581" name="nv">36,581</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="1,670,773" name="nv">$1.67M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt2181931" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0061842">
<a href="/title/tt0061842/"> <img alt="Jewel Thief" class="loadlate" data-tconst="tt0061842" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BMDcyMWZmOTUtMWQ2ZS00Mzg4LTk4ODItY2JmZDBhYzYzNjFlXkEyXkFqcGdeQXVyNDUzOTQ5MjY@._V1_UY209_CR4,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">61.</span>
<a href="/title/tt0061842/">Jewel Thief</a>
<span class="lister-item-year text-muted unbold">(1967)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">U</span>
<span class="ghost">|</span>
<span class="runtime">186 min</span>
<span class="ghost">|</span>
<span class="genre">
Crime, Drama, Musical </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7.9</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0061842" id="checkbox-tt0061842" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0061842">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0061842">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0061842">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
A Police Commissioner's son comes under suspicion for being a jewel thief.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0025629/">Vijay Anand</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0006369/">Ashok Kumar</a>,
<a href="/name/nm0007147/">Dev Anand</a>,
<a href="/name/nm0904537/">Vyjayanthimala</a>,
<a href="/name/nm0849863/">Tanuja Samarth</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="1938" name="nv">1,938</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0061842" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0067546">
<a href="/title/tt0067546/"> <img alt="Pakeezah" class="loadlate" data-tconst="tt0067546" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BODk3M2VlMDMtYmI4Ny00ODZlLTg4Y2QtN2ZmNzM0ZDJmOTEyXkEyXkFqcGdeQXVyNDQxNjcxNQ@@._V1_UY209_CR5,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">62.</span>
<a href="/title/tt0067546/">Pakeezah</a>
<span class="lister-item-year text-muted unbold">(1972)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">U</span>
<span class="ghost">|</span>
<span class="runtime">147 min</span>
<span class="ghost">|</span>
<span class="genre">
Musical, Romance, Drama </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7.2</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0067546" id="checkbox-tt0067546" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0067546">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0067546">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0067546">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
In Lucknow at the turn of the century, a dancer and courtesan believes that her pure soul and body will enable her to find true love and honor.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0025399/">Kamal Amrohi</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0006369/">Ashok Kumar</a>,
<a href="/name/nm0474932/">Meena Kumari</a>,
<a href="/name/nm0474855/">Raaj Kumar</a>,
<a href="/name/nm0474940/">Veena</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="1668" name="nv">1,668</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0067546" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0379370">
<a href="/title/tt0379370/"> <img alt="Maqbool" class="loadlate" data-tconst="tt0379370" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BMTE2NjYzOWUtMDgyZS00NGY3LTk5ZDctODMxNGYyNjUyODIwXkEyXkFqcGdeQXVyODE5NzE3OTE@._V1_UY209_CR5,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">63.</span>
<a href="/title/tt0379370/">Maqbool</a>
<span class="lister-item-year text-muted unbold">(2003)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">A</span>
<span class="ghost">|</span>
<span class="runtime">132 min</span>
<span class="ghost">|</span>
<span class="genre">
Crime, Drama, Thriller </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0379370" id="checkbox-tt0379370" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0379370">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0379370">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0379370">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
The intrigue of the Shakespearean tragedy 'Macbeth' is transposed to the Mumbai underworld.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0080235/">Vishal Bhardwaj</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0451234/">Irrfan Khan</a>,
<a href="/name/nm0007102/">Tabu</a>,
<a href="/name/nm0438488/">Pankaj Kapur</a>,
<a href="/name/nm0787462/">Naseeruddin Shah</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="10980" name="nv">10,980</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0379370" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0053965">
<a href="/title/tt0053965/"> <img alt="Jis Desh Men Ganga Behti Hai" class="loadlate" data-tconst="tt0053965" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BZWZkMjE5YjItY2U4OC00NjJiLTk1NTEtMzY3NzM1YjljYzZjXkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_UY209_CR4,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">64.</span>
<a href="/title/tt0053965/">Jis Desh Men Ganga Behti Hai</a>
<span class="lister-item-year text-muted unbold">(1960)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">U</span>
<span class="ghost">|</span>
<span class="runtime">167 min</span>
<span class="ghost">|</span>
<span class="genre">
Drama, Musical, Romance </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7.1</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0053965" id="checkbox-tt0053965" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0053965">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0053965">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0053965">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
A simple-minded small-time singer joins a group of bandits and becomes the cause for their moral transformation and turnaround.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0439731/">Radhu Karmakar</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0004292/">Raj Kapoor</a>,
<a href="/name/nm0655803/">Padmini</a>,
<a href="/name/nm0695199/">Pran Sikand</a>,
<a href="/name/nm0151266/">Chanchal</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="477" name="nv">477</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0053965" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0056436">
<a href="/title/tt0056436/"> <img alt="Sahib Bibi Aur Ghulam" class="loadlate" data-tconst="tt0056436" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BNGFmMTc4M2MtZjYzMC00MWIwLWI0YzgtYTk0MzAxYjg3MmIyXkEyXkFqcGdeQXVyMTMzMjEyOTg5._V1_UY209_CR2,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">65.</span>
<a href="/title/tt0056436/">Sahib Bibi Aur Ghulam</a>
<span class="lister-item-year text-muted unbold">(1962)</span>
</h3>
<p class="text-muted text-small">
<span class="runtime">152 min</span>
<span class="ghost">|</span>
<span class="genre">
Drama, Musical </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8.1</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0056436" id="checkbox-tt0056436" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0056436">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0056436">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0056436">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
A lowly servant, Bhootnath gets close to the wife of his employer and narrates her story through his eyes and perspective.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0023551/">Abrar Alvi</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0474932/">Meena Kumari</a>,
<a href="/name/nm0244870/">Guru Dutt</a>,
<a href="/name/nm0716839/">Rehman Khan</a>,
<a href="/name/nm0716851/">Waheeda Rehman</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="1710" name="nv">1,710</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0056436" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0076696">
<a href="/title/tt0076696/"> <img alt="Shatranj Ke Khilari" class="loadlate" data-tconst="tt0076696" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BMWJhYTY5Y2EtODU5NC00MzRmLWFhMDgtNmQ5OTE2YjBlMjNlXkEyXkFqcGdeQXVyNjMwMjk0MTQ@._V1_UY209_CR6,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">66.</span>
<a href="/title/tt0076696/">Shatranj Ke Khilari</a>
<span class="lister-item-year text-muted unbold">(1977)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">U</span>
<span class="ghost">|</span>
<span class="runtime">129 min</span>
<span class="ghost">|</span>
<span class="genre">
Comedy, Drama, History </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7.5</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0076696" id="checkbox-tt0076696" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0076696">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0076696">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0076696">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
Wazed Ali Shah was the ruler of one of the last independent kingdoms of India. The British, intent on controlling this rich country, had sent General Outram on a secret mission to clear the... <a href="/title/tt0076696/plotsummary">See full summary</a> »
</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0006249/">Satyajit Ray</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0474876/">Sanjeev Kumar</a>,
<a href="/name/nm0006762/">Saeed Jaffrey</a>,
<a href="/name/nm0000818/">Shabana Azmi</a>,
<a href="/name/nm0416077/">Farida Jalal</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="3710" name="nv">3,710</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0076696" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0263778">
<a href="/title/tt0263778/"> <img alt="Narthanasala" class="loadlate" data-tconst="tt0263778" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BNWQ3MzUzYzUtOTAxOS00ODYzLWFjY2ItOGIwNjQ4NTEzY2YxXkEyXkFqcGdeQXVyNjQ1MDcxNzM@._V1_UX140_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">67.</span>
<a href="/title/tt0263778/">Narthanasala</a>
<span class="lister-item-year text-muted unbold">(1963)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">U</span>
<span class="ghost">|</span>
<span class="runtime">175 min</span>
<span class="ghost">|</span>
<span class="genre">
Drama, Musical </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0263778" id="checkbox-tt0263778" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0263778">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0263778">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0263778">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
This film deals with the Virata Parvam (Book of Virata) of the epic Mahabharatam dictated by Vyasa Maharshi.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0710563/">Kamalakara Kameshwara Rao</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0767800/">Savitri</a>,
<a href="/name/nm0004417/">N.T. Rama Rao</a>,
<a href="/name/nm0199227/">Rajagopal Dandamudi</a>,
<a href="/name/nm0710036/">S.V. Ranga Rao</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="263" name="nv">263</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0263778" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0267363">
<a href="/title/tt0267363/"> <img alt="Chandni Bar" class="loadlate" data-tconst="tt0267363" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BZWY0YjdjZTktMDQxMC00NjUxLWEyZjMtYmMwMjRjZDczYjlkXkEyXkFqcGdeQXVyNDUzOTQ5MjY@._V1_UY209_CR3,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">68.</span>
<a href="/title/tt0267363/">Chandni Bar</a>
<span class="lister-item-year text-muted unbold">(2001)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">A</span>
<span class="ghost">|</span>
<span class="runtime">150 min</span>
<span class="ghost">|</span>
<span class="genre">
Crime, Drama </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7.6</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0267363" id="checkbox-tt0267363" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0267363">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0267363">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0267363">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
A displaced woman is forced to become a beer-bar dancer, and sire children of a gangster.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm1055105/">Madhur Bhandarkar</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0007102/">Tabu</a>,
<a href="/name/nm0474609/">Atul Kulkarni</a>,
<a href="/name/nm1056425/">Rajpal Naurang Yadav</a>,
<a href="/name/nm0904503/">Shri Vallabh Vyas</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="2651" name="nv">2,651</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0267363" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt1180583">
<a href="/title/tt1180583/"> <img alt="Vaaranam Aayiram" class="loadlate" data-tconst="tt1180583" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BZTViZTUxNzQtNzMxMi00NWY2LTkxZDctNGE5NzcxN2M5M2M2XkEyXkFqcGdeQXVyMTEzNzg0Mjkx._V1_UY209_CR27,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">69.</span>
<a href="/title/tt1180583/">Vaaranam Aayiram</a>
<span class="lister-item-year text-muted unbold">(2008)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">U</span>
<span class="ghost">|</span>
<span class="runtime">169 min</span>
<span class="ghost">|</span>
<span class="genre">
Action, Drama, Musical </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8.2</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt1180583" id="checkbox-tt1180583" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt1180583">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt1180583">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt1180583">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
A father and son help each other through growing up, romance, tragedy, and adventure.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm1069826/">Gautham Vasudev Menon</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm1421814/">Suriya</a>,
<a href="/name/nm0801264/">Simran</a>,
<a href="/name/nm1631667/">Ramya</a>,
<a href="/name/nm1213820/">Sameera Reddy</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="13071" name="nv">13,071</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt1180583" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0329393">
<a href="/title/tt0329393/"> <img alt="Mr. and Mrs. Iyer" class="loadlate" data-tconst="tt0329393" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BNTcyNzA0MzktYWI5NS00Nzk2LTkzYjctMmE4ZGMxN2JkNjIxXkEyXkFqcGdeQXVyODE5NzE3OTE@._V1_UX140_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">70.</span>
<a href="/title/tt0329393/">Mr. and Mrs. Iyer</a>
<span class="lister-item-year text-muted unbold">(2002)</span>
</h3>
<p class="text-muted text-small">
<span class="runtime">120 min</span>
<span class="ghost">|</span>
<span class="genre">
Drama </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7.9</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0329393" id="checkbox-tt0329393" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0329393">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0329393">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0329393">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore mixed">50 </span>
Metascore
</div>
<p class="">
During a bus journey, a devout Hindu Brahmin woman protects a Muslim man when communal rioting breaks out.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0031967/">Aparna Sen</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0097893/">Rahul Bose</a>,
<a href="/name/nm1234298/">Konkona Sen Sharma</a>,
<a href="/name/nm0756380/">Bhisham Sahni</a>,
<a href="/name/nm0797773/">Surekha Sikri</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="4838" name="nv">4,838</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0329393" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0097045">
<a href="/title/tt0097045/"> <img alt="Chandni" class="loadlate" data-tconst="tt0097045" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BOTQ2MDFiODEtNjRhNi00NDJjLWFiYTEtMjAxNTY1ZjNhMjFiXkEyXkFqcGdeQXVyNTkzNDQ4ODc@._V1_UY209_CR8,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">71.</span>
<a href="/title/tt0097045/">Chandni</a>
<span class="lister-item-year text-muted unbold">(1989)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">U</span>
<span class="ghost">|</span>
<span class="runtime">186 min</span>
<span class="ghost">|</span>
<span class="genre">
Drama, Musical, Romance </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6.7</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0097045" id="checkbox-tt0097045" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0097045">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0097045">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0097045">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
Fate leaves Chandni shattered as her love Rohit disappears from her life. She meets Lalit and they befriend each other until Rohit knocks on her door.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0007181/">Yash Chopra</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0004437/">Sridevi</a>,
<a href="/name/nm0438501/">Rishi Kapoor</a>,
<a href="/name/nm0451396/">Vinod Khanna</a>,
<a href="/name/nm0716851/">Waheeda Rehman</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="1899" name="nv">1,899</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0097045" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0109732">
<a href="/title/tt0109732/"> <img alt="English, August" class="loadlate" data-tconst="tt0109732" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BNzZjMzIzZmYtOWM5Yy00NjljLThmNzQtYTgwMmY5OGFiY2FkXkEyXkFqcGdeQXVyMzU0NzkwMDg@._V1_UX140_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">72.</span>
<a href="/title/tt0109732/">English, August</a>
<span class="lister-item-year text-muted unbold">(1994)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">A</span>
<span class="ghost">|</span>
<span class="runtime">118 min</span>
<span class="ghost">|</span>
<span class="genre">
Drama, Comedy </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7.5</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0109732" id="checkbox-tt0109732" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0109732">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0109732">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0109732">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
Agasyta, an urban bengali who seamlessly shuttles between Ella Fitzgerald and Rabindra Sangeet, joins the Indian administration service and gets posted in the lap of India's hinterland - a ... <a href="/title/tt0109732/synopsis">See full synopsis</a> »
</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0070865/">Dev Benegal</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0044343/">Tanvi Azmi</a>,
<a href="/name/nm0097893/">Rahul Bose</a>,
<a href="/name/nm11621457/">Rupen Bose</a>,
<a href="/name/nm0766146/">Shivaji Satam</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="137" name="nv">137</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0109732" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt2717168">
<a href="/title/tt2717168/"> <img alt="Celluloid" class="loadlate" data-tconst="tt2717168" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BZTQzZGM1YmUtNzBkMC00ZGI3LTk1NjEtODAwMWE4MTZmYTY3XkEyXkFqcGdeQXVyNTIxMjg4Nzc@._V1_UY209_CR34,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">73.</span>
<a href="/title/tt2717168/">Celluloid</a>
<span class="lister-item-year text-muted unbold">(2013)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">U</span>
<span class="ghost">|</span>
<span class="runtime">129 min</span>
<span class="ghost">|</span>
<span class="genre">
Biography, Drama </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7.7</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt2717168" id="checkbox-tt2717168" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt2717168">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt2717168">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt2717168">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
The story of J C Daniel, who made the first ever Malayalam film 'Vigathakumaran' in 1928, resulting in his exile and eventual downfall.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0436382/">Kamal</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm1335387/">Prithviraj Sukumaran</a>,
<a href="/name/nm0820208/">Sreenivasan</a>,
<a href="/name/nm1952830/">Mamta Mohandas</a>,
<a href="/name/nm5832913/">Chandini</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="1460" name="nv">1,460</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt2717168" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0086231">
<a href="/title/tt0086231/"> <img alt="Sagara Sangamam" class="loadlate" data-tconst="tt0086231" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BNmJhYzQ0MjUtZmM4OS00ZmI4LTgxZjctNjE4Y2MyNjc3NzM2XkEyXkFqcGdeQXVyODEzOTQwNTY@._V1_UY209_CR4,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">74.</span>
<a href="/title/tt0086231/">Sagara Sangamam</a>
<span class="lister-item-year text-muted unbold">(1983)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">U</span>
<span class="ghost">|</span>
<span class="runtime">160 min</span>
<span class="ghost">|</span>
<span class="genre">
Drama, Music, Musical </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8.8</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0086231" id="checkbox-tt0086231" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0086231">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0086231">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0086231">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
A classical dancer, Balakrishna, faces many struggles, but is eventually redeemed.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0899649/">K. Viswanath</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0352032/">Kamal Haasan</a>,
<a href="/name/nm0419685/">Jaya Prada</a>,
<a href="/name/nm0764871/">Sarath Babu</a>,
<a href="/name/nm0004465/">Sailaja S.P.</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="3381" name="nv">3,381</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0086231" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0374887">
<a href="/title/tt0374887/"> <img alt="Munna Bhai M.B.B.S." class="loadlate" data-tconst="tt0374887" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BMzQ4MTBlYTQtMzJkYS00OGNjLTk1MWYtNzQ0OTQ0OWEyOWU1XkEyXkFqcGdeQXVyNDgyODgxNjE@._V1_UY209_CR3,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">75.</span>
<a href="/title/tt0374887/">Munna Bhai M.B.B.S.</a>
<span class="lister-item-year text-muted unbold">(2003)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">U</span>
<span class="ghost">|</span>
<span class="runtime">156 min</span>
<span class="ghost">|</span>
<span class="genre">
Comedy, Drama </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8.1</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0374887" id="checkbox-tt0374887" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0374887">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0374887">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0374887">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
A gangster sets out to fulfill his father's dream of becoming a doctor.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0386246/">Rajkumar Hirani</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0004569/">Sanjay Dutt</a>,
<a href="/name/nm0451174/">Arshad Warsi</a>,
<a href="/name/nm0961737/">Gracy Singh</a>,
<a href="/name/nm1224082/">Boman Irani</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="81939" name="nv">81,939</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0374887" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0088031">
<a href="/title/tt0088031/"> <img alt="Saaransh" class="loadlate" data-tconst="tt0088031" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BZjQ0YjFlM2YtN2ZhZC00NWQ1LWI1N2QtYzg2NDI0N2UxMjViXkEyXkFqcGdeQXVyNTgyNTA4MjM@._V1_UX140_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">76.</span>
<a href="/title/tt0088031/">Saaransh</a>
<span class="lister-item-year text-muted unbold">(1984)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">UA</span>
<span class="ghost">|</span>
<span class="runtime">137 min</span>
<span class="ghost">|</span>
<span class="genre">
Drama </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8.1</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0088031" id="checkbox-tt0088031" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0088031">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0088031">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0088031">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
An old couple lend a room on rent after recent death of the bread earner of the family, their only son. A budding actress starts living with them, who is in love with a local politician's only son. The movie shows what later ensues.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0080315/">Mahesh Bhatt</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0451600/">Anupam Kher</a>,
<a href="/name/nm0368990/">Rohini Hattangadi</a>,
<a href="/name/nm0713618/">Soni Razdan</a>,
<a href="/name/nm0415834/">Madan Jain</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="1943" name="nv">1,943</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0088031" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0067164">
<a href="/title/tt0067164/"> <img alt="Guddi" class="loadlate" data-tconst="tt0067164" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BNGQ3ODdlNmUtYmE4Yy00MWU5LWJhYTYtN2JlMGE5Yzg5YTIyXkEyXkFqcGdeQXVyMTQwMzQ1MA@@._V1_UX140_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">77.</span>
<a href="/title/tt0067164/">Guddi</a>
<span class="lister-item-year text-muted unbold">(1971)</span>
</h3>
<p class="text-muted text-small">
<span class="runtime">121 min</span>
<span class="ghost">|</span>
<span class="genre">
Drama, Comedy, Family </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7.2</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0067164" id="checkbox-tt0067164" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0067164">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0067164">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0067164">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
A teenage girl will not accept her family's attempt to arrange a marriage for her, as her heart is currently too full of love for the movies and heartthrob actor "Dharmendra."</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0611531/">Hrishikesh Mukherjee</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0004429/">Dharmendra</a>,
<a href="/name/nm0080149/">Jaya Bachchan</a>,
<a href="/name/nm0764407/">Sumita Sanyal</a>,
<a href="/name/nm0244884/">Utpal Dutt</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="1101" name="nv">1,101</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0067164" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0832971">
<a href="/title/tt0832971/"> <img alt="Vanaja" class="loadlate" data-tconst="tt0832971" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BMTIwMTA4MjcxOF5BMl5BanBnXkFtZTcwMTQ3MzYzMQ@@._V1_UY209_CR12,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">78.</span>
<a href="/title/tt0832971/">Vanaja</a>
<span class="lister-item-year text-muted unbold">(2006)</span>
</h3>
<p class="text-muted text-small">
<span class="runtime">111 min</span>
<span class="ghost">|</span>
<span class="genre">
Drama </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7.2</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0832971" id="checkbox-tt0832971" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0832971">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0832971">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0832971">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
Vanaja, the 15 year old daughter of a financially troubled fisherman goes to work in the local landlady's house in hopes of learning Kuchipudi dance. She does well, but when the Landlady's ... <a href="/title/tt0832971/plotsummary">See full summary</a> »
</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm2336638/">Rajnesh Domalpalli</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm2357033/">Mamatha Bhukya</a>,
<a href="/name/nm2351870/">Urmila Dammannagari</a>,
<a href="/name/nm2352481/">Ramachandriah Marikanti</a>,
<a href="/name/nm2356631/">Krishnamma Gundimalla</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="525" name="nv">525</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="145,927" name="nv">$0.15M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0832971" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt2146960">
<a href="/title/tt2146960/"> <img alt="Vazhakku Enn 18/9" class="loadlate" data-tconst="tt2146960" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BZWZjMjliNjQtZWIwYy00ZWMwLTlhNzgtMWEzYzFjOTZhYjQyXkEyXkFqcGdeQXVyODk1MzE5NDA@._V1_UY209_CR6,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">79.</span>
<a href="/title/tt2146960/">Vazhakku Enn 18/9</a>
<span class="lister-item-year text-muted unbold">(2012)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">UA</span>
<span class="ghost">|</span>
<span class="runtime">124 min</span>
<span class="ghost">|</span>
<span class="genre">
Crime, Drama, Thriller </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8.3</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt2146960" id="checkbox-tt2146960" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt2146960">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt2146960">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt2146960">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
A girl gets in trouble when her boyfriend films her private moments on his mobile phone without her knowledge.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm1475260/">Balaji Sakthivel</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm5036793/">Sri</a>,
<a href="/name/nm5036684/">Mithun Murali</a>,
<a href="/name/nm5043571/">Urmila Mahanta</a>,
<a href="/name/nm5043023/">Manisha Yadav</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="2302" name="nv">2,302</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt2146960" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0373856">
<a href="/title/tt0373856/"> <img alt="Gangaajal" class="loadlate" data-tconst="tt0373856" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BYjRjOWViZTgtYjA4Ny00MWJiLTkxYzktMzdlOGRmMWYwOTdjXkEyXkFqcGdeQXVyNDUzOTQ5MjY@._V1_UY209_CR8,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">80.</span>
<a href="/title/tt0373856/">Gangaajal</a>
<span class="lister-item-year text-muted unbold">(2003)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">UA</span>
<span class="ghost">|</span>
<span class="runtime">157 min</span>
<span class="ghost">|</span>
<span class="genre">
Action, Crime, Drama </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7.8</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0373856" id="checkbox-tt0373856" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0373856">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0373856">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0373856">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
An IPS officer motivates and leads a dysfunctional, corrupt police force of Tezpur to fight against the corrupt politician.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0422552/">Prakash Jha</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0222426/">Ajay Devgn</a>,
<a href="/name/nm0961737/">Gracy Singh</a>,
<a href="/name/nm0430803/">Mohan Joshi</a>,
<a href="/name/nm1004985/">Yashpal Sharma</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="17319" name="nv">17,319</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0373856" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0215517">
<a href="/title/tt0215517/"> <img alt="Angoor" class="loadlate" data-tconst="tt0215517" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BMGQ0YTQ4YzktZTMzYy00NWZhLTk0MGEtMzQ0YTE5OWUzN2U5XkEyXkFqcGdeQXVyMTgwMjgwMjM@._V1_UY209_CR11,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">81.</span>
<a href="/title/tt0215517/">Angoor</a>
<span class="lister-item-year text-muted unbold">(1982)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">U</span>
<span class="ghost">|</span>
<span class="runtime">131 min</span>
<span class="ghost">|</span>
<span class="genre">
Comedy </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8.3</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0215517" id="checkbox-tt0215517" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0215517">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0215517">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0215517">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
Based on Shakespeare's 'A Comedy of Errors', this is a story of identical twins (2 pairs) and mistaken identities.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0347899/">Gulzar</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0474876/">Sanjeev Kumar</a>,
<a href="/name/nm0154139/">Moushumi Chatterjee</a>,
<a href="/name/nm0894340/">Deven Verma</a>,
<a href="/name/nm0045119/">Aruna Irani</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="5407" name="nv">5,407</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0215517" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0499375">
<a href="/title/tt0499375/"> <img alt="Guru" class="loadlate" data-tconst="tt0499375" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BZWE3OGQyYTQtMGQzNy00YjI0LTkwYWUtY2FjZjNmODFlNDNkXkEyXkFqcGdeQXVyMTEzNzg0Mjkx._V1_UY209_CR3,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">82.</span>
<a href="/title/tt0499375/">Guru</a>
<span class="lister-item-year text-muted unbold">(2007)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">U</span>
<span class="ghost">|</span>
<span class="runtime">162 min</span>
<span class="ghost">|</span>
<span class="genre">
Drama </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7.7</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0499375" id="checkbox-tt0499375" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0499375">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0499375">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0499375">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">70 </span>
Metascore
</div>
<p class="">
A villager, Gurukant Desai, arrives in Bombay 1958, and rises from its streets to become the GURU, the biggest tycoon in Indian history.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0711745/">Mani Ratnam</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0149822/">Mithun Chakraborty</a>,
<a href="/name/nm0045393/">Abhishek Bachchan</a>,
<a href="/name/nm0706787/">Aishwarya Rai Bachchan</a>,
<a href="/name/nm0534856/">Madhavan</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="23904" name="nv">23,904</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="2,087,000" name="nv">$2.09M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0499375" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0109117">
<a href="/title/tt0109117/"> <img alt="Andaz Apna Apna" class="loadlate" data-tconst="tt0109117" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BZjA4NmE0NjgtZDg0ZS00Y2U0LWFjNjQtNzhhZWMxODk4Y2MwXkEyXkFqcGdeQXVyNDAzNDk0MTQ@._V1_UY209_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">83.</span>
<a href="/title/tt0109117/">Andaz Apna Apna</a>
<span class="lister-item-year text-muted unbold">(1994)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">U</span>
<span class="ghost">|</span>
<span class="runtime">160 min</span>
<span class="ghost">|</span>
<span class="genre">
Action, Comedy, Romance </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0109117" id="checkbox-tt0109117" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0109117">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0109117">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0109117">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
Two slackers competing for the affections of an heiress inadvertently become her protectors from an evil criminal.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0764316/">Rajkumar Santoshi</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0451148/">Aamir Khan</a>,
<a href="/name/nm0006795/">Salman Khan</a>,
<a href="/name/nm0849199/">Raveena Tandon</a>,
<a href="/name/nm0006433/">Karisma Kapoor</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="53392" name="nv">53,392</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0109117" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0058547">
<a href="/title/tt0058547/"> <img alt="Sangam" class="loadlate" data-tconst="tt0058547" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BMzkxY2QwNzgtYWU3NS00NGE0LWJkZDUtZTFhMDA4MGI0NzhkXkEyXkFqcGdeQXVyODE5NzE3OTE@._V1_UY209_CR10,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">84.</span>
<a href="/title/tt0058547/">Sangam</a>
<span class="lister-item-year text-muted unbold">(I) (1964)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">U</span>
<span class="ghost">|</span>
<span class="runtime">238 min</span>
<span class="ghost">|</span>
<span class="genre">
Drama, Musical, Romance </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7.3</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0058547" id="checkbox-tt0058547" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0058547">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0058547">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0058547">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
Returning home from war after being assumed dead, a pilot weds the woman he has long loved, unaware that she had been planning to marry his best friend.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0004292/">Raj Kapoor</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0004292/">Raj Kapoor</a>,
<a href="/name/nm0006348/">Rajendra Kumar Tuli</a>,
<a href="/name/nm0904537/">Vyjayanthimala</a>,
<a href="/name/nm0407002/">Iftekhar</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="1765" name="nv">1,765</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0058547" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0076492">
<a href="/title/tt0076492/"> <img alt="Oka Oori Katha" class="loadlate" data-tconst="tt0076492" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BYWQ0MDM4OTgtOTllNy00YTU1LTgwNmItNGYxYWRhODFjYWI1XkEyXkFqcGdeQXVyNDI3NjcxMDA@._V1_UY209_CR9,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">85.</span>
<a href="/title/tt0076492/">Oka Oori Katha</a>
<span class="lister-item-year text-muted unbold">(1978)</span>
</h3>
<p class="text-muted text-small">
<span class="runtime">116 min</span>
<span class="ghost">|</span>
<span class="genre">
Comedy, Drama </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7.7</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0076492" id="checkbox-tt0076492" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0076492">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0076492">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0076492">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
The father of a son living on the fringes of a village believes that working is a fools game, for the lord takes what little the workers make. When a young woman enters their home tensions begin to rise and their idle life is threatened.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0784019/">Mrinal Sen</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm1022721/">Krishna A.R.</a>,
<a href="/name/nm0474850/">Pradeep Kumar</a>,
<a href="/name/nm1128422/">G. Narayana Rao</a>,
<a href="/name/nm1115041/">M.V. Vasudeva Rao</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="72" name="nv">72</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0076492" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0064086">
<a href="/title/tt0064086/"> <img alt="Bhuvan Shome" class="loadlate" data-tconst="tt0064086" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BODM5MzBiMGQtNjUzMS00NDExLWFjYzctMDY5NDk3MjE4YTA4XkEyXkFqcGdeQXVyNDUzOTQ5MjY@._V1_UY209_CR6,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">86.</span>
<a href="/title/tt0064086/">Bhuvan Shome</a>
<span class="lister-item-year text-muted unbold">(1969)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">U</span>
<span class="ghost">|</span>
<span class="runtime">96 min</span>
<span class="ghost">|</span>
<span class="genre">
Comedy, Drama </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7.2</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0064086" id="checkbox-tt0064086" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0064086">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0064086">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0064086">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
A lonely bureaucrat goes on holiday to a Gujarat village where a young peasant woman helps him see beyond his job and develop a newfound empathy for people.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0784019/">Mrinal Sen</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0244884/">Utpal Dutt</a>,
<a href="/name/nm0611663/">Suhasini Mulay</a>,
<a href="/name/nm0154161/">Shekhar Chatterjee</a>,
<a href="/name/nm0576404/">Sadhu Meher</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="520" name="nv">520</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0064086" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0118751">
<a href="/title/tt0118751/"> <img alt="Border" class="loadlate" data-tconst="tt0118751" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BNWYwYmExOWQtYzNkOS00NWY5LWE4NTEtYTcwY2FiYmQ0OTg5XkEyXkFqcGdeQXVyODE5NzE3OTE@._V1_UY209_CR9,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">87.</span>
<a href="/title/tt0118751/">Border</a>
<span class="lister-item-year text-muted unbold">(I) (1997)</span>
</h3>
<p class="text-muted text-small">
<span class="runtime">176 min</span>
<span class="ghost">|</span>
<span class="genre">
Action, Drama, History </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7.9</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0118751" id="checkbox-tt0118751" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0118751">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0118751">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0118751">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
In 1971, along the border region of Longewala, a small battalion of Indian soldiers goes up against a large Pakistani strike force.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0244892/">J.P. Dutta</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0219971/">Sunny Deol</a>,
<a href="/name/nm0792911/">Suniel Shetty</a>,
<a href="/name/nm0451379/">Akshaye Khanna</a>,
<a href="/name/nm0006763/">Jackie Shroff</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="16337" name="nv">16,337</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0118751" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0437407">
<a href="/title/tt0437407/"> <img alt="Parineeta" class="loadlate" data-tconst="tt0437407" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BMTcwOTEyMTYyM15BMl5BanBnXkFtZTcwMTEyMTAzMQ@@._V1_UY209_CR2,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">88.</span>
<a href="/title/tt0437407/">Parineeta</a>
<span class="lister-item-year text-muted unbold">(2005)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">UA</span>
<span class="ghost">|</span>
<span class="runtime">130 min</span>
<span class="ghost">|</span>
<span class="genre">
Drama, Musical, Romance </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7.2</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0437407" id="checkbox-tt0437407" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0437407">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0437407">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0437407">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
The lifelong romance between Lolita (Balan) and Shekar (Khan) is upset by the arrival of another man.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm1224879/">Pradeep Sarkar</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm1799038/">Vidya Balan</a>,
<a href="/name/nm0451307/">Saif Ali Khan</a>,
<a href="/name/nm0004569/">Sanjay Dutt</a>,
<a href="/name/nm1069850/">Dia Mirza</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="9279" name="nv">9,279</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="802,758" name="nv">$0.80M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0437407" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0047990">
<a href="/title/tt0047990/"> <img alt="Devdas" class="loadlate" data-tconst="tt0047990" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BZGExYmUwNGItZGRkNC00NTZlLTgyODYtMjRiOGQ2OGE0MGNhXkEyXkFqcGdeQXVyMTA4Njk3Mjcw._V1_UY209_CR8,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">89.</span>
<a href="/title/tt0047990/">Devdas</a>
<span class="lister-item-year text-muted unbold">(1955)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">U</span>
<span class="ghost">|</span>
<span class="runtime">159 min</span>
<span class="ghost">|</span>
<span class="genre">
Drama, Musical, Romance </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7.7</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0047990" id="checkbox-tt0047990" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0047990">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0047990">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0047990">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
The scion of a wealthy landowner family turns to alcohol and self-pity and slowly self-destructs after class differences force him to break off his relationship with his childhood sweetheart.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0746950/">Bimal Roy</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0474801/">Dilip Kumar</a>,
<a href="/name/nm0784042/">Suchitra Sen</a>,
<a href="/name/nm0904537/">Vyjayanthimala</a>,
<a href="/name/nm0609359/">Motilal</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="1920" name="nv">1,920</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0047990" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt1461674">
<a href="/title/tt1461674/"> <img alt="Abohomaan" class="loadlate" data-tconst="tt1461674" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BOWI2ZjdlNGItYmI2OC00MDczLWJlOGEtNWYzOWJiNTQ2OWVjXkEyXkFqcGdeQXVyNjA3OTI5MjA@._V1_UY209_CR5,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">90.</span>
<a href="/title/tt1461674/">Abohomaan</a>
<span class="lister-item-year text-muted unbold">(2009)</span>
</h3>
<p class="text-muted text-small">
<span class="runtime">122 min</span>
<span class="ghost">|</span>
<span class="genre">
Drama </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7.4</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt1461674" id="checkbox-tt1461674" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt1461674">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt1461674">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt1461674">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
Abohomaan tells the story of Aniket, one of the finest filmmakers of Bengal in eastern India and the loves of his life. Devoted to his craft, Aniket met and fell in love with his wife ... <a href="/title/tt1461674/plotsummary">See full summary</a> »
</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0315916/">Rituparno Ghosh</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0212541/">Dipankar Dey</a>,
<a href="/name/nm0788164/">Mamata Shankar</a>,
<a href="/name/nm1702868/">Jisshu Sengupta</a>,
<a href="/name/nm3089359/">Ananya Chatterjee</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="637" name="nv">637</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt1461674" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0172684">
<a href="/title/tt0172684/"> <img alt="Kuch Kuch Hota Hai" class="loadlate" data-tconst="tt0172684" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BNGNhNWMwNTgtZmNlOS00OGM3LWIxYzItOWQwZDJjMzQ3MzRlXkEyXkFqcGdeQXVyODE5NzE3OTE@._V1_UY209_CR3,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">91.</span>
<a href="/title/tt0172684/">Kuch Kuch Hota Hai</a>
<span class="lister-item-year text-muted unbold">(1998)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">U</span>
<span class="ghost">|</span>
<span class="runtime">177 min</span>
<span class="ghost">|</span>
<span class="genre">
Comedy, Drama, Musical </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7.6</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0172684" id="checkbox-tt0172684" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0172684">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0172684">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0172684">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
During their college years, Anjali was in love with her best-friend Rahul, but he had eyes only for Tina. Years later, Rahul and the now-deceased Tina's eight-year-old daughter attempts to reunite her father and Anjali.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0424103/">Karan Johar</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0451321/">Shah Rukh Khan</a>,
<a href="/name/nm0004418/">Kajol</a>,
<a href="/name/nm0611552/">Rani Mukerji</a>,
<a href="/name/nm0755705/">Sana Saeed</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="52616" name="nv">52,616</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="2,100,000" name="nv">$2.10M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0172684" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0376076">
<a href="/title/tt0376076/"> <img alt="Pithamagan" class="loadlate" data-tconst="tt0376076" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BODA2YTgyMDItNzFjNi00Y2IzLTlhZTgtOGMzZjgzNDUxNzQxXkEyXkFqcGdeQXVyODE0NjUxNzY@._V1_UY209_CR5,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">92.</span>
<a href="/title/tt0376076/">Pithamagan</a>
<span class="lister-item-year text-muted unbold">(2003)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">A</span>
<span class="ghost">|</span>
<span class="runtime">139 min</span>
<span class="ghost">|</span>
<span class="genre">
Action, Drama </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8.3</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0376076" id="checkbox-tt0376076" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0376076">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0376076">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0376076">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
Chittan, a social outcast, has grown up in a cemetery. A drug dealer finds him a job in a cannabis farm. In prison, he meets a conman, Shakti. This friendship transforms him from his stony existence.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm1220246/">Bala</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm1417314/">Vikram</a>,
<a href="/name/nm1421814/">Suriya</a>,
<a href="/name/nm0481798/">Laila</a>,
<a href="/name/nm1294683/">Sangeetha</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="6869" name="nv">6,869</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0376076" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt1045898">
<a href="/title/tt1045898/"> <img alt="Veyyil" class="loadlate" data-tconst="tt1045898" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BNjQ3NzczNTgtYTdjMS00MWNhLWFjNjEtZDA2NTU4NDgxMmRhXkEyXkFqcGdeQXVyOTk3NTc2MzE@._V1_UY209_CR11,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">93.</span>
<a href="/title/tt1045898/">Veyyil</a>
<span class="lister-item-year text-muted unbold">(2006)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">UA</span>
<span class="ghost">|</span>
<span class="runtime">136 min</span>
<span class="ghost">|</span>
<span class="genre">
Drama </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7.8</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt1045898" id="checkbox-tt1045898" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt1045898">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt1045898">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt1045898">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
Story of two brothers told from the perspective of older brother who recalls his childhood memories where he runs away from home and returns after 20 years. The rest of the film is all ... <a href="/title/tt1045898/plotsummary">See full summary</a> »
</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm2677913/">Vasanthabalan</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm1367730/">Pasupathy</a>,
<a href="/name/nm1467000/">Bharath Srinivasan</a>,
<a href="/name/nm1418952/">Bhavana</a>,
<a href="/name/nm3444244/">Priyanka Nair</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="774" name="nv">774</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt1045898" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0059028">
<a href="/title/tt0059028/"> <img alt="Chemmeen" class="loadlate" data-tconst="tt0059028" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BYmNmZWYwZWYtZmNiYS00ZmUzLTgyM2ItYzA0MzFlMTVkOGE0XkEyXkFqcGdeQXVyMjkxNzQ1NDI@._V1_UY209_CR6,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">94.</span>
<a href="/title/tt0059028/">Chemmeen</a>
<span class="lister-item-year text-muted unbold">(1965)</span>
</h3>
<p class="text-muted text-small">
<span class="runtime">140 min</span>
<span class="ghost">|</span>
<span class="genre">
Drama, Romance </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7.8</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0059028" id="checkbox-tt0059028" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0059028">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0059028">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0059028">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
Karuthamma, the daughter of a Hindu fisherman, falls in love with a Muslim fish trader. However, social prejudices seem to ruin their love life and invite the wrath of their communities.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0439253/">Ramu Kariat</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0766163/">Sathyan</a>,
<a href="/name/nm0790659/">Sheela</a>,
<a href="/name/nm0534867/">Madhu</a>,
<a href="/name/nm0619758/">Kottarakkara Sridharan Nair</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="512" name="nv">512</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0059028" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0085743">
<a href="/title/tt0085743/"> <img alt="Jaane Bhi Do Yaaro" class="loadlate" data-tconst="tt0085743" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BMDE0Y2NhYjEtNWM3MS00MzFiLTlkODctYmViY2Q4OTczYWI2XkEyXkFqcGdeQXVyNDUzOTQ5MjY@._V1_UY209_CR9,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">95.</span>
<a href="/title/tt0085743/">Jaane Bhi Do Yaaro</a>
<span class="lister-item-year text-muted unbold">(1983)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">U</span>
<span class="ghost">|</span>
<span class="runtime">132 min</span>
<span class="ghost">|</span>
<span class="genre">
Comedy, Crime, Drama </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8.3</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0085743" id="checkbox-tt0085743" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0085743">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0085743">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0085743">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
Two friends, attempting to start-up their own photo studio, come across shady dealings, corruption and murder, and must fight to bring the guilty to light.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0787453/">Kundan Shah</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0787462/">Naseeruddin Shah</a>,
<a href="/name/nm0060629/">Ravi Baswani</a>,
<a href="/name/nm0080268/">Bhakti Barve</a>,
<a href="/name/nm0787474/">Satish Shah</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="14117" name="nv">14,117</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0085743" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0052572">
<a href="/title/tt0052572/"> <img alt="Apur Sansar" class="loadlate" data-tconst="tt0052572" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BN2ZhM2NkZDUtMTI3OC00NWE5LWEwYzMtZTlhMjhkZGFlMjQyXkEyXkFqcGdeQXVyNTgyNTA4MjM@._V1_UX140_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">96.</span>
<a href="/title/tt0052572/">Apur Sansar</a>
<span class="lister-item-year text-muted unbold">(1959)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">U</span>
<span class="ghost">|</span>
<span class="runtime">105 min</span>
<span class="ghost">|</span>
<span class="genre">
Drama </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8.5</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0052572" id="checkbox-tt0052572" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0052572">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0052572">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0052572">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
This final installment in Satyajit Ray's Apu Trilogy follows Apu's life as an orphaned adult aspiring to be a writer.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0006249/">Satyajit Ray</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0154164/">Soumitra Chatterjee</a>,
<a href="/name/nm0846616/">Sharmila Tagore</a>,
<a href="/name/nm0149845/">Alok Chakravarty</a>,
<a href="/name/nm0611575/">Swapan Mukherjee</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="14836" name="nv">14,836</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="16,000" name="nv">$0.02M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0052572" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt1286811">
<a href="/title/tt1286811/"> <img alt="Kanchivaram" class="loadlate" data-tconst="tt1286811" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BNDJhM2FiNTYtMmFiMC00ZmJhLWJjYzItZmY0ODk4YjY2YzQzXkEyXkFqcGdeQXVyOTk3NTc2MzE@._V1_UX140_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">97.</span>
<a href="/title/tt1286811/">Kanchivaram</a>
<span class="lister-item-year text-muted unbold">(2008)</span>
</h3>
<p class="text-muted text-small">
<span class="runtime">117 min</span>
<span class="ghost">|</span>
<span class="genre">
Drama </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8.1</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt1286811" id="checkbox-tt1286811" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt1286811">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt1286811">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt1286811">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
A poor silk weaver promises his wife to dress their newborn daughter in a silk saree for her marriage. Facing systemic oppression and the vicissitudes of his fortune, he struggles to keep his word.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0698184/">Priyadarshan</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0695177/">Prakash Raj</a>,
<a href="/name/nm1597362/">Shreya Reddy</a>,
<a href="/name/nm3833238/">Shammu</a>,
<a href="/name/nm0820200/">Sreekumar</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="684" name="nv">684</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt1286811" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0265343">
<a href="/title/tt0265343/"> <img alt="Monsoon Wedding" class="loadlate" data-tconst="tt0265343" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BZWMzMDJhMjgtZjk2NS00ZDM4LThmOGMtOTQzYWU3N2Y4Y2M2XkEyXkFqcGdeQXVyNjQ2MjQ5NzM@._V1_UY209_CR2,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">98.</span>
<a href="/title/tt0265343/">Monsoon Wedding</a>
<span class="lister-item-year text-muted unbold">(2001)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">A</span>
<span class="ghost">|</span>
<span class="runtime">114 min</span>
<span class="ghost">|</span>
<span class="genre">
Comedy, Drama, Romance </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7.3</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0265343" id="checkbox-tt0265343" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0265343">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0265343">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0265343">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">77 </span>
Metascore
</div>
<p class="">
A stressed father, a bride-to-be with a secret, a smitten event planner, and relatives from around the world create much ado about the preparations for an arranged marriage in India.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0619762/">Mira Nair</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0787462/">Naseeruddin Shah</a>,
<a href="/name/nm0239267/">Lillete Dubey</a>,
<a href="/name/nm0156858/">Shefali Shah</a>,
<a href="/name/nm0704694/">Vijay Raaz</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="25869" name="nv">25,869</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="13,876,974" name="nv">$13.88M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0265343" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0375611">
<a href="/title/tt0375611/"> <img alt="Black" class="loadlate" data-tconst="tt0375611" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BNTI5MmE5M2UtZjIzYS00M2JjLWIwNDItYTY2ZWNiODBmYTBiXkEyXkFqcGdeQXVyNjQ2MjQ5NzM@._V1_UY209_CR2,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">99.</span>
<a href="/title/tt0375611/">Black</a>
<span class="lister-item-year text-muted unbold">(2005)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">U</span>
<span class="ghost">|</span>
<span class="runtime">122 min</span>
<span class="ghost">|</span>
<span class="genre">
Drama </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8.1</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0375611" id="checkbox-tt0375611" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0375611">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0375611">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0375611">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
The cathartic tale of a young woman who can't see, hear, or speak, and the teacher who brings a ray of light into her dark world.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0080220/">Sanjay Leela Bhansali</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0000821/">Amitabh Bachchan</a>,
<a href="/name/nm0611552/">Rani Mukerji</a>,
<a href="/name/nm1617909/">Shernaz Patel</a>,
<a href="/name/nm1754159/">Ayesha Kapoor</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="35024" name="nv">35,024</span>
<span class="ghost">|</span> <span class="text-muted">Gross:</span>
<span data-value="733,094" name="nv">$0.73M</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0375611" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0072860">
<a href="/title/tt0072860/"> <img alt="Deewaar" class="loadlate" data-tconst="tt0072860" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BMTU2NTYyOTA3NV5BMl5BanBnXkFtZTcwMDMyNjEzMQ@@._V1_UY209_CR2,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a> </div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">100.</span>
<a href="/title/tt0072860/">Deewaar</a>
<span class="lister-item-year text-muted unbold">(1975)</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">U</span>
<span class="ghost">|</span>
<span class="runtime">174 min</span>
<span class="ghost">|</span>
<span class="genre">
Action, Crime, Drama </span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0072860" id="checkbox-tt0072860" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0072860">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">0</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0072860">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void"> <svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider"></span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">1</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">2</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">3</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">4</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">5</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">6</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">7</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">8</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">9</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">10</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</span>
<span class="ipl-rating-star__rating">Rate</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0072860">
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</input></fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">0</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>Error: please try again.</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
Vijay struggles as a dockworker and eventually becomes a leading figure of the underworld, while his younger brother Ravi is an educated, upright policeman. This divide causes problems in their relationship.</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0007181/">Yash Chopra</a>
<span class="ghost">|</span>
Stars:
<a href="/name/nm0000821/">Amitabh Bachchan</a>,
<a href="/name/nm0004434/">Shashi Kapoor</a>,
<a href="/name/nm0747131/">Nirupa Roy</a>,
<a href="/name/nm0044916/">Parveen Babi</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">Votes:</span>
<span data-value="11090" name="nv">11,090</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0072860" data-watchtype="minibar"></div>
</div>
<div class="clear"></div>
</div>
</div>
<div class="row text-center lister-working hidden"></div>
<div class="footer filmosearch">
<div class="desc">
</div>
</div>
</div>
</div>
</div>
<div id="sidebar">
<!-- no content received for slot: top_rhs -->
<script>
var event = {
type: '',
slotName: 'top_rhs',
timestamp: Date.now()
};
var mediaEvent = event;
mediaEvent.type = 'no-autoplay-video-ad-detected';
if (window && window.mediaOrchestrator) {
window.mediaOrchestrator.publish('mediaPlaybackEvent', mediaEvent);
window.mediaOrchestrator.publish('noAdToLoad', event);
}
</script>
<div class="list-create-widget">
<a href="/list/create"> <button class="btn-raised btn-raised--primary" type="button">create a new list</button>
</a> <div class="create-list-description">
List your movie, TV & celebrity picks.
</div>
</div>
<div class="aux-content-widget-2 list-activity-widget">
<h3>List Activity</h3>
<div class="list-activity">
<span class="views-number-label">Views: </span>
<span class="views-number-value">90,934</span>
| in last week <span class="views-number-value">92</span>
</div>
</div>
<div class="aux-content-widget-2" id="social-share-widget">
<h3>Tell Your Friends</h3>
<div class="social">
<div class="social_networking">
<span><strong>Share</strong> this list:</span>
<a class="share_icon facebook" href="https://www.facebook.com/sharer.php?u=http%3A%2F%2Fwww.imdb.com%2Flist%2Fls056092300%2F" onclick="window.open("https://www.facebook.com/sharer.php?u=http%3A%2F%2Fwww.imdb.com%2Flist%2Fls056092300%2F", 'newWindow', 'width=626, height=436'); return false;" target="_blank" title="Share on Facebook"></a>
<a class="share_icon twitter" href="https://twitter.com/intent/tweet?text=%20-%20http%3A%2F%2Fwww.imdb.com%2Flist%2Fls056092300%2F" onclick="window.open("https://twitter.com/intent/tweet?text=%20-%20http%3A%2F%2Fwww.imdb.com%2Flist%2Fls056092300%2F", 'newWindow', 'width=815, height=436'); return false;" target="_blank" title="Share on Twitter"></a>
<a class="share_icon share_url_link" href="http://www.imdb.com/list/ls056092300/" onclick="$('div.social input[name=share-link]').show().select(); return false;" title="Share the page"></a>
</div>
<input name="share-link" readonly="" type="text" value="http://www.imdb.com/list/ls056092300/"/>
</div>
</div>
<div class="aux-content-widget-2" id="feedback-widget">
<strong>Feedback?</strong> <a href="https://help.imdb.com/article/imdb/general-information/getsatisfaction-community-access-you-re-about-to-leave-imdb-com/GP4FF3REXES9AR3P">Tell us what you think about this feature.</a>
</div>
<div class="aux-content-widget-2">
<div id="listsWidget">
<h3>
Other Lists by yashmishra91
</h3>
<div class="list-preview even">
<div class="list-preview-item-narrow">
<a href="/list/ls056092300"><img alt="list image" class="loadlate hidden" height="86" loadlate="https://m.media-amazon.com/images/M/MV5BMTU5Njc1NjkxMl5BMl5BanBnXkFtZTgwNTkzNTQwMDE@._V1_UX86_CR0,0,86,86_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/8ZhQrGnWn9cWUVQ.png" title="list image" width="86"/></a> </div>
<div class="list_name">
<strong><a href="/list/ls056092300">
100 Best Indian Films Till Date
</a></strong>
</div>
<div class="list_meta">
a list of 100 titles
</div>
<div class="clear"> </div>
</div>
<div class="see-more">
<a href="/user/ur40466907/lists">See all lists by yashmishra91</a> »
</div>
</div>
</div>
</div>
</div>
<br class="clear"/>
<br class="clear"/>
</div>
<div id="rvi-div">
<div class="recently-viewed">
<div class="header">
<div class="rhs">
<a href="#" id="clear_rvi">Clear your history</a>
</div>
<h3>Recently Viewed</h3>
</div>
<div class="items"> </div>
</div>
</div>
<!-- no content received for slot: bottom_ad -->
</div>
</div>
<script>
if (typeof uet == 'function') {
uet("bb", "desktopFooter", {wb: 1});
}
</script>
<style data-styled="true" data-styled-version="5.3.5">.jwkTjc{--ipt-base-rgb:255,255,255;--mdc-theme-ipt-base-rgb:var(--ipt-base-rgb);--ipt-base-bg:rgb(255,255,255);--mdc-theme-ipt-base-bg:var(--ipt-base-bg);--ipt-base-color:rgb(255,255,255);--mdc-theme-ipt-base-color:var(--ipt-base-color);--ipt-base-shade1-rgb:250,250,250;--mdc-theme-ipt-base-shade1-rgb:var(--ipt-base-shade1-rgb);--ipt-base-shade1-bg:rgb(250,250,250);--mdc-theme-ipt-base-shade1-bg:var(--ipt-base-shade1-bg);--ipt-base-shade1-color:rgb(250,250,250);--mdc-theme-ipt-base-shade1-color:var(--ipt-base-shade1-color);--ipt-base-shade2-rgb:240,240,240;--mdc-theme-ipt-base-shade2-rgb:var(--ipt-base-shade2-rgb);--ipt-base-shade2-bg:rgb(240,240,240);--mdc-theme-ipt-base-shade2-bg:var(--ipt-base-shade2-bg);--ipt-base-shade2-color:rgb(240,240,240);--mdc-theme-ipt-base-shade2-color:var(--ipt-base-shade2-color);--ipt-base-shade3-rgb:255,255,255;--mdc-theme-ipt-base-shade3-rgb:var(--ipt-base-shade3-rgb);--ipt-base-shade3-bg:rgb(255,255,255);--mdc-theme-ipt-base-shade3-bg:var(--ipt-base-shade3-bg);--ipt-base-shade3-color:rgb(255,255,255);--mdc-theme-ipt-base-shade3-color:var(--ipt-base-shade3-color);--ipt-on-base-rgb:0,0,0;--mdc-theme-ipt-on-base-rgb:var(--ipt-on-base-rgb);--ipt-on-base-color:rgb(0,0,0);--mdc-theme-ipt-on-base-color:var(--ipt-on-base-color);--ipt-on-base-accent1-rgb:245,197,24;--mdc-theme-ipt-on-base-accent1-rgb:var(--ipt-on-base-accent1-rgb);--ipt-on-base-accent1-color:rgb(245,197,24);--mdc-theme-ipt-on-base-accent1-color:var(--ipt-on-base-accent1-color);--ipt-on-base-accent2-rgb:14,99,190;--mdc-theme-ipt-on-base-accent2-rgb:var(--ipt-on-base-accent2-rgb);--ipt-on-base-accent2-color:rgb(14,99,190);--mdc-theme-ipt-on-base-accent2-color:var(--ipt-on-base-accent2-color);--ipt-on-base-accent3-rgb:189,36,4;--mdc-theme-ipt-on-base-accent3-rgb:var(--ipt-on-base-accent3-rgb);--ipt-on-base-accent3-color:rgb(189,36,4);--mdc-theme-ipt-on-base-accent3-color:var(--ipt-on-base-accent3-color);--ipt-on-base-accent4-rgb:0,138,0;--mdc-theme-ipt-on-base-accent4-rgb:var(--ipt-on-base-accent4-rgb);--ipt-on-base-accent4-color:rgb(0,138,0);--mdc-theme-ipt-on-base-accent4-color:var(--ipt-on-base-accent4-color);--ipt-on-base-textPrimary-opacity:0.87;--mdc-theme-ipt-on-base-textPrimary-opacity:var(--ipt-on-base-textPrimary-opacity);--ipt-on-base-textPrimary-color:rgba(0,0,0,0.87);--mdc-theme-ipt-on-base-textPrimary-color:var(--ipt-on-base-textPrimary-color);--ipt-on-base-textSecondary-opacity:0.54;--mdc-theme-ipt-on-base-textSecondary-opacity:var(--ipt-on-base-textSecondary-opacity);--ipt-on-base-textSecondary-color:rgba(0,0,0,0.54);--mdc-theme-ipt-on-base-textSecondary-color:var(--ipt-on-base-textSecondary-color);--ipt-on-base-textHint-opacity:0.38;--mdc-theme-ipt-on-base-textHint-opacity:var(--ipt-on-base-textHint-opacity);--ipt-on-base-textHint-color:rgba(0,0,0,0.38);--mdc-theme-ipt-on-base-textHint-color:var(--ipt-on-base-textHint-color);--ipt-on-base-textDisabled-opacity:0.38;--mdc-theme-ipt-on-base-textDisabled-opacity:var(--ipt-on-base-textDisabled-opacity);--ipt-on-base-textDisabled-color:rgba(0,0,0,0.38);--mdc-theme-ipt-on-base-textDisabled-color:var(--ipt-on-base-textDisabled-color);--ipt-on-base-textIcon-opacity:0.5;--mdc-theme-ipt-on-base-textIcon-opacity:var(--ipt-on-base-textIcon-opacity);--ipt-on-base-textIcon-color:rgba(0,0,0,0.5);--mdc-theme-ipt-on-base-textIcon-color:var(--ipt-on-base-textIcon-color);--ipt-base-border-opacity:0.12;--mdc-theme-ipt-base-border-opacity:var(--ipt-base-border-opacity);--ipt-base-hover-opacity:0.08;--mdc-theme-ipt-base-hover-opacity:var(--ipt-base-hover-opacity);--ipt-base-pressed-opacity:0.16;--mdc-theme-ipt-base-pressed-opacity:var(--ipt-base-pressed-opacity);--ipt-base-stripes-opacity:0.04;--mdc-theme-ipt-base-stripes-opacity:var(--ipt-base-stripes-opacity);--ipt-base-border-color:rgba(0,0,0,0.12);--mdc-theme-ipt-base-border-color:var(--ipt-base-border-color);--ipt-base-hover-color:rgba(0,0,0,0.08);--mdc-theme-ipt-base-hover-color:var(--ipt-base-hover-color);--ipt-base-pressed-color:rgba(0,0,0,0.16);--mdc-theme-ipt-base-pressed-color:var(--ipt-base-pressed-color);--ipt-base-stripes-color:rgba(0,0,0,0.04);--mdc-theme-ipt-base-stripes-color:var(--ipt-base-stripes-color);--ipt-baseAlt-rgb:0,0,0;--mdc-theme-ipt-baseAlt-rgb:var(--ipt-baseAlt-rgb);--ipt-baseAlt-bg:rgb(0,0,0);--mdc-theme-ipt-baseAlt-bg:var(--ipt-baseAlt-bg);--ipt-baseAlt-color:rgb(0,0,0);--mdc-theme-ipt-baseAlt-color:var(--ipt-baseAlt-color);--ipt-baseAlt-shade1-rgb:31,31,31;--mdc-theme-ipt-baseAlt-shade1-rgb:var(--ipt-baseAlt-shade1-rgb);--ipt-baseAlt-shade1-bg:rgb(31,31,31);--mdc-theme-ipt-baseAlt-shade1-bg:var(--ipt-baseAlt-shade1-bg);--ipt-baseAlt-shade1-color:rgb(31,31,31);--mdc-theme-ipt-baseAlt-shade1-color:var(--ipt-baseAlt-shade1-color);--ipt-baseAlt-shade2-rgb:26,26,26;--mdc-theme-ipt-baseAlt-shade2-rgb:var(--ipt-baseAlt-shade2-rgb);--ipt-baseAlt-shade2-bg:rgb(26,26,26);--mdc-theme-ipt-baseAlt-shade2-bg:var(--ipt-baseAlt-shade2-bg);--ipt-baseAlt-shade2-color:rgb(26,26,26);--mdc-theme-ipt-baseAlt-shade2-color:var(--ipt-baseAlt-shade2-color);--ipt-baseAlt-shade3-rgb:18,18,18;--mdc-theme-ipt-baseAlt-shade3-rgb:var(--ipt-baseAlt-shade3-rgb);--ipt-baseAlt-shade3-bg:rgb(18,18,18);--mdc-theme-ipt-baseAlt-shade3-bg:var(--ipt-baseAlt-shade3-bg);--ipt-baseAlt-shade3-color:rgb(18,18,18);--mdc-theme-ipt-baseAlt-shade3-color:var(--ipt-baseAlt-shade3-color);--ipt-on-baseAlt-rgb:255,255,255;--mdc-theme-ipt-on-baseAlt-rgb:var(--ipt-on-baseAlt-rgb);--ipt-on-baseAlt-color:rgb(255,255,255);--mdc-theme-ipt-on-baseAlt-color:var(--ipt-on-baseAlt-color);--ipt-on-baseAlt-accent1-rgb:245,197,24;--mdc-theme-ipt-on-baseAlt-accent1-rgb:var(--ipt-on-baseAlt-accent1-rgb);--ipt-on-baseAlt-accent1-color:rgb(245,197,24);--mdc-theme-ipt-on-baseAlt-accent1-color:var(--ipt-on-baseAlt-accent1-color);--ipt-on-baseAlt-accent2-rgb:87,153,239;--mdc-theme-ipt-on-baseAlt-accent2-rgb:var(--ipt-on-baseAlt-accent2-rgb);--ipt-on-baseAlt-accent2-color:rgb(87,153,239);--mdc-theme-ipt-on-baseAlt-accent2-color:var(--ipt-on-baseAlt-accent2-color);--ipt-on-baseAlt-accent3-rgb:251,60,60;--mdc-theme-ipt-on-baseAlt-accent3-rgb:var(--ipt-on-baseAlt-accent3-rgb);--ipt-on-baseAlt-accent3-color:rgb(251,60,60);--mdc-theme-ipt-on-baseAlt-accent3-color:var(--ipt-on-baseAlt-accent3-color);--ipt-on-baseAlt-accent4-rgb:103,173,75;--mdc-theme-ipt-on-baseAlt-accent4-rgb:var(--ipt-on-baseAlt-accent4-rgb);--ipt-on-baseAlt-accent4-color:rgb(103,173,75);--mdc-theme-ipt-on-baseAlt-accent4-color:var(--ipt-on-baseAlt-accent4-color);--ipt-on-baseAlt-textPrimary-opacity:1;--mdc-theme-ipt-on-baseAlt-textPrimary-opacity:var(--ipt-on-baseAlt-textPrimary-opacity);--ipt-on-baseAlt-textPrimary-color:rgba(255,255,255,1);--mdc-theme-ipt-on-baseAlt-textPrimary-color:var(--ipt-on-baseAlt-textPrimary-color);--ipt-on-baseAlt-textSecondary-opacity:0.7;--mdc-theme-ipt-on-baseAlt-textSecondary-opacity:var(--ipt-on-baseAlt-textSecondary-opacity);--ipt-on-baseAlt-textSecondary-color:rgba(255,255,255,0.7);--mdc-theme-ipt-on-baseAlt-textSecondary-color:var(--ipt-on-baseAlt-textSecondary-color);--ipt-on-baseAlt-textHint-opacity:0.5;--mdc-theme-ipt-on-baseAlt-textHint-opacity:var(--ipt-on-baseAlt-textHint-opacity);--ipt-on-baseAlt-textHint-color:rgba(255,255,255,0.5);--mdc-theme-ipt-on-baseAlt-textHint-color:var(--ipt-on-baseAlt-textHint-color);--ipt-on-baseAlt-textDisabled-opacity:0.5;--mdc-theme-ipt-on-baseAlt-textDisabled-opacity:var(--ipt-on-baseAlt-textDisabled-opacity);--ipt-on-baseAlt-textDisabled-color:rgba(255,255,255,0.5);--mdc-theme-ipt-on-baseAlt-textDisabled-color:var(--ipt-on-baseAlt-textDisabled-color);--ipt-on-baseAlt-textIcon-opacity:1;--mdc-theme-ipt-on-baseAlt-textIcon-opacity:var(--ipt-on-baseAlt-textIcon-opacity);--ipt-on-baseAlt-textIcon-color:rgba(255,255,255,1);--mdc-theme-ipt-on-baseAlt-textIcon-color:var(--ipt-on-baseAlt-textIcon-color);--ipt-baseAlt-border-opacity:0.2;--mdc-theme-ipt-baseAlt-border-opacity:var(--ipt-baseAlt-border-opacity);--ipt-baseAlt-hover-opacity:0.08;--mdc-theme-ipt-baseAlt-hover-opacity:var(--ipt-baseAlt-hover-opacity);--ipt-baseAlt-pressed-opacity:0.32;--mdc-theme-ipt-baseAlt-pressed-opacity:var(--ipt-baseAlt-pressed-opacity);--ipt-baseAlt-stripes-opacity:0.12;--mdc-theme-ipt-baseAlt-stripes-opacity:var(--ipt-baseAlt-stripes-opacity);--ipt-baseAlt-border-color:rgba(255,255,255,0.2);--mdc-theme-ipt-baseAlt-border-color:var(--ipt-baseAlt-border-color);--ipt-baseAlt-hover-color:rgba(255,255,255,0.08);--mdc-theme-ipt-baseAlt-hover-color:var(--ipt-baseAlt-hover-color);--ipt-baseAlt-pressed-color:rgba(255,255,255,0.32);--mdc-theme-ipt-baseAlt-pressed-color:var(--ipt-baseAlt-pressed-color);--ipt-baseAlt-stripes-color:rgba(255,255,255,0.12);--mdc-theme-ipt-baseAlt-stripes-color:var(--ipt-baseAlt-stripes-color);--ipt-accent1-rgb:245,197,24;--mdc-theme-ipt-accent1-rgb:var(--ipt-accent1-rgb);--ipt-accent1-bg:rgb(245,197,24);--mdc-theme-ipt-accent1-bg:var(--ipt-accent1-bg);--ipt-accent1-color:rgb(245,197,24);--mdc-theme-ipt-accent1-color:var(--ipt-accent1-color);--ipt-on-accent1-rgb:0,0,0;--mdc-theme-ipt-on-accent1-rgb:var(--ipt-on-accent1-rgb);--ipt-on-accent1-color:rgb(0,0,0);--mdc-theme-ipt-on-accent1-color:var(--ipt-on-accent1-color);--ipt-accent2-rgb:14,99,190;--mdc-theme-ipt-accent2-rgb:var(--ipt-accent2-rgb);--ipt-accent2-bg:rgb(14,99,190);--mdc-theme-ipt-accent2-bg:var(--ipt-accent2-bg);--ipt-accent2-color:rgb(14,99,190);--mdc-theme-ipt-accent2-color:var(--ipt-accent2-color);--ipt-on-accent2-rgb:255,255,255;--mdc-theme-ipt-on-accent2-rgb:var(--ipt-on-accent2-rgb);--ipt-on-accent2-color:rgb(255,255,255);--mdc-theme-ipt-on-accent2-color:var(--ipt-on-accent2-color);--ipt-accent3-rgb:189,36,4;--mdc-theme-ipt-accent3-rgb:var(--ipt-accent3-rgb);--ipt-accent3-bg:rgb(189,36,4);--mdc-theme-ipt-accent3-bg:var(--ipt-accent3-bg);--ipt-accent3-color:rgb(189,36,4);--mdc-theme-ipt-accent3-color:var(--ipt-accent3-color);--ipt-on-accent3-rgb:255,255,255;--mdc-theme-ipt-on-accent3-rgb:var(--ipt-on-accent3-rgb);--ipt-on-accent3-color:rgb(255,255,255);--mdc-theme-ipt-on-accent3-color:var(--ipt-on-accent3-color);--ipt-accent4-rgb:0,114,7;--mdc-theme-ipt-accent4-rgb:var(--ipt-accent4-rgb);--ipt-accent4-bg:rgb(0,114,7);--mdc-theme-ipt-accent4-bg:var(--ipt-accent4-bg);--ipt-accent4-color:rgb(0,114,7);--mdc-theme-ipt-accent4-color:var(--ipt-accent4-color);--ipt-on-accent4-rgb:255,255,255;--mdc-theme-ipt-on-accent4-rgb:var(--ipt-on-accent4-rgb);--ipt-on-accent4-color:rgb(255,255,255);--mdc-theme-ipt-on-accent4-color:var(--ipt-on-accent4-color);--mdc-theme-primary:var(--ipt-baseAlt-color);--mdc-theme-secondary:var(--ipt-accent1-color);--mdc-theme-background:var(--ipt-base-color);--mdc-theme-surface:var(--ipt-base-shade1-color);--mdc-theme-on-primary:var(--ipt-on-baseAlt-color);--mdc-theme-on-secondary:var(--ipt-on-accent1-color);--mdc-theme-on-surface:var(--ipt-on-base-color);--mdc-theme-text-primary-on-background:var(--ipt-on-base-textPrimary-color);--mdc-theme-text-secondary-on-background:var(--ipt-on-base-textSecondary-color);--mdc-theme-text-hint-on-background:var(--ipt-on-base-textHint-color);--mdc-theme-text-disabled-on-background:var(--ipt-on-base-textDisabled-color);--mdc-theme-text-icon-on-background:var(--ipt-on-base-textIcon-color);--mdc-theme-text-primary-on-light:var(--ipt-on-base-textPrimary-color);--mdc-theme-text-secondary-on-light:var(--ipt-on-base-textSecondary-color);--mdc-theme-text-hint-on-light:var(--ipt-on-base-textHint-color);--mdc-theme-text-disabled-on-light:var(--ipt-on-base-textDisabled-color);--mdc-theme-text-icon-on-light:var(--ipt-on-base-textIcon-color);--mdc-theme-text-primary-on-dark:var(--ipt-on-baseAlt-textPrimary-color);--mdc-theme-text-secondary-on-dark:var(--ipt-on-baseAlt-textSecondary-color);--mdc-theme-text-hint-on-dark:var(--ipt-on-baseAlt-textHint-color);--mdc-theme-text-disabled-on-dark:var(--ipt-on-baseAlt-textDisabled-color);--mdc-theme-text-icon-on-dark:var(--ipt-on-baseAlt-textIcon-color);background:rgb(0,0,0);background:var(--ipt-baseAlt-bg,rgb(0,0,0));color:rgb(255,255,255);color:var(--ipt-on-baseAlt-color,rgb(255,255,255));font-family:'Roboto','Helvetica','Arial',sans-serif;font-family:var(--ipt-font-family);font-size:1rem;font-size:var(--ipt-type-body-size,1rem);font-weight:400;font-weight:var(--ipt-type-body-weight,400);-webkit-letter-spacing:.03125em;-moz-letter-spacing:.03125em;-ms-letter-spacing:.03125em;letter-spacing:.03125em;-webkit-letter-spacing:var(--ipt-type-body-letterSpacing,.03125em);-moz-letter-spacing:var(--ipt-type-body-letterSpacing,.03125em);-ms-letter-spacing:var(--ipt-type-body-letterSpacing,.03125em);letter-spacing:var(--ipt-type-body-letterSpacing,.03125em);line-height:1.5rem;line-height:var(--ipt-type-body-lineHeight,1.5rem);text-transform:none;text-transform:var(--ipt-type-body-textTransform,none);margin-top:1rem;padding:1rem 0;text-align:center;}/*!sc*/
.jwkTjc .footer__app{background:rgba(255,255,255,.1);background:rgba(var(--ipt-on-baseAlt-rgb),.1);margin-bottom:.5rem;padding:1rem 0;}/*!sc*/
.jwkTjc .footer__socials{margin:16px 0;}/*!sc*/
.jwkTjc .footer__logo{min-height:40px;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin:16px;}/*!sc*/
.jwkTjc .footer__copyright{color:rgba(255,255,255,0.7);color:var(--ipt-on-baseAlt-textSecondary-color,rgba(255,255,255,0.7));font-family:'Roboto','Helvetica','Arial',sans-serif;font-family:var(--ipt-font-family);font-size:.75rem;font-size:var(--ipt-type-copyright-size,.75rem);font-weight:400;font-weight:var(--ipt-type-copyright-weight,400);-webkit-letter-spacing:.03333em;-moz-letter-spacing:.03333em;-ms-letter-spacing:.03333em;letter-spacing:.03333em;-webkit-letter-spacing:var(--ipt-type-copyright-letterSpacing,.03333em);-moz-letter-spacing:var(--ipt-type-copyright-letterSpacing,.03333em);-ms-letter-spacing:var(--ipt-type-copyright-letterSpacing,.03333em);letter-spacing:var(--ipt-type-copyright-letterSpacing,.03333em);line-height:1rem;line-height:var(--ipt-type-copyright-lineHeight,1rem);text-transform:none;text-transform:var(--ipt-type-copyright-textTransform,none);margin:.5em 0;}/*!sc*/
.jwkTjc .footer__links{max-width:360px;}/*!sc*/
.jwkTjc .footer__linksRow{display:inline;}/*!sc*/
.jwkTjc .footer__linksRow li{margin-left:0.5rem;margin-right:0.5rem;}/*!sc*/
.jwkTjc .footerLink--wideScreen{display:none;}/*!sc*/
@media screen and (min-width:600px){.jwkTjc{margin-top:0;}.jwkTjc .footer__links{max-width:600px;}.jwkTjc .footer__linksRow{display:inline;}}/*!sc*/
.jwkTjc .footer__sign-in-button{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;}/*!sc*/
.jwkTjc .footer__sign-in-mobile-button{display:none;}/*!sc*/
@media screen and (max-width:1024px){.jwkTjc .footer__app{margin:0;}.jwkTjc .footer__sign-in{background:rgba( 255,255,255, 0.06 );padding:1rem 0;}.jwkTjc .footer__sign-in-button{display:none;}.jwkTjc .footer__sign-in-mobile-button{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;}}/*!sc*/
@media screen and (min-width:1024px){.jwkTjc .footer__links{max-width:1024px;}.jwkTjc .footer__app{display:none;}.jwkTjc .footerLink--wideScreen{display:inline-block;}.jwkTjc .footerLink--smallScreen{display:none;}.jwkTjc .footer__sign-in{background:rgb(0,0,0);background:var(--ipt-baseAlt-bg,rgb(0,0,0));padding:0;}.jwkTjc .footer__sign-in-button{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;}.jwkTjc .footer__sign-in-mobile-button{display:none;}}/*!sc*/
.jwkTjc .footerLink--trustarc a:hover{color:inherit;-webkit-text-decoration:underline;text-decoration:underline;}/*!sc*/
data-styled.g1[id="sc-bczRLJ"]{content:"jwkTjc,"}/*!sc*/
</style>
<section id="imdb-bmo-footer"><footer class="imdb-footer sc-bczRLJ jwkTjc footer"><div class="footer__app"><div class="ipc-page-content-container ipc-page-content-container--center" role="presentation"><a aria-disabled="false" class="ipc-button ipc-button--double-padding ipc-button--center-align-content ipc-button--default-height ipc-button--core-accent1 ipc-button--theme-baseAlt imdb-footer__open-in-app-button" href="https://slyb.app.link/SKdyQ6A449" role="button" tabindex="0"><div class="ipc-button__text">Get the IMDb App</div></a></div></div><div class="footer__sign-in"><div class="ipc-page-content-container ipc-page-content-container--center" role="presentation"><a aria-disabled="false" class="ipc-button ipc-button--double-padding ipc-button--center-align-content ipc-button--default-height ipc-button--core-accent1 ipc-button--theme-baseAlt footer__sign-in-button" href="/registration/signin?ref_=reg_ftr" role="button" tabindex="0"><div class="ipc-button__text">Sign in for more access</div></a><a aria-disabled="false" class="ipc-button ipc-button--double-padding ipc-button--center-align-content ipc-button--default-height ipc-button--core-baseAlt ipc-button--theme-baseAlt ipc-button--on-accent2 ipc-secondary-button footer__sign-in-mobile-button" href="/registration/signin?ref_=reg_ftr" role="button" tabindex="0"><div class="ipc-button__text">Sign in for more access</div></a></div></div><div class="ipc-page-content-container ipc-page-content-container--center footer__links" role="presentation"><div class="imdb-footer__links"><div class="footer__socials"><ul class="ipc-inline-list footer__linksRow baseAlt" role="presentation"><li class="ipc-inline-list__item" role="presentation"><a aria-disabled="false" aria-label="Facebook" class="ipc-icon-link ipc-icon-link--baseAlt ipc-icon-link--onBase" href="https://facebook.com/imdb" rel="nofollow noopener" role="button" tabindex="0" target="_blank" title="Facebook"><svg class="ipc-icon ipc-icon--facebook" fill="currentColor" height="24" id="iconContext-facebook" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M20.896 2H3.104C2.494 2 2 2.494 2 3.104v17.792C2 21.506 2.494 22 3.104 22h9.579v-7.745h-2.607v-3.018h2.607V9.01c0-2.584 1.577-3.99 3.882-3.99 1.104 0 2.052.082 2.329.119v2.7h-1.598c-1.254 0-1.496.595-1.496 1.47v1.927h2.989l-.39 3.018h-2.6V22h5.097c.61 0 1.104-.494 1.104-1.104V3.104C22 2.494 21.506 2 20.896 2"></path></svg></a></li><li class="ipc-inline-list__item" role="presentation"><a aria-disabled="false" aria-label="Instagram" class="ipc-icon-link ipc-icon-link--baseAlt ipc-icon-link--onBase" href="https://instagram.com/imdb" rel="nofollow noopener" role="button" tabindex="0" target="_blank" title="Instagram"><svg class="ipc-icon ipc-icon--instagram" fill="currentColor" height="24" id="iconContext-instagram" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M11.997 2.04c-2.715 0-3.056.011-4.122.06-1.064.048-1.79.217-2.426.463a4.901 4.901 0 0 0-1.771 1.151 4.89 4.89 0 0 0-1.153 1.767c-.247.635-.416 1.36-.465 2.422C2.011 8.967 2 9.307 2 12.017s.011 3.049.06 4.113c.049 1.062.218 1.787.465 2.422a4.89 4.89 0 0 0 1.153 1.767 4.901 4.901 0 0 0 1.77 1.15c.636.248 1.363.416 2.427.465 1.066.048 1.407.06 4.122.06s3.055-.012 4.122-.06c1.064-.049 1.79-.217 2.426-.464a4.901 4.901 0 0 0 1.77-1.15 4.89 4.89 0 0 0 1.154-1.768c.247-.635.416-1.36.465-2.422.048-1.064.06-1.404.06-4.113 0-2.71-.012-3.05-.06-4.114-.049-1.062-.218-1.787-.465-2.422a4.89 4.89 0 0 0-1.153-1.767 4.901 4.901 0 0 0-1.77-1.15c-.637-.247-1.363-.416-2.427-.464-1.067-.049-1.407-.06-4.122-.06m0 1.797c2.67 0 2.985.01 4.04.058.974.045 1.503.207 1.856.344.466.181.8.397 1.15.746.349.35.566.682.747 1.147.137.352.3.88.344 1.853.048 1.052.058 1.368.058 4.032 0 2.664-.01 2.98-.058 4.031-.044.973-.207 1.501-.344 1.853a3.09 3.09 0 0 1-.748 1.147c-.35.35-.683.565-1.15.746-.352.137-.88.3-1.856.344-1.054.048-1.37.058-4.04.058-2.669 0-2.985-.01-4.039-.058-.974-.044-1.504-.207-1.856-.344a3.098 3.098 0 0 1-1.15-.746 3.09 3.09 0 0 1-.747-1.147c-.137-.352-.3-.88-.344-1.853-.049-1.052-.059-1.367-.059-4.031 0-2.664.01-2.98.059-4.032.044-.973.207-1.501.344-1.853a3.09 3.09 0 0 1 .748-1.147c.35-.349.682-.565 1.149-.746.352-.137.882-.3 1.856-.344 1.054-.048 1.37-.058 4.04-.058"></path><path d="M11.997 15.342a3.329 3.329 0 0 1-3.332-3.325 3.329 3.329 0 0 1 3.332-3.326 3.329 3.329 0 0 1 3.332 3.326 3.329 3.329 0 0 1-3.332 3.325m0-8.449a5.128 5.128 0 0 0-5.134 5.124 5.128 5.128 0 0 0 5.134 5.123 5.128 5.128 0 0 0 5.133-5.123 5.128 5.128 0 0 0-5.133-5.124m6.536-.203c0 .662-.537 1.198-1.2 1.198a1.198 1.198 0 1 1 1.2-1.197"></path></svg></a></li><li class="ipc-inline-list__item" role="presentation"><a aria-disabled="false" aria-label="Twitch" class="ipc-icon-link ipc-icon-link--baseAlt ipc-icon-link--onBase" href="https://twitch.tv/IMDb" rel="nofollow noopener" role="button" tabindex="0" target="_blank" title="Twitch"><svg class="ipc-icon ipc-icon--twitch" fill="currentColor" height="24" id="iconContext-twitch" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M3.406 2h18.596v12.814l-5.469 5.47H12.47L9.813 22.94H7.001v-2.657H2V5.594L3.406 2zm16.721 11.876v-10H5.125v13.126h4.22v2.656L12 17.002h5l3.126-3.126z"></path><path d="M17.002 7.47v5.469h-1.875v-5.47zM12.001 7.47v5.469h-1.875v-5.47z"></path></svg></a></li><li class="ipc-inline-list__item" role="presentation"><a aria-disabled="false" aria-label="Twitter" class="ipc-icon-link ipc-icon-link--baseAlt ipc-icon-link--onBase" href="https://twitter.com/imdb" rel="nofollow noopener" role="button" tabindex="0" target="_blank" title="Twitter"><svg class="ipc-icon ipc-icon--twitter" fill="currentColor" height="24" id="iconContext-twitter" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M8.29 19.936c7.547 0 11.675-6.13 11.675-11.446 0-.175-.004-.348-.012-.52A8.259 8.259 0 0 0 22 5.886a8.319 8.319 0 0 1-2.356.633 4.052 4.052 0 0 0 1.804-2.225c-.793.46-1.67.796-2.606.976A4.138 4.138 0 0 0 15.847 4c-2.266 0-4.104 1.802-4.104 4.023 0 .315.036.622.107.917a11.728 11.728 0 0 1-8.458-4.203 3.949 3.949 0 0 0-.556 2.022 4 4 0 0 0 1.826 3.348 4.136 4.136 0 0 1-1.858-.503l-.001.051c0 1.949 1.415 3.575 3.292 3.944a4.193 4.193 0 0 1-1.853.07c.522 1.597 2.037 2.76 3.833 2.793a8.34 8.34 0 0 1-5.096 1.722A8.51 8.51 0 0 1 2 18.13a11.785 11.785 0 0 0 6.29 1.807"></path></svg></a></li><li class="ipc-inline-list__item" role="presentation"><a aria-disabled="false" aria-label="YouTube" class="ipc-icon-link ipc-icon-link--baseAlt ipc-icon-link--onBase" href="https://youtube.com/imdb/" rel="nofollow noopener" role="button" tabindex="0" target="_blank" title="YouTube"><svg class="ipc-icon ipc-icon--youtube" fill="currentColor" height="24" id="iconContext-youtube" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M9.955 14.955v-5.91L15.182 12l-5.227 2.955zm11.627-7.769a2.505 2.505 0 0 0-1.768-1.768C18.254 5 12 5 12 5s-6.254 0-7.814.418c-.86.23-1.538.908-1.768 1.768C2 8.746 2 12 2 12s0 3.254.418 4.814c.23.86.908 1.538 1.768 1.768C5.746 19 12 19 12 19s6.254 0 7.814-.418a2.505 2.505 0 0 0 1.768-1.768C22 15.254 22 12 22 12s0-3.254-.418-4.814z"></path></svg></a></li></ul></div><div><ul class="ipc-inline-list footer__linksRow baseAlt" role="presentation"><li class="ipc-inline-list__item footerLink--wideScreen" role="presentation"><a class="ipc-link ipc-link--baseAlt ipc-link--touch-target ipc-link--inherit-color" href="https://slyb.app.link/SKdyQ6A449" tabindex="0" target="_blank">Get the IMDb App<svg class="ipc-icon ipc-icon--launch-inline ipc-icon--inline ipc-link__launch-icon" fill="currentColor" height="24" id="iconContext-launch-inline" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M21.6 21.6H2.4V2.4h7.2V0H0v24h24v-9.6h-2.4v7.2zM14.4 0v2.4h4.8L7.195 14.49l2.4 2.4L21.6 4.8v4.8H24V0h-9.6z"></path></svg></a></li><li class="ipc-inline-list__item" role="presentation"><a class="ipc-link ipc-link--baseAlt ipc-link--touch-target ipc-link--inherit-color" href="https://help.imdb.com/imdb" tabindex="0" target="_blank">Help<svg class="ipc-icon ipc-icon--launch-inline ipc-icon--inline ipc-link__launch-icon" fill="currentColor" height="24" id="iconContext-launch-inline" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M21.6 21.6H2.4V2.4h7.2V0H0v24h24v-9.6h-2.4v7.2zM14.4 0v2.4h4.8L7.195 14.49l2.4 2.4L21.6 4.8v4.8H24V0h-9.6z"></path></svg></a></li><li class="ipc-inline-list__item" role="presentation"><a class="ipc-link ipc-link--baseAlt ipc-link--touch-target ipc-link--inherit-color" href="https://help.imdb.com/article/imdb/general-information/imdb-site-index/GNCX7BHNSPBTFALQ#so" tabindex="0" target="_blank">Site Index<svg class="ipc-icon ipc-icon--launch-inline ipc-icon--inline ipc-link__launch-icon" fill="currentColor" height="24" id="iconContext-launch-inline" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M21.6 21.6H2.4V2.4h7.2V0H0v24h24v-9.6h-2.4v7.2zM14.4 0v2.4h4.8L7.195 14.49l2.4 2.4L21.6 4.8v4.8H24V0h-9.6z"></path></svg></a></li><li class="ipc-inline-list__item" role="presentation"><a class="ipc-link ipc-link--baseAlt ipc-link--touch-target ipc-link--inherit-color" href="https://pro.imdb.com?ref_=cons_tf_pro&rf=cons_tf_pro" tabindex="0" target="_blank">IMDbPro<svg class="ipc-icon ipc-icon--launch-inline ipc-icon--inline ipc-link__launch-icon" fill="currentColor" height="24" id="iconContext-launch-inline" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M21.6 21.6H2.4V2.4h7.2V0H0v24h24v-9.6h-2.4v7.2zM14.4 0v2.4h4.8L7.195 14.49l2.4 2.4L21.6 4.8v4.8H24V0h-9.6z"></path></svg></a></li><li class="ipc-inline-list__item" role="presentation"><a class="ipc-link ipc-link--baseAlt ipc-link--touch-target ipc-link--inherit-color" href="https://www.boxofficemojo.com" tabindex="0" target="_blank">Box Office Mojo<svg class="ipc-icon ipc-icon--launch-inline ipc-icon--inline ipc-link__launch-icon" fill="currentColor" height="24" id="iconContext-launch-inline" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M21.6 21.6H2.4V2.4h7.2V0H0v24h24v-9.6h-2.4v7.2zM14.4 0v2.4h4.8L7.195 14.49l2.4 2.4L21.6 4.8v4.8H24V0h-9.6z"></path></svg></a></li><li class="ipc-inline-list__item" role="presentation"><a class="ipc-link ipc-link--baseAlt ipc-link--touch-target ipc-link--inherit-color" href="https://developer.imdb.com/" tabindex="0" target="_blank">IMDb Developer<svg class="ipc-icon ipc-icon--launch-inline ipc-icon--inline ipc-link__launch-icon" fill="currentColor" height="24" id="iconContext-launch-inline" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M21.6 21.6H2.4V2.4h7.2V0H0v24h24v-9.6h-2.4v7.2zM14.4 0v2.4h4.8L7.195 14.49l2.4 2.4L21.6 4.8v4.8H24V0h-9.6z"></path></svg></a></li></ul></div><div><ul class="ipc-inline-list footer__linksRow baseAlt" role="presentation"><li class="ipc-inline-list__item" role="presentation"><a class="ipc-link ipc-link--baseAlt ipc-link--touch-target ipc-link--inherit-color" href="https://www.imdb.com/pressroom/?ref_=ft_pr" tabindex="0">Press Room</a></li><li class="ipc-inline-list__item" role="presentation"><a class="ipc-link ipc-link--baseAlt ipc-link--touch-target ipc-link--inherit-color" href="https://advertising.amazon.com/resources/ad-specs/imdb/" tabindex="0" target="_blank">Advertising<svg class="ipc-icon ipc-icon--launch-inline ipc-icon--inline ipc-link__launch-icon" fill="currentColor" height="24" id="iconContext-launch-inline" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M21.6 21.6H2.4V2.4h7.2V0H0v24h24v-9.6h-2.4v7.2zM14.4 0v2.4h4.8L7.195 14.49l2.4 2.4L21.6 4.8v4.8H24V0h-9.6z"></path></svg></a></li><li class="ipc-inline-list__item" role="presentation"><a class="ipc-link ipc-link--baseAlt ipc-link--touch-target ipc-link--inherit-color" href="https://www.amazon.jobs/en/teams/imdb" tabindex="0" target="_blank">Jobs<svg class="ipc-icon ipc-icon--launch-inline ipc-icon--inline ipc-link__launch-icon" fill="currentColor" height="24" id="iconContext-launch-inline" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M21.6 21.6H2.4V2.4h7.2V0H0v24h24v-9.6h-2.4v7.2zM14.4 0v2.4h4.8L7.195 14.49l2.4 2.4L21.6 4.8v4.8H24V0h-9.6z"></path></svg></a></li><li class="ipc-inline-list__item" role="presentation"><a class="ipc-link ipc-link--baseAlt ipc-link--touch-target ipc-link--inherit-color" href="/conditions?ref_=ft_cou" tabindex="0">Conditions of Use</a></li><li class="ipc-inline-list__item" role="presentation"><a class="ipc-link ipc-link--baseAlt ipc-link--touch-target ipc-link--inherit-color" href="/privacy?ref_=ft_pvc" tabindex="0">Privacy Policy</a></li><li class="ipc-inline-list__item" role="presentation"><a class="ipc-link ipc-link--baseAlt ipc-link--touch-target ipc-link--inherit-color" href="https://www.amazon.com/b/?&node=5160028011" tabindex="0" target="_blank">Interest-Based Ads<svg class="ipc-icon ipc-icon--launch-inline ipc-icon--inline ipc-link__launch-icon" fill="currentColor" height="24" id="iconContext-launch-inline" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M21.6 21.6H2.4V2.4h7.2V0H0v24h24v-9.6h-2.4v7.2zM14.4 0v2.4h4.8L7.195 14.49l2.4 2.4L21.6 4.8v4.8H24V0h-9.6z"></path></svg></a></li><li class="ipc-inline-list__item" role="presentation"><div class="footerLink--trustarc" id="teconsent"></div></li></ul></div></div><div class="imdb-footer__logo footer__logo"><svg aria-label="IMDb, an Amazon company" height="18" width="160" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><title>IMDb, an Amazon company</title><defs><path d="M26.707 2.45c-3.227 2.374-7.906 3.637-11.935 3.637C9.125 6.087 4.04 4.006.193.542-.11.27.161-.101.523.109 4.675 2.517 9.81 3.968 15.111 3.968c3.577 0 7.51-.74 11.127-2.27.546-.23 1.003.358.47.752z" id="ftr__a"></path><path d="M4.113 1.677C3.7 1.15 1.385 1.427.344 1.552c-.315.037-.364-.237-.08-.436C2.112-.178 5.138.196 5.49.629c.354.437-.093 3.462-1.824 4.906-.266.222-.52.104-.401-.19.39-.97 1.261-3.14.848-3.668z" id="ftr__c"></path><path d="M.435 1.805V.548A.311.311 0 0 1 .755.23l5.65-.001c.181 0 .326.13.326.317v1.078c-.002.181-.154.417-.425.791L3.378 6.582c1.087-.026 2.236.137 3.224.69.222.125.282.309.3.49v1.342c0 .185-.203.398-.417.287-1.74-.908-4.047-1.008-5.97.011-.197.104-.403-.107-.403-.292V7.835c0-.204.004-.552.21-.863l3.392-4.85H.761a.314.314 0 0 1-.326-.317z" id="ftr__e"></path><path d="M2.247 9.655H.528a.323.323 0 0 1-.307-.29L.222.569C.222.393.37.253.554.253h1.601a.323.323 0 0 1 .313.295v1.148h.031C2.917.586 3.703.067 4.762.067c1.075 0 1.75.518 2.23 1.629C7.41.586 8.358.067 9.369.067c.722 0 1.508.296 1.99.963.545.74.433 1.813.433 2.757l-.002 5.551a.324.324 0 0 1-.331.317H9.74a.321.321 0 0 1-.308-.316l-.001-4.663c0-.37.032-1.296-.048-1.647-.128-.593-.514-.76-1.011-.76-.418 0-.85.278-1.027.722-.177.445-.161 1.185-.161 1.685v4.662a.323.323 0 0 1-.331.317H5.137a.322.322 0 0 1-.31-.316l-.001-4.663c0-.981.16-2.424-1.059-2.424-1.236 0-1.188 1.406-1.188 2.424v4.662a.324.324 0 0 1-.332.317z" id="ftr__g"></path><path d="M4.037.067c2.551 0 3.931 2.184 3.931 4.96 0 2.684-1.524 4.814-3.931 4.814C1.533 9.84.169 7.656.169 4.935.17 2.195 1.55.067 4.037.067zm.015 1.796c-1.267 0-1.347 1.721-1.347 2.795 0 1.073-.016 3.368 1.332 3.368 1.332 0 1.395-1.851 1.395-2.98 0-.74-.031-1.629-.256-2.332-.193-.61-.578-.851-1.124-.851z" id="ftr__i"></path><path d="M2.206 9.655H.493a.321.321 0 0 1-.308-.316L.182.54a.325.325 0 0 1 .33-.287h1.595c.15.007.274.109.305.245v1.346h.033C2.926.641 3.6.067 4.788.067c.77 0 1.524.277 2.006 1.037.449.703.449 1.887.449 2.739v5.535a.325.325 0 0 1-.33.277H5.19a.324.324 0 0 1-.306-.277V4.602c0-.962.113-2.37-1.075-2.37-.418 0-.803.278-.995.704-.24.537-.273 1.074-.273 1.666v4.736a.328.328 0 0 1-.335.317z" id="ftr__k"></path><path d="M8.314 8.295c.11.156.134.341-.006.455-.35.294-.974.834-1.318 1.139l-.004-.004a.357.357 0 0 1-.406.04c-.571-.473-.673-.692-.986-1.142-.943.958-1.611 1.246-2.834 1.246-1.447 0-2.573-.89-2.573-2.672 0-1.39.756-2.337 1.833-2.8.933-.409 2.235-.483 3.233-.595V3.74c0-.409.032-.89-.209-1.243-.21-.315-.611-.445-.965-.445-.656 0-1.238.335-1.382 1.029-.03.154-.143.307-.298.315l-1.667-.18c-.14-.032-.297-.144-.256-.358C.859.842 2.684.234 4.32.234c.837 0 1.93.222 2.59.853.836.78.755 1.818.755 2.95v2.67c0 .804.335 1.155.65 1.588zM5.253 5.706v-.37c-1.244 0-2.557.265-2.557 1.724 0 .742.386 1.244 1.045 1.244.483 0 .917-.297 1.19-.78.338-.593.322-1.15.322-1.818z" id="ftr__m"></path><path d="M8.203 8.295c.11.156.135.341-.005.455-.352.294-.976.834-1.319 1.139l-.004-.004a.356.356 0 0 1-.406.04c-.571-.473-.673-.692-.985-1.142-.944.958-1.613 1.246-2.835 1.246-1.447 0-2.573-.89-2.573-2.672 0-1.39.756-2.337 1.833-2.8.933-.409 2.236-.483 3.233-.595V3.74c0-.409.032-.89-.21-1.243-.208-.315-.61-.445-.964-.445-.656 0-1.239.335-1.382 1.029-.03.154-.142.307-.298.315l-1.666-.18C.48 3.184.324 3.072.365 2.858.748.842 2.573.234 4.209.234c.836 0 1.93.222 2.59.853.835.78.755 1.818.755 2.95v2.67c0 .804.335 1.155.649 1.588zM5.142 5.706v-.37c-1.243 0-2.557.265-2.557 1.724 0 .742.386 1.244 1.045 1.244.482 0 .917-.297 1.19-.78.338-.593.322-1.15.322-1.818z" id="ftr__o"></path><path d="M2.935 10.148c-.88 0-1.583-.25-2.11-.75-.527-.501-.79-1.171-.79-2.011 0-.902.322-1.622.967-2.159.644-.538 1.511-.806 2.602-.806.694 0 1.475.104 2.342.315V3.513c0-.667-.151-1.136-.455-1.408-.304-.271-.821-.407-1.553-.407-.855 0-1.691.123-2.509.37-.285.087-.464.13-.539.13-.148 0-.223-.111-.223-.334v-.5c0-.16.025-.278.075-.352C.79.938.89.87 1.039.808c.383-.173.87-.312 1.459-.417A9.997 9.997 0 0 1 4.255.234c1.177 0 2.045.244 2.602.731.557.489.836 1.233.836 2.233v6.338c0 .247-.124.37-.372.37h-.798c-.236 0-.373-.117-.41-.351l-.093-.612c-.445.383-.939.68-1.477.89-.54.21-1.076.315-1.608.315zm.446-1.39c.41 0 .836-.08 1.282-.241.447-.16.874-.395 1.283-.704v-1.89a8.408 8.408 0 0 0-1.97-.241c-1.401 0-2.1.537-2.1 1.612 0 .47.13.831.39 1.084.26.254.632.38 1.115.38z" id="ftr__q"></path><path d="M.467 9.907c-.248 0-.372-.124-.372-.37V.883C.095.635.219.51.467.51h.817c.125 0 .22.026.288.075.068.05.115.142.14.277l.111.686C3 .672 4.24.234 5.541.234c.904 0 1.592.238 2.063.713.471.476.707 1.165.707 2.066v6.524c0 .246-.124.37-.372.37H6.842c-.248 0-.372-.124-.372-.37V3.625c0-.655-.133-1.137-.4-1.445-.266-.31-.684-.464-1.254-.464-.979 0-1.94.315-2.881.946v6.875c0 .246-.125.37-.372.37H.467z" id="ftr__s"></path><path d="M4.641 9.859c-1.462 0-2.58-.417-3.355-1.251C.51 7.774.124 6.566.124 4.985c0-1.569.4-2.783 1.2-3.641C2.121.486 3.252.055 4.714.055c.67 0 1.326.118 1.971.353.136.05.232.111.288.185.056.074.083.198.083.37v.501c0 .248-.08.37-.241.37-.062 0-.162-.018-.297-.055a5.488 5.488 0 0 0-1.544-.222c-1.04 0-1.79.262-2.248.787-.459.526-.688 1.362-.688 2.511v.241c0 1.124.232 1.949.697 2.474.465.525 1.198.788 2.203.788a5.98 5.98 0 0 0 1.672-.26c.136-.037.23-.056.279-.056.161 0 .242.124.242.371v.5c0 .162-.025.279-.075.353-.05.074-.148.142-.297.204-.608.259-1.314.389-2.119.389z" id="ftr__u"></path><path d="M4.598 10.185c-1.413 0-2.516-.438-3.31-1.316C.497 7.992.1 6.769.1 5.199c0-1.555.397-2.773 1.19-3.65C2.082.673 3.185.235 4.598.235c1.412 0 2.515.438 3.308 1.316.793.876 1.19 2.094 1.19 3.65 0 1.569-.397 2.792-1.19 3.669-.793.878-1.896 1.316-3.308 1.316zm0-1.483c1.747 0 2.62-1.167 2.62-3.502 0-2.323-.873-3.484-2.62-3.484S1.977 2.877 1.977 5.2c0 2.335.874 3.502 2.62 3.502z" id="ftr__w"></path><path d="M.396 9.907c-.248 0-.371-.124-.371-.37V.883C.025.635.148.51.396.51h.818a.49.49 0 0 1 .288.075c.068.05.115.142.14.277l.111.594C2.943.64 4.102.234 5.23.234c1.152 0 1.934.438 2.342 1.315C8.798.672 10.025.234 11.25.234c.856 0 1.512.24 1.971.722.458.482.688 1.168.688 2.057v6.524c0 .246-.124.37-.372.37h-1.097c-.248 0-.371-.124-.371-.37V3.533c0-.618-.119-1.075-.354-1.372-.235-.297-.607-.445-1.115-.445-.904 0-1.815.278-2.732.834.012.087.018.18.018.278v6.709c0 .246-.124.37-.372.37H6.42c-.249 0-.372-.124-.372-.37V3.533c0-.618-.118-1.075-.353-1.372-.235-.297-.608-.445-1.115-.445-.942 0-1.847.272-2.714.815v7.006c0 .246-.125.37-.372.37H.396z" id="ftr__y"></path><path d="M.617 13.724c-.248 0-.371-.124-.371-.37V.882c0-.247.123-.37.371-.37h.818c.248 0 .39.123.428.37l.093.594C2.897.648 3.944.234 5.096.234c1.203 0 2.15.435 2.845 1.307.693.87 1.04 2.053 1.04 3.548 0 1.52-.365 2.736-1.096 3.65-.731.915-1.704 1.372-2.918 1.372-1.116 0-2.076-.365-2.881-1.094v4.337c0 .246-.125.37-.372.37H.617zM4.54 8.628c1.71 0 2.566-1.149 2.566-3.447 0-1.173-.208-2.044-.624-2.612-.415-.569-1.05-.853-1.904-.853-.88 0-1.711.284-2.491.853v5.17c.805.593 1.623.889 2.453.889z" id="ftr__A"></path><path d="M2.971 10.148c-.88 0-1.583-.25-2.11-.75-.526-.501-.79-1.171-.79-2.011 0-.902.322-1.622.967-2.159.644-.538 1.512-.806 2.602-.806.694 0 1.475.104 2.342.315V3.513c0-.667-.15-1.136-.455-1.408-.304-.271-.821-.407-1.552-.407-.855 0-1.692.123-2.509.37-.285.087-.465.13-.54.13-.148 0-.223-.111-.223-.334v-.5c0-.16.025-.278.075-.352.05-.074.148-.142.297-.204.384-.173.87-.312 1.46-.417A9.991 9.991 0 0 1 4.29.234c1.177 0 2.045.244 2.603.731.557.489.836 1.233.836 2.233v6.338c0 .247-.125.37-.372.37h-.799c-.236 0-.372-.117-.41-.351l-.092-.612a5.09 5.09 0 0 1-1.478.89 4.4 4.4 0 0 1-1.608.315zm.446-1.39c.41 0 .836-.08 1.283-.241.446-.16.874-.395 1.282-.704v-1.89a8.403 8.403 0 0 0-1.97-.241c-1.4 0-2.1.537-2.1 1.612 0 .47.13.831.39 1.084.26.254.632.38 1.115.38z" id="ftr__C"></path><path d="M.503 9.907c-.248 0-.371-.124-.371-.37V.883C.132.635.255.51.503.51h.818a.49.49 0 0 1 .288.075c.068.05.115.142.14.277l.111.686C3.037.672 4.277.234 5.578.234c.904 0 1.592.238 2.063.713.47.476.706 1.165.706 2.066v6.524c0 .246-.123.37-.371.37H6.879c-.248 0-.372-.124-.372-.37V3.625c0-.655-.133-1.137-.4-1.445-.266-.31-.684-.464-1.254-.464-.98 0-1.94.315-2.882.946v6.875c0 .246-.124.37-.371.37H.503z" id="ftr__E"></path><path d="M1.988 13.443c-.397 0-.75-.043-1.059-.13-.15-.037-.251-.1-.307-.185a.684.684 0 0 1-.084-.37v-.483c0-.234.093-.352.28-.352.06 0 .154.013.278.037.124.025.291.037.502.037.459 0 .82-.114 1.087-.343.266-.228.505-.633.716-1.213l.353-.945L.167.675C.08.465.037.316.037.23c0-.149.086-.222.26-.222h1.115c.198 0 .334.03.409.093.075.062.148.197.223.407l2.602 7.19 2.51-7.19c.074-.21.148-.345.222-.407.075-.062.211-.093.41-.093h1.04c.174 0 .261.073.261.222 0 .086-.044.235-.13.445l-4.09 10.377c-.334.853-.725 1.464-1.17 1.835-.446.37-1.017.556-1.711.556z" id="ftr__G"></path></defs><g fill="none" fill-rule="evenodd"><g transform="translate(31.496 11.553)"><mask fill="currentColor" id="ftr__b"><use xlink:href="#ftr__a"></use></mask><path d="M.04 6.088h26.91V.04H.04z" fill="currentColor" mask="url(#ftr__b)"></path></g><g transform="translate(55.433 10.797)"><mask fill="currentColor" id="ftr__d"><use xlink:href="#ftr__c"></use></mask><path d="M.05 5.664h5.564V.222H.05z" fill="currentColor" mask="url(#ftr__d)"></path></g><g transform="translate(55.433 .97)"><mask fill="currentColor" id="ftr__f"><use xlink:href="#ftr__e"></use></mask><path d="M.11 9.444h6.804V.222H.111z" fill="currentColor" mask="url(#ftr__f)"></path></g><g transform="translate(33.008 .97)"><mask fill="currentColor" id="ftr__h"><use xlink:href="#ftr__g"></use></mask><path d="M.191 9.655h11.611V.04H.192z" fill="currentColor" mask="url(#ftr__h)"></path></g><g transform="translate(62.992 .97)"><mask fill="currentColor" id="ftr__j"><use xlink:href="#ftr__i"></use></mask><path d="M.141 9.867h7.831V.04H.142z" fill="currentColor" mask="url(#ftr__j)"></path></g><g transform="translate(72.063 .97)"><mask fill="currentColor" id="ftr__l"><use xlink:href="#ftr__k"></use></mask><path d="M.171 9.655h7.076V.04H.17z" fill="currentColor" mask="url(#ftr__l)"></path></g><g transform="translate(46.11 .718)"><mask fill="currentColor" id="ftr__n"><use xlink:href="#ftr__m"></use></mask><path d="M.181 10.059h8.225V.232H.18z" fill="currentColor" mask="url(#ftr__n)"></path></g><g transform="translate(23.685 .718)"><mask fill="currentColor" id="ftr__p"><use xlink:href="#ftr__o"></use></mask><path d="M.05 10.059h8.255V.232H.05z" fill="currentColor" mask="url(#ftr__p)"></path></g><g transform="translate(0 .718)"><mask fill="currentColor" id="ftr__r"><use xlink:href="#ftr__q"></use></mask><path d="M.03 10.15h7.68V.231H.03z" fill="currentColor" mask="url(#ftr__r)"></path></g><g transform="translate(10.33 .718)"><mask fill="currentColor" id="ftr__t"><use xlink:href="#ftr__s"></use></mask><path d="M.07 9.907h8.255V.232H.071z" fill="currentColor" mask="url(#ftr__t)"></path></g><g transform="translate(84.157 .97)"><mask fill="currentColor" id="ftr__v"><use xlink:href="#ftr__u"></use></mask><path d="M.11 9.867h7.046V.04H.11z" fill="currentColor" mask="url(#ftr__v)"></path></g><g transform="translate(92.472 .718)"><mask fill="currentColor" id="ftr__x"><use xlink:href="#ftr__w"></use></mask><path d="M.08 10.21h9.041V.232H.081z" fill="currentColor" mask="url(#ftr__x)"></path></g><g transform="translate(103.811 .718)"><mask fill="currentColor" id="ftr__z"><use xlink:href="#ftr__y"></use></mask><path d="M.02 9.907H13.93V.232H.02z" fill="currentColor" mask="url(#ftr__z)"></path></g><g transform="translate(120.189 .718)"><mask fill="currentColor" id="ftr__B"><use xlink:href="#ftr__A"></use></mask><path d="M.242 13.747H9.01V.232H.242z" fill="currentColor" mask="url(#ftr__B)"></path></g><g transform="translate(130.772 .718)"><mask fill="currentColor" id="ftr__D"><use xlink:href="#ftr__C"></use></mask><path d="M.06 10.15h7.68V.231H.06z" fill="currentColor" mask="url(#ftr__D)"></path></g><g transform="translate(141.102 .718)"><mask fill="currentColor" id="ftr__F"><use xlink:href="#ftr__E"></use></mask><path d="M.131 9.907h8.224V.232H.131z" fill="currentColor" mask="url(#ftr__F)"></path></g><g transform="translate(150.677 1.222)"><mask fill="currentColor" id="ftr__H"><use xlink:href="#ftr__G"></use></mask><path d="M.02 13.455h9.071V0H.021z" fill="currentColor" mask="url(#ftr__H)"></path></g></g></svg></div><p class="imdb-footer__copyright footer__copyright">© 1990-<!-- -->2022<!-- --> by IMDb.com, Inc.</p></div></footer><svg style="width:0;height:0;overflow:hidden;display:block" version="1.1" xmlns="http://www.w3.org/2000/svg"><defs><lineargradient id="ipc-svg-gradient-tv-logo-t" x1="31.973%" x2="153.413%" y1="53.409%" y2="-16.853%"><stop offset="21.89%" stop-color="#D01F49"></stop><stop offset="83.44%" stop-color="#E8138B"></stop></lineargradient><lineargradient id="ipc-svg-gradient-tv-logo-v" x1="-38.521%" x2="104.155%" y1="84.997%" y2="14.735%"><stop offset="21.89%" stop-color="#D01F49"></stop><stop offset="83.44%" stop-color="#E8138B"></stop></lineargradient></defs></svg></section> <script>
window.__FOOTER_PROPS__ = {
locale: 'en-US',
showDesktopLink: false,
desktopLink: undefined,
showSignIn: true
};
</script>
<script>
if (typeof uet == 'function') {
uet("be", "desktopFooter", {wb: 1});
}
</script>
<script>
if (typeof uex == 'function') {
uex("ld", "desktopFooter", {wb: 1});
}
</script>
<script>
if (typeof uet == 'function') {
uet("bb", "LoadHeaderJS", {wb: 1});
}
</script>
<script src="https://m.media-amazon.com/images/S/sash/JJwdLH4ViTW-kI$.js" type="text/javascript"></script>
<script src="https://m.media-amazon.com/images/S/sash/LEkTDT9yTAT$m1v.js" type="text/javascript"></script>
<script src="https://m.media-amazon.com/images/S/sash/SeDFkoePjfCzU00.js" type="text/javascript"></script>
<script src="https://m.media-amazon.com/images/S/sash/JkadsPuCKXe2k5I.js" type="text/javascript"></script>
<script src="https://m.media-amazon.com/images/S/sash/rvCWixNlCLN1lmK.js" type="text/javascript"></script>
<script src="https://m.media-amazon.com/images/S/sash/uYEQ-EZAaZR3vrj.js" type="text/javascript"></script>
<script src="https://m.media-amazon.com/images/S/sash/VECqMZ1Ob9rrMiv.js" type="text/javascript"></script>
<script type="text/javascript">
function jQueryOnReady(remaining_count) {
if (window.jQuery && typeof $.fn.watchlistRibbon !== 'undefined') {
jQuery(
function() {
var listConfig = imdb.userlists.getListerInitConfig(
{
listId : 'ls056092300',
refMarker : 'ttls',
mode : 'detail',
page : 1,
viewMoreOption : 'PAGINATE',
sortField : 'list_order',
sortDirection : 'asc',
showtimesDate : '',
explore : '',
ajaxURL : '/list/ls056092300/_ajax',
externalCallbacks : [window.imdb.CS.loadMoreUpdate],
}
);
imdb.userlists.listerInit(listConfig);
}
);
jQuery(
function() {
var isAdvertisingThemed = !!(window.custom && window.custom.full_page && window.custom.full_page.theme),
url = "https://www.facebook.com/widgets/like.php?width=280&show_faces=1&layout=standard&href=http%3A%2F%2Fwww.imdb.com%2Flist%2Fls056092300%2F&colorscheme=light",
like = document.getElementById('iframe_like');
if (!isAdvertisingThemed && like) {
like.src = url;
like.onload = function () {
if (typeof uex == 'function') { uex('ld', 'facebook_like_iframe', {wb: 1}); }
};
} else if (isAdvertisingThemed) {
$('.social_networking_like').closest('.aux-content-widget-2').hide();
}
}
);
} else if (remaining_count > 0) {
setTimeout(function() { jQueryOnReady(remaining_count-1) }, 100);
}
}
jQueryOnReady(50);
</script>
<script>
if (typeof uet == 'function') {
uet("bb", "RenderBranchSDK", {wb: 1});
}
</script>
<script>
if ('csm' in window) {
csm.measure('csm_RenderBranchSDK_started');
}
</script>
<script class="ics-branch-sdk-script">
if (document.domain.startsWith('m.')) {
function logBranchMetric(metricName, n) {
if (window && window.ue && typeof window.ue.count === 'function') {
window.ue.count(metricName, n);
}
}
logBranchMetric('BranchSDK.Requests', 1);
if (uet) {
uet('bb', 'LoadBranchSDK', {wb: 1});
}
(function(b,r,a,n,c,h,_,s,d,k){if(!b[n]||!b[n]._q){for(;s<_.length;)c(h,_[s++]);d=r.createElement(a);d.async=1;d.src="https://cdn.branch.io/branch-2.58.0.min.js";k=r.getElementsByTagName(a)[0];k.parentNode.insertBefore(d,k);b[n]=h}})(window,document,"script","branch",function(b,r){b[r]=function(){b._q.push([r,arguments])}},{_q:[],_v:1},"addListener applyCode autoAppIndex banner closeBanner closeJourney creditHistory credits data deepview deepviewCta first getCode init link logout redeem referrals removeListener sendSMS setBranchViewData setIdentity track validateCode trackCommerceEvent logEvent disableTracking".split(" "), 0);
branch.init('key_live_jdSfREMXW6WE9FcCt5HWFbhgswmprlIn', { timeout: 2000 }, (err, data) => {
if (uet && uex) {
uet('be', 'LoadBranchSDK', {wb: 1});
uex('ld', 'LoadBranchSDK', {wb: 1} )
}
if (err) {
console.log('Branch init error', err);
logBranchMetric('BranchSDK.Error', 1);
} else {
logBranchMetric('BranchSDK.Error', 0);
logBranchMetric('BranchSDK.Initialized', 1);
branch.setBranchViewData(
{
data: {
'$deeplink_path': '\/list/ls056092300/'
}
}
);
branch.setIdentity('000-0000000-0000000', (err, data) => {
if (err) {
console.log('Branch setIdentity error', err);
logBranchMetric('BranchSDK.Error', 1);
} else {
logBranchMetric('BranchSDK.Error', 0);
}
});
}
});
}
</script>
<script>
if ('csm' in window) {
csm.measure('csm_RenderBranchSDK_finished');
}
</script>
<script>
if (typeof uet == 'function') {
uet("be", "RenderBranchSDK", {wb: 1});
}
</script>
<script>
if (typeof uex == 'function') {
uex("ld", "RenderBranchSDK", {wb: 1});
}
</script>
<script>
if (typeof uet == 'function') {
uet("be", "LoadFooterJS", {wb: 1});
}
</script>
<script>
if (typeof uex == 'function') {
uex("ld", "LoadFooterJS", {wb: 1});
}
</script>
<div id="servertime" time="1666"></div>
<script>
if (typeof uet == 'function') {
uet("be");
}
</script>
</body>
</html>
titles=[]
for i in soup.find_all('h3',class_="lister-item-header"):
titles.append(i.text)
titles
['\n1.\nShip of Theseus\n(2012)\n', '\n2.\nIruvar\n(1997)\n', '\n3.\nKaagaz Ke Phool\n(1959)\n', '\n4.\nLagaan: Once Upon a Time in India\n(2001)\n', '\n5.\nPather Panchali\n(1955)\n', '\n6.\nCharulata\n(1964)\n', '\n7.\nRang De Basanti\n(2006)\n', '\n8.\nDev.D\n(2009)\n', '\n9.\n3 Idiots\n(2009)\n', '\n10.\nAwaara\n(1951)\n', '\n11.\nNayakan\n(1987)\n', '\n12.\nAparajito\n(1956)\n', '\n13.\nPushpaka Vimana\n(1987)\n', '\n14.\nPyaasa\n(1957)\n', '\n15.\nGhatashraddha\n(1977)\n', '\n16.\nSholay\n(1975)\n', '\n17.\nAradhana\n(1969)\n', '\n18.\nDo Ankhen Barah Haath\n(1957)\n', '\n19.\nBombay\n(1995)\n', '\n20.\nNeecha Nagar\n(1946)\n', '\n21.\nDo Bigha Zamin\n(1953)\n', '\n22.\nGarm Hava\n(1974)\n', '\n23.\nPiravi\n(1989)\n', '\n24.\nMughal-E-Azam\n(1960)\n', '\n25.\nAmma Ariyan\n(1986)\n', '\n26.\nMadhumati\n(1958)\n', '\n27.\nGoopy Gyne Bagha Byne\n(1969)\n', '\n28.\nGangs of Wasseypur\n(2012)\n', '\n29.\nGuide\n(1965)\n', '\n30.\nSatya\n(1998)\n', '\n31.\nRoja\n(1992)\n', '\n32.\nMr. India\n(1987)\n', '\n33.\nThe Cloud-Capped Star\n(1960)\n', '\n34.\nHarishchandrachi Factory\n(2009)\n', '\n35.\nMasoom\n(1983)\n', '\n36.\nAgneepath\n(1990)\n', '\n37.\nTabarana Kathe\n(1986)\n', '\n38.\nZakhm\n(1998)\n', '\n39.\nDil Chahta Hai\n(2001)\n', '\n40.\nBhaag Milkha Bhaag\n(2013)\n', '\n41.\nChupke Chupke\n(1975)\n', '\n42.\nDilwale Dulhania Le Jayenge\n(1995)\n', '\n43.\nTaare Zameen Par\n(2007)\n', '\n44.\nArdh Satya\n(1983)\n', '\n45.\nBhumika\n(1977)\n', '\n46.\nEnthiran\n(2010)\n', '\n47.\nSadma\n(1983)\n', '\n48.\nShwaas\n(2004)\n', '\n49.\nLamhe\n(1991)\n', '\n50.\nHaqeeqat\n(1964)\n', '\n51.\nShree 420\n(1955)\n', '\n52.\nKannathil Muthamittal\n(2002)\n', '\n53.\nHum Aapke Hain Koun..!\n(1994)\n', '\n54.\nUstad Hotel\n(2012)\n', '\n55.\nBandit Queen\n(1994)\n', '\n56.\nLakshya\n(2004)\n', '\n57.\nBlack Friday\n(2004)\n', '\n58.\nManthan\n(1976)\n', '\n59.\nApoorva Raagangal\n(1975)\n', '\n60.\nEnglish Vinglish\n(2012)\n', '\n61.\nJewel Thief\n(1967)\n', '\n62.\nPakeezah\n(1972)\n', '\n63.\nMaqbool\n(2003)\n', '\n64.\nJis Desh Men Ganga Behti Hai\n(1960)\n', '\n65.\nSahib Bibi Aur Ghulam\n(1962)\n', '\n66.\nShatranj Ke Khilari\n(1977)\n', '\n67.\nNarthanasala\n(1963)\n', '\n68.\nChandni Bar\n(2001)\n', '\n69.\nVaaranam Aayiram\n(2008)\n', '\n70.\nMr. and Mrs. Iyer\n(2002)\n', '\n71.\nChandni\n(1989)\n', '\n72.\nEnglish, August\n(1994)\n', '\n73.\nCelluloid\n(2013)\n', '\n74.\nSagara Sangamam\n(1983)\n', '\n75.\nMunna Bhai M.B.B.S.\n(2003)\n', '\n76.\nSaaransh\n(1984)\n', '\n77.\nGuddi\n(1971)\n', '\n78.\nVanaja\n(2006)\n', '\n79.\nVazhakku Enn 18/9\n(2012)\n', '\n80.\nGangaajal\n(2003)\n', '\n81.\nAngoor\n(1982)\n', '\n82.\nGuru\n(2007)\n', '\n83.\nAndaz Apna Apna\n(1994)\n', '\n84.\nSangam\n(I) (1964)\n', '\n85.\nOka Oori Katha\n(1978)\n', '\n86.\nBhuvan Shome\n(1969)\n', '\n87.\nBorder\n(I) (1997)\n', '\n88.\nParineeta\n(2005)\n', '\n89.\nDevdas\n(1955)\n', '\n90.\nAbohomaan\n(2009)\n', '\n91.\nKuch Kuch Hota Hai\n(1998)\n', '\n92.\nPithamagan\n(2003)\n', '\n93.\nVeyyil\n(2006)\n', '\n94.\nChemmeen\n(1965)\n', '\n95.\nJaane Bhi Do Yaaro\n(1983)\n', '\n96.\nApur Sansar\n(1959)\n', '\n97.\nKanchivaram\n(2008)\n', '\n98.\nMonsoon Wedding\n(2001)\n', '\n99.\nBlack\n(2005)\n', '\n100.\nDeewaar\n(1975)\n']
Ratings=[]
for i in soup.find_all('div',class_="ipl-rating-star small"):
Ratings.append(i.text)
Ratings
['\n\n\n\n\n\n\n\n8\n', '\n\n\n\n\n\n\n\n8.4\n', '\n\n\n\n\n\n\n\n7.8\n', '\n\n\n\n\n\n\n\n8.1\n', '\n\n\n\n\n\n\n\n8.3\n', '\n\n\n\n\n\n\n\n8.1\n', '\n\n\n\n\n\n\n\n8.1\n', '\n\n\n\n\n\n\n\n7.9\n', '\n\n\n\n\n\n\n\n8.4\n', '\n\n\n\n\n\n\n\n7.8\n', '\n\n\n\n\n\n\n\n8.6\n', '\n\n\n\n\n\n\n\n8.3\n', '\n\n\n\n\n\n\n\n8.6\n', '\n\n\n\n\n\n\n\n8.3\n', '\n\n\n\n\n\n\n\n7.5\n', '\n\n\n\n\n\n\n\n8.1\n', '\n\n\n\n\n\n\n\n7.5\n', '\n\n\n\n\n\n\n\n8.4\n', '\n\n\n\n\n\n\n\n8.1\n', '\n\n\n\n\n\n\n\n6.7\n', '\n\n\n\n\n\n\n\n8.2\n', '\n\n\n\n\n\n\n\n8.1\n', '\n\n\n\n\n\n\n\n7.8\n', '\n\n\n\n\n\n\n\n8.1\n', '\n\n\n\n\n\n\n\n7.1\n', '\n\n\n\n\n\n\n\n7.8\n', '\n\n\n\n\n\n\n\n8.7\n', '\n\n\n\n\n\n\n\n8.2\n', '\n\n\n\n\n\n\n\n8.4\n', '\n\n\n\n\n\n\n\n8.3\n', '\n\n\n\n\n\n\n\n8.1\n', '\n\n\n\n\n\n\n\n7.7\n', '\n\n\n\n\n\n\n\n7.9\n', '\n\n\n\n\n\n\n\n8.4\n', '\n\n\n\n\n\n\n\n8.4\n', '\n\n\n\n\n\n\n\n7.6\n', '\n\n\n\n\n\n\n\n7.9\n', '\n\n\n\n\n\n\n\n7.9\n', '\n\n\n\n\n\n\n\n8.1\n', '\n\n\n\n\n\n\n\n8.2\n', '\n\n\n\n\n\n\n\n8.3\n', '\n\n\n\n\n\n\n\n8\n', '\n\n\n\n\n\n\n\n8.3\n', '\n\n\n\n\n\n\n\n8.1\n', '\n\n\n\n\n\n\n\n7.4\n', '\n\n\n\n\n\n\n\n7.1\n', '\n\n\n\n\n\n\n\n8.3\n', '\n\n\n\n\n\n\n\n8.2\n', '\n\n\n\n\n\n\n\n7.2\n', '\n\n\n\n\n\n\n\n7.8\n', '\n\n\n\n\n\n\n\n7.9\n', '\n\n\n\n\n\n\n\n8.4\n', '\n\n\n\n\n\n\n\n7.5\n', '\n\n\n\n\n\n\n\n8.2\n', '\n\n\n\n\n\n\n\n7.5\n', '\n\n\n\n\n\n\n\n7.9\n', '\n\n\n\n\n\n\n\n8.4\n', '\n\n\n\n\n\n\n\n7.6\n', '\n\n\n\n\n\n\n\n7.5\n', '\n\n\n\n\n\n\n\n7.8\n', '\n\n\n\n\n\n\n\n7.9\n', '\n\n\n\n\n\n\n\n7.2\n', '\n\n\n\n\n\n\n\n8\n', '\n\n\n\n\n\n\n\n7.1\n', '\n\n\n\n\n\n\n\n8.1\n', '\n\n\n\n\n\n\n\n7.5\n', '\n\n\n\n\n\n\n\n8\n', '\n\n\n\n\n\n\n\n7.6\n', '\n\n\n\n\n\n\n\n8.2\n', '\n\n\n\n\n\n\n\n7.9\n', '\n\n\n\n\n\n\n\n6.7\n', '\n\n\n\n\n\n\n\n7.5\n', '\n\n\n\n\n\n\n\n7.7\n', '\n\n\n\n\n\n\n\n8.8\n', '\n\n\n\n\n\n\n\n8.1\n', '\n\n\n\n\n\n\n\n8.1\n', '\n\n\n\n\n\n\n\n7.2\n', '\n\n\n\n\n\n\n\n7.2\n', '\n\n\n\n\n\n\n\n8.3\n', '\n\n\n\n\n\n\n\n7.8\n', '\n\n\n\n\n\n\n\n8.3\n', '\n\n\n\n\n\n\n\n7.7\n', '\n\n\n\n\n\n\n\n8\n', '\n\n\n\n\n\n\n\n7.3\n', '\n\n\n\n\n\n\n\n7.7\n', '\n\n\n\n\n\n\n\n7.2\n', '\n\n\n\n\n\n\n\n7.9\n', '\n\n\n\n\n\n\n\n7.2\n', '\n\n\n\n\n\n\n\n7.7\n', '\n\n\n\n\n\n\n\n7.4\n', '\n\n\n\n\n\n\n\n7.6\n', '\n\n\n\n\n\n\n\n8.3\n', '\n\n\n\n\n\n\n\n7.8\n', '\n\n\n\n\n\n\n\n7.8\n', '\n\n\n\n\n\n\n\n8.3\n', '\n\n\n\n\n\n\n\n8.5\n', '\n\n\n\n\n\n\n\n8.1\n', '\n\n\n\n\n\n\n\n7.3\n', '\n\n\n\n\n\n\n\n8.1\n', '\n\n\n\n\n\n\n\n8\n']
Year_of_release=[]
for i in soup.find_all('span',class_='lister-item-year text-muted unbold'):
Year_of_release.append(i.text)
Year_of_release
['(2012)', '(1997)', '(1959)', '(2001)', '(1955)', '(1964)', '(2006)', '(2009)', '(2009)', '(1951)', '(1987)', '(1956)', '(1987)', '(1957)', '(1977)', '(1975)', '(1969)', '(1957)', '(1995)', '(1946)', '(1953)', '(1974)', '(1989)', '(1960)', '(1986)', '(1958)', '(1969)', '(2012)', '(1965)', '(1998)', '(1992)', '(1987)', '(1960)', '(2009)', '(1983)', '(1990)', '(1986)', '(1998)', '(2001)', '(2013)', '(1975)', '(1995)', '(2007)', '(1983)', '(1977)', '(2010)', '(1983)', '(2004)', '(1991)', '(1964)', '(1955)', '(2002)', '(1994)', '(2012)', '(1994)', '(2004)', '(2004)', '(1976)', '(1975)', '(2012)', '(1967)', '(1972)', '(2003)', '(1960)', '(1962)', '(1977)', '(1963)', '(2001)', '(2008)', '(2002)', '(1989)', '(1994)', '(2013)', '(1983)', '(2003)', '(1984)', '(1971)', '(2006)', '(2012)', '(2003)', '(1982)', '(2007)', '(1994)', '(I) (1964)', '(1978)', '(1969)', '(I) (1997)', '(2005)', '(1955)', '(2009)', '(1998)', '(2003)', '(2006)', '(1965)', '(1983)', '(1959)', '(2008)', '(2001)', '(2005)', '(1975)']
print(len(titles),len(Ratings),len(Year_of_release))
100 100 100
import pandas as pd
df=pd.DataFrame({"Movie_name":titles,"Ratings":Ratings,"Year_of_release":Year_of_release})
df
| Movie_name | Ratings | Year_of_release | |
|---|---|---|---|
| 0 | \n1.\nShip of Theseus\n(2012)\n | \n\n\n\n\n\n\n\n8\n | (2012) |
| 1 | \n2.\nIruvar\n(1997)\n | \n\n\n\n\n\n\n\n8.4\n | (1997) |
| 2 | \n3.\nKaagaz Ke Phool\n(1959)\n | \n\n\n\n\n\n\n\n7.8\n | (1959) |
| 3 | \n4.\nLagaan: Once Upon a Time in India\n(2001)\n | \n\n\n\n\n\n\n\n8.1\n | (2001) |
| 4 | \n5.\nPather Panchali\n(1955)\n | \n\n\n\n\n\n\n\n8.3\n | (1955) |
| ... | ... | ... | ... |
| 95 | \n96.\nApur Sansar\n(1959)\n | \n\n\n\n\n\n\n\n8.5\n | (1959) |
| 96 | \n97.\nKanchivaram\n(2008)\n | \n\n\n\n\n\n\n\n8.1\n | (2008) |
| 97 | \n98.\nMonsoon Wedding\n(2001)\n | \n\n\n\n\n\n\n\n7.3\n | (2001) |
| 98 | \n99.\nBlack\n(2005)\n | \n\n\n\n\n\n\n\n8.1\n | (2005) |
| 99 | \n100.\nDeewaar\n(1975)\n | \n\n\n\n\n\n\n\n8\n | (1975) |
100 rows × 3 columns
4) Write s python program to display list of respected former presidents of India(i.e. Name , Term of office) from https://presidentofindia.nic.in/former-presidents.htm
url=requests.get('https://presidentofindia.nic.in/former-presidents.htm')
url
<Response [200]>
soup=BeautifulSoup(url.text,'html.parser')
soup
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html lang="en" xml:lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1"><title>
Former Presidents - The President of India
</title><meta content="text/html; charset=utf-8" http-equiv="Content-Type"/><meta content="no-cache" http-equiv="pragma"/>
<!--<meta http-equiv="Content-Style-Type" content="text/css" /><meta http-equiv="Content-Script-Type" content="type" />-->
<meta content="telephone=no" name="format-detection"/><meta content="IE=EmulateIE10" http-equiv="X-UA-Compatible"/>
<!-- Start Favicon -->
<link href="favicon.ico" rel="shortcut icon" type="image/x-icon"/><link href="js/panorama_viewer.css" rel="stylesheet" type="text/css"/>
<!-- Start Viewport -->
<!--<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" />-->
<!-- Start IE CSS -->
<!--[if IE]>
<link href="writereaddata/Portal/Design_CSS/5.css" rel="stylesheet" type="text/css" media="all" />
<![endif]-->
<!-- Start Javascript Library -->
<script language="JavaScript" type="text/javascript">
if (top != self) top.location.replace(location);
version = "3.6.0";
prettyPhoto = "3.1.6";
</script>
<script src="js/jquery.min.js" type="text/javascript"></script>
<script type="text/javascript">
<!--
function detectmob() {
if (navigator.userAgent.match(/Android/i)
|| navigator.userAgent.match(/webOS/i)
|| navigator.userAgent.match(/iPhone/i)
|| navigator.userAgent.match(/iPad/i)
|| navigator.userAgent.match(/iPod/i)
|| navigator.userAgent.match(/BlackBerry/i)
|| navigator.userAgent.match(/Windows Phone/i)
) {
return true;
}
else {
return false;
}
}
function OfflineOverrideBody() {
if (!navigator.onLine && document.body != null && detectmob() == false) {
document.body.innerHTML = "Loading...";
}
setTimeout(OfflineOverrideBody, 100);
}
OfflineOverrideBody();
/*function setMenu(objatagV) {
$('.menuFirstNode').removeClass('active');
$('#' + objatagV).addClass('active');
CreateCookie('_tmpActiveMnu', objatagV);
}*/
-->
</script>
<script type="text/javascript">
$(document).ready(function () { $("input").attr("autocomplete", "off"); });
</script>
<link href="App_Themes/User/ie9.css" rel="stylesheet" type="text/css"/><link href="App_Themes/User/jquery.ui.autocomplete.css" rel="stylesheet" type="text/css"/><link href="App_Themes/User/jquery.ui.autocomplete.custom.css" rel="stylesheet" type="text/css"/><link href="App_Themes/User/jQueryCalender.css" rel="stylesheet" type="text/css"/><link href="App_Themes/User/User.css" rel="stylesheet" type="text/css"/><link href="/writereaddata/Portal/Design_CSS/2.css" id="css2" rel="stylesheet" type="text/css"/><meta content="Former Presidents - The President of India" name="keyword"/><meta content="Former Presidents - The President of India" name="description"/><meta content="english" name="language"/><link href="/writereaddata/Portal/Design_CSS/7.css" id="css7" media="print" rel="stylesheet" type="text/css"/></head>
<body class="noJS" id="bdMainSite" style="font-size:87.5%">
<!--<script type="text/javascript">
function AddBodyClass() {
$("#" + "bdMainSite").addClass("home");
}
</script>
<noscript class="displayNone"></noscript>-->
<noscript class="noscriptDiv">
<div id="scriptOffMsg">
Some of the functionalities will not work if javascript off. Please enable Javascript
for it.
</div>
</noscript>
<form action="/former-presidents.htm" id="form1" method="post">
<div class="aspNetHidden">
<input id="__VIEWSTATE" name="__VIEWSTATE" type="hidden" value="WPrgOZba98TE6DW1kZq6vsuhUiHhhcBjn4hUz2K8Fu0mp+c2G0i+M3we4eY82m00BAlvt2u9zV3IweKXEFo3DQOSOMTQTIbW34xk0AJeXtXPEYqNhMtkPdX5FT3KB9B+fLisZkKtePgfY4bxbokw/E6FbGr04fV4scS61rGfJxHXbpGCY36tJqaU+vWmmZOONLCmSth1ehGRAEdcpiegqIEvozmkmwg51RbTmog11jM25dzJ5nAQ4RNVxfwDWxoyQlaxVfvj4UHTc3KJYEFeUdpQ5+eTRihPjpY/W2eX3oRMppFeOX1ePpzF6s+9Em3FQg7w6cSkg13uwNAd0PeR9r0bRZzqHx5/c7Q5ul8BXxEYtoVgwydgLRjDLNJDsY9DGaPzgx9epjssCv6b+J1UUfdxcJPUNXiH4kHm/Uj0WK36xadfEpFKJYrNuFdwFx5LxaMSMluobpMWDMJrLKdK7e4Wi3WdI7jhKfRpEquKaM+8FeRWceY6AqfCkd8nEueoMORcLZUS1rqugMqjsrEQCcmRdBgmGqu6UGQvpOMaBFOABYgZFBJKGMlItum3TBswKcirp/CqS1tT2Xo4uw305rE7Qozd5dLDF5vvKVziv+7TE1DiheIoXuuHF39yrxbOob68P3cmfKv0lLOaDtaj/or7H45qfIQQU5V6lvaqLOaa8IhbOzh8bnSJIm31QlV1wHXs9474/S7K1HJlI4K0P0Ts+xiJ4ZcyYHs9fbeGgAUts9HcYo4bU8gRwDUtsTYJDSWmpJYsY3PHRfEkUzavFqlD+palmxsOSaeC1u+CToTbltQJS7wxmhFU4aeQj/13l7trdcP93a/1U9CcdiWpGPjlBK2QR4oDtt/iHi/EliVAOR9NkurLpWgOh/Kt6hbSqHRsUqiBgZxr/UJ1BExXBSrB4d0q2U7M6tU2KQvyUj7IZ802qgPjTexNog9/YyGd2n/RThWBcbB75VRRKPyAHaqpYL/fyPUcAAK8XVf3Pcy+3D66k/YYR76D7KRiSwO9oL8uly9JcGT8+diI/8LamfYCC/FjKAQKBqSDHDQDJYwi7LA/1HMtLRz7f0PELlGokLY+ouZPCkQqUTITeq5Ay1hiDNUQ+Ahf5tXAo/dRQVdtpNZ/ZE5hAi6HHrth3aMjKv/yTLbEPg/H1YomMH7RPMLvlvB0WDsPwiu3PhLj3QN8T9R9RvodDiQ0c23iOeK2si8Df/EUYRDZH9x3P2lwU+5oVD9OR/sjnaB1Q5bj2Qp08TL/Kv/nD0756KPt3nrcpFdMF3g+7hJAdHFGNWpSHTnGGaUO8KXBCMtXdQzqtZ9zixIVkztJQTU0iXY11t3xVD/j6FqC3brYKyJOO6PoCqbf0N9uVKDcLh5v78JA02XgLwnQ9FA55xXkXfMypR+0tIeILWl5VmQ+cxKI7nIEZFbpFRLCT9sacdkMdCMkv8ldupoIihFHrRu3fXcCQm/rT0HBkPhR2ylvwXqjkVyxDNV2YWp0Be4dc3VNzh8OahKWl/TtOxO7HlNaQKBnTXCNbGoX6c0UmiW6GVtnppzII9YtbFKNivpHi9eioZKwcO86+lZd5o6UEI+30PVkwrSKvBJYhz2nf+UdzSaNEcYHpjSz1qPVi1yJbK1RBXLLHDDjSF4HVg7S2HDX3P4FgS+oKreZmss6cT/zVDlS0xfFU93+BxlSjt70syyPkLvHpZGC7oxDfvnwOZMsKWkpm97NUn9Gp3UJ9huMFEe+Wk2FgDbXZn3VEu1GlFGX0FJIN0/x8y11hnD0/D0Dmg5y/+RAAfgI5I9JqmPmq5PZwbZkU3QvgXoXljqrv7OD5rKotDLJKjF4/bqO9URjSdlKdH4lRZ2smdNY7+wrsqVZXvG7++oR1iro9V5GGge3y+KGE5jxpA4p0Z1SQL99rF1qDCOonf8tQFf/McqIBYqjt3N7vuJPziWTOjhBKwEy7P3lxXZNkyqY+66x4ilcAugh3NgMQg6BUIs3YBBD6Mi4TheAxALhEcncWshSc70pA4lRW/XxiISIMiW3CKWnB5IViOd8x1ycskt8aMqQoxwWzsNZYGb46iWma50XuIbAphGfzJeJqEx9/i70V3ZIeQTY9dBUCsO82PRIqghehUZmy+LCGB9oXzfV8LtDNMa0eZV85/qSAs0IWYMDXHGrf8rajrWdDNIDZJPV+IX1WRbaaWo8Ki2a7Jn0MQy6fIQ0RBHXSx5XdHQy5DHPLbvHHIcsSL3VydqCzW/y4C+RN+TEiUqHAZLCct7P6RwnkScQcNPlMjOxc78FXj31J+zb6EMwCTg4N4O/TKzuruI97Hb/gd8ItO6hp8sXQRU4KYHrt25T0NFRKb/ZDXftu4laIc9gmdn3/1mqQsn8ke4uzmQMl55t/MFQnRQx8CTkNP1bls/pcyE2oaBdWR5Po6Fi4LtoH3YUVC7Zi25mtJZjp3MXjv3oOnEzF1HYE6UtsjTLzDv2YYvdAw4eoZNzNRlUmb9+oUsWWOSD45IktS38kxZI7ezTsNv2aI4iR3GvTIawPWvHhQXnXNXTUD/FFVC4XZoJ9ulM7Y3VieLN9UPH+rjpUuvxz13hGEz3071Y+WYttPumfcOsPbLJ83PgoQHyUhz4sZStTjdTul+2BAn7HVkmLO+TLS9zBU8h9XbEIu6mRP/8yQsmqjY1gkSKmGAybbI4LlBCXHQX9dD+oeCALtmq5W0gNRXd6ImzQmswPGjuk30K/pkBSvevAbUHFW9yz/FH46AxT4jGaoCrD7XyTCmUsvYO2Eaz8N2pg9W4aapDl8WULoB1Z7JooegjWIl66RWWMp/23ndpLEkCBMXfzOaxD+HhPiJ/NF90FmQ1vljJVCcuHzWRMSXKdVsK8iSf/tdL18QCpiHyLE+luoVBtm3osXRnPNQG4sZR/vF/dFAegE+4MVuJnTJYAc3ukbUWCNMrhO93+O9ulBSumb5pYdcAOoqCHgKmC5dzrF8wtoCJ7A/BwaGuplKTnfjII70HKLmNyoZfQ0Gvmos8TRyi/9jPuK/t9hQXNWOA2yhSsq+ZGrw1Y2kJVsUYKxe0/cGCT274RzcpwZ8T60sFaJx8MaFC4FgtP8p9rd8IIg9efAYEvJJMfwp9/psEvpa+ER2U9o3moHnIWFBURxebYxk2uGGWn6pqL5cdDg5GZzYOXlH4nPn24R4M8s3ldmmx5CTOdz6wwI86UXJp6Cvp+GygRieoIGEa0KRJzOjUd2D6BI+92YVJ95cRNWLvlgrrwyJaHec6hJGygaun0knGzqJFHHT5mlPWwKXRu7q/nayCaBSBBjpxFTWrxSp903XkqmHExXp4RgFoKEKQ+2WBP2HbLHbPIZdpUt4ptypbhhbOXTj3xgerF1+XQvv9tAJoD1jwJ3bCx6SRWtd2u69o5e9usfPi7C5xUJkg6bYEuPC1FSl5i7MWarNvn3zvOjqnkvtS8LfYgPH4i8qXXl4B+YMP6edGf5LxVLqyEOTQfQ7ZskFf0DUcb/7YrdH1C6Esr1PaA1tICDi1YUYUmSsVfyfNYkSJB/FPS0lHkY9BdvFPiEVEzhywgWS+WrGxefIP+QSrfowBjLom6Uo/E9t7IoH8ktpcZh3CPrvxbQ4byFHID5UrWwVJc37gDVWp6M14CdUxrqGy8zkOJB3DMmhlzna+D36DSwYg9iDa3w6R0slLUgWYSqUuy6WZAKeGG6DAgMMUuK2IHjaaJ5yPIz9zSfTB4DjDMN66VptWKfErsvE+i99H9gbgSGqqN0UUfSgR3UEv/U4kgnnJmyNgmNAPOWx/wLCgi27A7NIgIfu/r1prPDuNGIJD0Cu3svUWGsKHtjKX/kAYB8Dl1aaqZYnJVJowWrZoH3fkAY8N9GPQJiphFxGOEWaaIACmj6qvtplMJVVHQlduim9HbHxkhYtSz2RxjoZlwlSocKQ1U5jZlyWMjaedi5ZNU86tioMJ0/38hJxKAkF+1xkAx6zm+qrQ0FqBOLtqRgln562efqMZ5dGlSW0xi7kcwUTfMuyXmk9DtXeaHKPrIwlSb9gYNoGRZEmiWaiyAisvxu5nwjB4NHRZa+Pzf4FV3nffjI04VKxcHK7REkuaikbivr2Avivu/CrFS1zXGIn3KT2Oiml+qRHEZlE7pTnUhOcCb/0eipcQ4/5byker3nsp++y08YEol3rjaDsCzyjXSf2nZe26OBofKZTdaE/iQx0LqxjNAPiOqN3QQuBS/7KtJuDAck9jYMTON1h8ATACoZYnUkomt6kjYyXsZww8H4aL8OzaoON9Zi3ElzQ6hrjgDUNV57hn3wHJT9bPZ4XiQetMNwGqN5GXO26hu6+rbBiAuoiV+daYJB2pg8PN6e1vfz+efbkVv2sXGw5CJdEc5ED69IdlkDjZInIW7CYMBxvaXr2vbSqFLuv2/A8CSLEvrA2ylrsYCGBKf0rnceXQCiHLIn9u1npbT+kMGcJTL1rNhBQlI44lnrh+8vpfcPD+y+ojw+fk05RTrwnEf9y+cP3zFNJUPyW/Q3jFpYBkt0WAoV+0Y464QUNQtyBQnR8zmk1lMMTDfiJH81Bhpi8Eh7i4i3Gv5tdUppVG7HzZ604gPcTHFLgAUu1Ui8u4bKvCYR5e5wr9/ZJQVgv4lCzDaO+JrTRRV15o06m/rq8+uP9hFjXLK+4409R7JdjGnSzyhyCsGOC1S99ANeX8gs3AhGs1G0VX/UVsB2K5KOo+VKkgRRJ8gfS6By34GhPCrLx+fFKFctO38qLqjOHlL0c4kc7gOpWZlVgjhlKCr4qp8ufnU8JnZbWh8kx0bD/dyeEl142gatROOjdpadeuABmz62jhBlMmaRDzRN9ScRWIeKOWYJO4D6ztuL36piVNuW2cRh5CqZILAdKkF/6WKBeL8gb3fwMDx/nXWzP2RNHlSQkN/G2YVVOJZl72uuixEu+gqeNpyFWVVa8K0u/0O7nw3F5ZGs/ljnZKkhdFK/ch2zSVV/mx6vHXUtEFaoG+WOAlg4hBF8frP4n+1P0g0y4w2n4d1Oxp4+ik60FUr8IhmTnsAPFVn5/qQphUBwEN/jezbZAIW6T2x0qnAN26iC2VkZZiDSYfcHGZ5Jpl2RegYbAnZdeb1CNIyPeITpcx7+Avg9YrDqxCYo4CPK84BpUNV14CCd9BcQkZ6y7EmbxH5aaYigleqMMMrc9B/ZhW5Ey6mHFGS/EMgEB3mJxQbliTvkDH9myvAMNIPVuE9YUOh7kdhFE9YBTvHadoBWu9SlrNHdFXZpXofNxQdUZSb9+l/HiyfwbhjDFiWV8ujNAEuN2vPP8pRzNpfBlN6ypwRPGO+Eh/wib+sJ9xtoz0mpO/AET6epqNAuI8rqy5VjFKSTPBiefwsyLpYS9MndV5J86PY7abRUbKR5CC3i/aSQpJW31j0skXMkfYWfpNxnEU03m9JW4YhP3yz9QDJ9oPLBn0wuYPOetMhh+uAEXfvdKkPRIrfWvZTrNQtmrNt58ZRN9Gksb5xV8xf6QZeZOifNCDDG2NfOt2K1SPAVVewRIOOOs/FbkGHCBwzeeG/RpkJOJI7bII8icYs83VdU/6DbZFwitiRxOUitHMKJVnJwMPM+9Wy7kdQeyCe/0tZy0nzCVNcG/kpYcSRK0qI6ZC+G6X2kRs+nIkeqptrhDnPpw+9Y6b+DH3QOYsB9JJo1ldmmhFF8DsqBI58nOUYbdDk/TOUiXCaZEfV4RwBUP3Mnztj/fCuxyPHE3at5XkrBLdIhgf199Ed4eUX7tKvCQeJVlA5hWb8mor82HoXbQ3qaVABWTmtEyn2IXHUJ847A3YQ8eVNT+4+GIkOj3wdb24UkarfqqT2RhIFuI6bRXJYZycaiiMMqDaC/qhgh7epcTRGJfgL1wh8NDITyirnjZ4dmyFpLIsqE2N0xdcqMLCMRusKX3Pbp6t7aKmGCCf/MRPrg5tKphe+7I/R5LOSm9N28CyIMyFPVWM2NzQXCgIQpR/seQr0TVV2Nju/BzjLARxmeAQj9Cq2FyI9BQwwz2CYPsNqI6pZ0MvhmB6uDBi9N1ezO//pcfXbDYJFiCKwtnJJ/fwVCVQRxjGspkthzo5++QhFhJuFsFHLM2mevjrmzjBIGR3TJ1a77vY7epdcWt2/DPdRCIfd9X3DS1A6na6luxwqVEnRDmXYYvczlyI2gA06cpL9xEfR0Cb96n2g4HCEbR55kwTDNxePEUexk5WOc+e95UShKl15KHsFUnMtdLLEwQsle8rHT/LunyvP9QPSUBY/JS9rXXvdKRBGbYZ2eIgmGpuO2r4lo7wZJ9+HJ4zCNpa86Bksn3xK1nvedpy2jNABF5/WHDkspJSX4r+QJt05Wt22S+odreHYBauePhrNHHMmg1KU9woj8UOlS7YUnt/WZHl6zdI2OnCkU/FHNr1johv08sXdJw9EFK8h6wLiGF0p5ZVcgiUeRqwD5GbSwEDzE9fBSDJva1oStzsykKGDVq6qpyl7IbS2cF79gqmjLxpijSwQJmlKXu5Gj9x8y/e7/FGQV2mfB8FhVc/rBkmAz2tdV2NENatosVsvZZJEJQWPDL/nvmVUOJXlvK4c3JJ2RZnZOEv4u6HKxTpz/Qr4gMn5rRZ05USKp6FE5ZAj7jzbc7W/5xGMrNUUDxCAbVsfUkyRJp0iP+Gst3zEJ43R26FJ+D+X5Ia/Fb6FNfIkYWoLTgNTFgECNZU/5JYZ0TBuaXSGA5F1TkpJgucNzWWRCVJhg0vBi/L4dqMDaM/8vZHOYJWs9ORjZdLSTpfrb8oOWzUMWDcbB3xqOKzxTfD/TZvfg5YzsWl7y1O+Ai4nOHab8uZUFr9REdIVupCVYOe+yYYa1crLbapv+JIUTxFY4r6RltkD2aWEwCWDA3lewQxa08kbOw6/lpPiG8Ew0dhuOgz6iULi84TJUhQZnUU3+IZuv32yMX3UzMXraeoIA=="/>
</div>
<div class="aspNetHidden">
<input id="__VIEWSTATEGENERATOR" name="__VIEWSTATEGENERATOR" type="hidden" value="CA0B0334"/>
<input id="__EVENTTARGET" name="__EVENTTARGET" type="hidden" value=""/>
<input id="__EVENTARGUMENT" name="__EVENTARGUMENT" type="hidden" value=""/>
<input id="__VIEWSTATEENCRYPTED" name="__VIEWSTATEENCRYPTED" type="hidden" value=""/>
<input id="__EVENTVALIDATION" name="__EVENTVALIDATION" type="hidden" value="X/1smYtOMmizVmOKstkLShx7OMErbMsDUuZVx0xkoE8vXYVRzIknHTJ9u/gkRqcc+1QUweG6NkmcEbfIaCrN8FhQgUq12XZqmdMryowg/2pKzTgOjZeD5ZtBXjFchuPnddvYoyFuxnsPLUnm9h0oUuR6zyxIf3WNnZSwlIE9cg+qxqrPPg4RcW0khdu/oQa7lKmzAdByDanJVGlsWIh4KxMxN9b4Plt/6MgM8+PAXIhrEUeKI/tEiXqO/pf+0tQRHn1ok5A4BlcqKZsr7CAx3oPPvDQB0ag3+o1FuaKIccoheNp3tTN/K+XDqyp6V7vhdE3YQQv8551Dg2EWWGjzd/0BmEsKxTY6aDMLkhGzne8YTp60MPjtpwjG64p8lnOjJcqWpDLT4TAYkdecPgAVBLdCJsqbGABAZlgNhr68H16+cTSkIHS2EeuDN2o9BX++9RMy5Ie1rIMheN0wEGPirotrahN+5SRyeb6pkoIQGDUTruh+sq/CLJx1Cg3hZHeQu2Oshsy121wYBqbYhaIJWQDmG2rOsFRQx6kw5CDmCKvLTdVVoEoF5uAmY+WwAvSIoyj7kSR8XUMzmpHKen0xkzK50N7d/Axgl5MAMC9GNO8js4F8iDSj1BXC9rXF3SCppM3j1u7bM+Ywb/UTJguxGZH5QljymWWRoua/SDZ7Xs3zGH7vrvOm54hbAWW0O+HINcCpz3cLM2bs61nHIAK+I+sl8NyLJZvE2gqm+tDYDEpmQYzikdxDqF2M8SfPFVQCrhoNjeXCVNaMp9/l16QNzfHrNcErZluBI3YIuRrj+TwuD6qrYeJo0ruo4opQkrjtM1FcHjY2Nsp/pOlaYsEDe7SxOOjXa/DP4bn/AEkERYDcZohUfX/2dAGFVJqMaa5DXiVTXl2kbaBUUyPwO9/y5rHZVBywVSCCaHU9+VBtIOg="/>
</div>
<input id="bodyDefaultTextSizehdn" name="ctl00$bodyDefaultTextSizehdn" type="hidden" value="87.5"/>
<input id="hdnSiteName" name="ctl00$hdnSiteName" type="hidden" value="SilverCMSVanila"/>
<input id="RootPathInt" name="ctl00$RootPathInt" type="hidden"/>
<div id="ContentPlaceHolder1_mainbody">
<div id="wrapper">
<div class="css3" id="accessbar">
<div class="container">
<ul class="alignRight">
<li><a class="inSkipContent" href="#skipContent" title="Skip to Main Content">Skip to Main Content</a> /</li><li><a href="screen-reader-access.htm" title="Screen Reader Access">Screen Reader Access</a></li><li class="padT0"><span id="ContentPlaceHolder1_ChangeSiteStyle1_lblTitle"></span>
<ul id="accessControl">
<li class="a padL5">
<input class="fontScaler current normal font-normal" id="ContentPlaceHolder1_ChangeSiteStyle1_font_normal" name="ctl00$ContentPlaceHolder1$ChangeSiteStyle1$font_normal" onclick="return validate();" title="Normal Font Size" type="submit" value="A"/>
</li>
<li class="a a-largeFont">
<input class="fontScaler large font-large" id="ContentPlaceHolder1_ChangeSiteStyle1_font_large" name="ctl00$ContentPlaceHolder1$ChangeSiteStyle1$font_large" onclick="return validate();" title="Largest Font Size" type="submit" value="A+"/>
</li>
<!--<li class="a a-largestFont">
<input type="submit" name="ctl00$ContentPlaceHolder1$ChangeSiteStyle1$font_larger" value="A+" onclick="return validate();" id="ContentPlaceHolder1_ChangeSiteStyle1_font_larger" title="Large Font Size" class="fontScaler larger font-largest" />
</li>-->
<li class="marL5 standardContrast">
<input accesskey="7" class="contrastChanger normal current sprite" id="ContentPlaceHolder1_ChangeSiteStyle1_contrast_normal" name="ctl00$ContentPlaceHolder1$ChangeSiteStyle1$contrast_normal" onclick="return false;" title="Standard View" type="submit" value="Standard View"/>
</li>
<li class="marL5 highContrast">
<input accesskey="8" class="contrastChanger normal sprite" id="ContentPlaceHolder1_ChangeSiteStyle1_contrast_wob" name="ctl00$ContentPlaceHolder1$ChangeSiteStyle1$contrast_wob" onclick="return false;" title="High Contrast View" type="submit" value="High Contrast View"/>
</li>
</ul>
</li><li class="padT5">
<div class="language css3 cf"><a class="english active" href="http://presidentofindia.nic.in/index.htm">English</a><a class="hindi" href="http://presidentofindia.nic.in/index-hi.htm">Hindi</a></div>
</li><li class="padT6">
<div class="search css3 cf"><input id="ContentPlaceHolder1_KeywordSearch1_hdnLanguageID" name="ctl00$ContentPlaceHolder1$KeywordSearch1$hdnLanguageID" type="hidden" value="1"/>
<input id="ContentPlaceHolder1_KeywordSearch1_hdnSiteID" name="ctl00$ContentPlaceHolder1$KeywordSearch1$hdnSiteID" type="hidden" value="1"/>
<input id="ContentPlaceHolder1_KeywordSearch1_hdnInternalMEA" name="ctl00$ContentPlaceHolder1$KeywordSearch1$hdnInternalMEA" type="hidden" value="0"/>
<div id="ContentPlaceHolder1_KeywordSearch1_pnlKeywordSrch" onkeypress="javascript:return WebForm_FireDefaultButton(event, 'ContentPlaceHolder1_KeywordSearch1_btnSearch')">
<input class="alignLeft ui-autocomplete-input" id="ContentPlaceHolder1_KeywordSearch1_txtKeyword" name="ctl00$ContentPlaceHolder1$KeywordSearch1$txtKeyword" onblur="if (this.value =='' || this.value=='<%=strEnterKeyWord %>') this.value = this.defaultValue;" onfocus="this.value=''" title="Search" type="text" value="Search"/>
<input class="submit sprite alignRight" id="ContentPlaceHolder1_KeywordSearch1_btnSearch" name="ctl00$ContentPlaceHolder1$KeywordSearch1$btnSearch" onclick="return CheckString();" title="Minimum 3 character required" type="submit" value="Search"/>
</div>
<div class="searchList">
</div>
<script src="https://www.google.com/jsapi" type="text/javascript"></script>
<noscript class="displayNone">
</noscript>
<script type="text/javascript">
<!--
function CheckString() {
var Key = document.getElementById('ContentPlaceHolder1_KeywordSearch1_txtKeyword');
if (Key.value.length < 3) {
Key.value = "Minimum 3 character required";
return false;
}
if (Key.value == Key.defaultValue) {
Key.value = "Enter valid search text";
return false;
}
if (Key.value == "Minimum 3 character required" || Key.value == "Enter valid search text") {
return false;
}
return true;
}
var hdnLanguageID = document.getElementById('ContentPlaceHolder1_KeywordSearch1_hdnLanguageID');
if (hdnLanguageID.value == '2') {
google.load("elements", "1", { packages: "transliteration" });
function onLoad() {
var options = { sourceLanguage: 'en', destinationLanguage: ['hi'], shortcutKey: 'ctrl+g', transliterationEnabled: true };
var control = new google.elements.transliteration.TransliterationControl(options);
control.makeTransliteratable(['ContentPlaceHolder1_KeywordSearch1_txtKeyword']);
}
google.setOnLoadCallback(onLoad);
}
/* Auto Suggestion Script */
$(function () {
$("#ContentPlaceHolder1_KeywordSearch1_txtKeyword").autocomplete({
source: function (request, response) {
var pID;
var hdnSiteID = document.getElementById('ContentPlaceHolder1_KeywordSearch1_hdnSiteID'); ;
var hdnLanguageID = document.getElementById('ContentPlaceHolder1_KeywordSearch1_hdnLanguageID');
if (hdnSiteID.value == '') pID = 1;
else pID = hdnSiteID.value;
$.ajax({
url: "AutoCompleteService.asmx/AutoSugessionSiteSearch",
data: "{ 'SearchText': '" + escape(request.term) + "' , 'SiteId':'" + pID + "', 'LanguageId':'" + hdnLanguageID.value + "', 'TopRecords':'" + 'top 15' + "' }",
dataType: "json",
type: "POST",
contentType: "application/json; charset=utf-8",
dataFilter: function (data) { return data; },
success: function (data) {
response($.map(data.d, function (item) {
var label1 = item.split("::");
return {
value: label1[1] + "::" + label1[2],
label: label1[0]
}
}))
},
error: function (XMLHttpRequest, textStatus, errorThrown) {
//alert(textStatus);
}
});
},
select: function (event, ui) {
$(event.target).val(ui.item.label);
var target = ui.item.value.split("::")
if (target[1] == "_blank") {
window.open(target[0], '_blank');
}
else {
//window.location = ui.item.value;
window.location = target[0];
}
return false;
},
minLength: 3,
appendTo: ".searchList"
});
/* Auto Suggestion Script */
//-->
});
</script>
<noscript class="displayNone">
</noscript>
</div>
</li></ul>
</div>
</div>
<div class="container padB20" id="container">
<div id="header">
<div class="padT20 cf">
<h1 class="alignLeft" id="logo" title="The President of India - Smt. Droupadi Murmu">
<a href="index.htm" title="The President of India - Smt. Droupadi Murmu"><img alt="The President of India - Smt. Droupadi Murmu" height="74" src="Images/logo.png" title="The President of India - Smt. Droupadi Murmu" width="439"/></a></h1>
<div class="alignRight">
<div class="alignLeft">
<ul class="subNav alignRight">
<li><a href="contact-us.htm" title="Contact">Contact</a></li><li><a href="mailto:webmaster[at]rb[dot]nic[dot]in" title="Feedback">Feedback</a></li><li class="last"><a href="sitemap.htm" title="Sitemap">Sitemap</a></li></ul>
<div class="social"><a href="https://www.facebook.com/presidentofindia" target="_blank"><img alt="facebook" src="Images/fb.png" title="Facebook"/></a><a href="https://www.instagram.com/presidentofindia" target="_blank"><img alt="Instagram" src="Images/inst.png" title="Instagram"/></a><a href="https://twitter.com/rashtrapatibhvn" target="_blank"><img alt="Twitter" src="Images/twitter.png" title="Twitter"/></a><a href="https://www.youtube.com/presidentofindia" target="_blank"><img alt="Youtube" src="Images/youtube.png" title="Youtube"/></a></div>
</div>
<img alt="India - Flag" class="padR5 alignRight" height="50" src="Images/india-flag.gif" width="74"/></div>
</div>
</div>
<div id="skipContent"><div class="menuPart cf" id="ContentPlaceHolder1_UserMenuHorizontal1_divMenu"><ul id="nav"><li class="MenuLi MenuLiFirst MenuLi1"><a class="menuFirstNode" href="/index.htm" target="_self" title="Home"><span>Home</span></a></li><li class="MenuLi MenuLi2"><a class="menuFirstNode" href="/press-release.htm" target="_self" title="Press Releases"><span>Press Releases</span></a></li><li class="MenuLi MenuLi3"><a class="menuFirstNode" href="speeches.htm" target="_self" title="Speeches"><span>Speeches</span></a></li><li class="MenuLi MenuLi4"><a class="menuFirstNode" href="photo-gallery.htm" target="_self" title="Gallery"><span>Gallery</span></a><ul class="menuSubUl"><li class="firstMenuLi"><a class="firstMenuLiA" href="/photo-gallery.htm" target="_self" title="Photo Gallery">Photo Gallery</a></li><li class="lastMenuLi"><a class="lastMenuLiA" href="/video-gallery.htm" target="_self" title="Video Gallery">Video Gallery</a></li></ul></li><li class="MenuLi MenuLi5"><a class="menuFirstNode" href="/rashtrapati-bhavan.htm" target="_self" title="Rashtrapati Bhavan"><span>Rashtrapati Bhavan</span></a><ul class="menuSubUl"><li class="firstMenuLi"><a class="firstMenuLiA" href="/panoramic-view.htm" target="_self" title="Panoramic View">Panoramic View</a></li><li><a href="/presidential-retreats.htm" target="_self" title="Presidential Retreats">Presidential Retreats</a></li><li><a href="/mughal-gardens.htm" target="_self" title="Mughal Gardens">Mughal Gardens</a></li><li><a href="/herbal-gardens.htm" target="_self" title="Herbal Gardens">Herbal Gardens</a></li><li><a href="/visit-to-rashtrapati-bhavan.htm.htm" target="_self" title="Visit to Rashtrapati Bhavan">Visit to Rashtrapati Bhavan</a></li><li class="lastMenuLi"><a class="lastMenuLiA" href="/virtual-tour-of-rashtrapati-bhavan.htm" target="_self" title="Virtual Tour of Rashtrapati Bhavan">Virtual Tour of Rashtrapati Bhavan</a></li></ul></li><li class="MenuLi MenuLi6"><a class="menuFirstNode" href="/former-presidents.htm" target="_self" title="Former Presidents"><span>Former Presidents</span></a></li><li class="MenuLi MenuLiLast MenuLi7"><a class="menuFirstNode" href="/profile.htm" target="_self" title="Profile of the President"><span>Profile of the President</span></a></li></ul></div>
<input id="ContentPlaceHolder1_UserMenuHorizontal1_hf1" name="ctl00$ContentPlaceHolder1$UserMenuHorizontal1$hf1" type="hidden" value="<span>"/>
<input id="ContentPlaceHolder1_UserMenuHorizontal1_hf2" name="ctl00$ContentPlaceHolder1$UserMenuHorizontal1$hf2" type="hidden" value="</span>"/>
<div class="contentWrap bgdWhite cf">
<div class="innerContent alignLeft"><input id="ContentPlaceHolder1_BreadCrumbControl1_hdnLanguageSuffix" name="ctl00$ContentPlaceHolder1$BreadCrumbControl1$hdnLanguageSuffix" type="hidden"/>
<ul class="breadcrumb">
<li>
<span id="ContentPlaceHolder1_BreadCrumbControl1_SiteMapPath1"><span>
<a href="/index.htm" title="Home">
Home</a>
</span><span> › </span><span>
<span class="currentPage" id="ContentPlaceHolder1_BreadCrumbControl1_SiteMapPath1_txtlabel_1">Former Presidents</span></span></span>
</li>
</ul>
<h2>Former Presidents</h2>
<ul class="listing cf">
<li><img alt="Shri Ram Nath Kovind" class="alignLeft" src="Images/rnk.jpg" title="Shri Ram Nath Kovind"/>
<div class="presidentListing">
<h3>Shri Ram Nath Kovind (birth - 1945)</h3>
<p><span class="terms">Term of Office:</span> 25 July, 2017 to 25 July, 2022 </p>
<p><a href="https://ramnathkovind.nic.in" target="_blank">https://ramnathkovind.nic.in</a></p>
</div>
</li><li><img alt="Shri Pranab Mukherjee" class="alignLeft" src="Images/pranab.jpg" title="Shri Pranab Mukherjee"/>
<div class="presidentListing">
<h3>Shri Pranab Mukherjee (1935-2020)</h3>
<p><span class="terms">Term of Office:</span> 25 July, 2012 to 25 July, 2017 </p>
<p><a href="http://pranabmukherjee.nic.in" target="_blank">http://pranabmukherjee.nic.in</a></p>
</div>
</li><li><img alt="Smt Pratibha Devisingh Patil" class="alignLeft" src="Images/pratibha-patil.jpg" title="Smt Pratibha Devisingh Patil"/>
<div class="presidentListing">
<h3>Smt Pratibha Devisingh Patil (birth - 1934)</h3>
<p><span class="terms">Term of Office:</span> 25 July, 2007 to 25 July, 2012 </p>
<p><a href="http://pratibhapatil.nic.in" target="_blank">http://pratibhapatil.nic.in</a></p>
</div>
</li><li><img alt="DR. A.P.J. Abdul Kalam" class="alignLeft" src="Images/abdul-kalam.jpg" title="DR. A.P.J. Abdul Kalam"/>
<div class="presidentListing">
<h3>DR. A.P.J. Abdul Kalam (1931-2015)</h3>
<p><span class="terms">Term of Office:</span> 25 July, 2002 to 25 July, 2007 </p>
<p><a href="http://abdulkalam.nic.in" target="_blank">http://abdulkalam.nic.in</a></p>
</div>
</li><li><img alt="Shri K. R. Narayanan" class="alignLeft" src="Images/k-r-narayanan.jpg" title="Shri K. R. Narayanan"/>
<div class="presidentListing">
<h3>Shri K. R. Narayanan (1920 - 2005)</h3>
<p><span class="terms">Term of Office:</span> 25 July, 1997 to 25 July, 2002 </p>
</div>
</li><li><img alt="Dr Shankar Dayal Sharma" class="alignLeft" src="Images/shankar-dayal-sharma.jpg" title="Dr Shankar Dayal Sharma"/>
<div class="presidentListing">
<h3>Dr Shankar Dayal Sharma (1918-1999)</h3>
<p><span class="terms">Term of Office:</span> 25 July, 1992 to 25 July, 1997 </p>
</div>
</li><li><img alt="Shri R Venkataraman" class="alignLeft" src="Images/venkataraman.jpg" title="Shri R Venkataraman"/>
<div class="presidentListing">
<h3>Shri R Venkataraman (1910-2009)</h3>
<p><span class="terms">Term of Office:</span> 25 July, 1987 to 25 July, 1992 </p>
</div>
</li><li><img alt="Giani Zail Singh" class="alignLeft" src="Images/giani-zail-singh.jpg" title="Giani Zail Singh"/>
<div class="presidentListing">
<h3>Giani Zail Singh (1916-1994)</h3>
<p><span class="terms">Term of Office:</span> 25 July, 1982 to 25 July, 1987 </p>
</div>
</li><li><img alt="Shri Neelam Sanjiva Reddy" class="alignLeft" src="Images/neelam-sanjiva-reddy.jpg" title="Shri Neelam Sanjiva Reddy"/>
<div class="presidentListing">
<h3>Shri Neelam Sanjiva Reddy (1913-1996)</h3>
<p><span class="terms">Term of Office:</span> 25 July, 1977 to 25 July, 1982 </p>
</div>
</li><li><img alt="Dr. Fakhruddin Ali Ahmed" class="alignLeft" src="Images/fakhruddin-ali-ahmed.jpg" title="Dr. Fakhruddin Ali Ahmed"/>
<div class="presidentListing">
<h3>Dr. Fakhruddin Ali Ahmed (1905-1977)</h3>
<p><span class="terms">Term of Office:</span> 24 August, 1974 to 11 February, 1977</p>
</div>
</li><li><img alt="Shri Varahagiri Venkata Giri" class="alignLeft" src="Images/varahagiri-venkata-giri.jpg" title="Shri Varahagiri Venkata Giri"/>
<div class="presidentListing">
<h3>Shri Varahagiri Venkata Giri (1894-1980)</h3>
<p><span class="terms">Term of Office:</span> 3 May, 1969 to 20 July, 1969 and 24 August, 1969 to 24 August, 1974</p>
</div>
</li><li><img alt="Dr. Zakir Husain" class="alignLeft" src="Images/zakir-hussion.jpg" title="Dr. Zakir Husain"/>
<div class="presidentListing">
<h3>Dr. Zakir Husain (1897-1969)</h3>
<p><span class="terms">Term of Office:</span> 13 May, 1967 to 3 May, 1969</p>
</div>
</li><li><img alt="Dr. Sarvepalli Radhakrishnan" class="alignLeft" src="Images/sarvepalli-radhakrishnan.jpg" title="Dr. Sarvepalli Radhakrishnan"/>
<div class="presidentListing">
<h3>Dr. Sarvepalli Radhakrishnan (1888-1975)</h3>
<p><span class="terms">Term of Office:</span> 13 May, 1962 to 13 May, 1967</p>
</div>
</li><li class="bordNone"><img alt="Dr. Rajendra Prasad" class="alignLeft" src="Images/rajendra-prasad.jpg" title="Dr. Rajendra Prasad"/>
<div class="presidentListing">
<h3>Dr. Rajendra Prasad (1884-1963) </h3>
<p><span class="terms">Term of Office:</span> 26 January, 1950 to 13 May, 1962</p>
</div>
</li></ul>
</div>
<div class="innerSidebar alignRight">
<ul class="sitemap cf">
<li><a class="menuFirstNode menuParent" href="/index.htm" target="_self" title="Home">Home</a></li><li><a class="menuFirstNode menuParent" href="/press-release.htm" target="_self" title="Press Releases">Press Releases</a></li><li><a class="menuFirstNode menuParent" href="speeches.htm" target="_self" title="Speeches">Speeches</a></li><li><a class="menuFirstNode menuParent" href="photo-gallery.htm" target="_self" title="Gallery">Gallery</a><ul><li><a class="menuFirstNode" href="/photo-gallery.htm" target="_self" title="Photo Gallery">Photo Gallery</a></li><li><a class="menuFirstNode" href="/video-gallery.htm" target="_self" title="Video Gallery">Video Gallery</a></li></ul></li><li><a class="menuFirstNode menuParent" href="/rashtrapati-bhavan.htm" target="_self" title="Rashtrapati Bhavan">Rashtrapati Bhavan</a><ul><li><a class="menuFirstNode" href="/panoramic-view.htm" target="_self" title="Panoramic View">Panoramic View</a></li><li><a class="menuFirstNode" href="/presidential-retreats.htm" target="_self" title="Presidential Retreats">Presidential Retreats</a></li><li><a class="menuFirstNode" href="/mughal-gardens.htm" target="_self" title="Mughal Gardens">Mughal Gardens</a></li><li><a class="menuFirstNode" href="/herbal-gardens.htm" target="_self" title="Herbal Gardens">Herbal Gardens</a></li><li><a class="menuFirstNode" href="/visit-to-rashtrapati-bhavan.htm.htm" target="_self" title="Visit to Rashtrapati Bhavan">Visit to Rashtrapati Bhavan</a></li><li><a class="menuFirstNode" href="/virtual-tour-of-rashtrapati-bhavan.htm" target="_self" title="Virtual Tour of Rashtrapati Bhavan">Virtual Tour of Rashtrapati Bhavan</a></li></ul></li><li><a class="menuFirstNode menuParent" href="/former-presidents.htm" target="_self" title="Former Presidents">Former Presidents</a></li><li><a class="menuFirstNode menuParent" href="/profile.htm" target="_self" title="Profile of the President">Profile of the President</a></li>
</ul>
</div>
</div>
</div>
<div class="padB20 cf" id="footer">
<div class="w800 alignLeft">
<p class="copyright">Copyright © 2022 The Rashtrapati Bhavan.</p>
<div class="footerLinks padB15"><a href="terms-conditions.htm" title="Terms & Conditions">Terms & Conditions</a><a href="privacy-policy.htm" title="Privacy Policy">Privacy Policy</a><a href="copyright-policy.htm" title="Copyright Policy">Copyright Policy</a><a href="hyperlink-policy.htm" title="Hyperlinking Policy">Hyperlinking
Policy</a><a href="accessibility-statement.htm" title="Accessibility">Accessibility</a><a href="help.htm" title="Help">Help</a><a href="sitemap.htm" title="Sitemap">Sitemap</a><a class="last" href="" id="subscribePopup" onclick="return SubScribeShowHide('1');" title="Subscribe to Website">Subscribe
to Website</a></div>
</div>
<div class="alignRight"><a href="http://india.gov.in/" target="_blank"><img alt="The National Portal of India - india.gov.in - External website that opens in a new window" height="45" src="Images/india-gov-in.gif" title="The National Portal of India - india.gov.in - External website that opens in a new window" width="126"/></a><br/>
<span id="ContentPlaceHolder1_UserHitCounter1_lblHitCount">Visitors: <strong>72916965</strong></span>
</div>
<p class="lastUpdated"><span id="ContentPlaceHolder1_UserPageLastUpdateDate1_lblPageLastUpdateDate">Page last updated on: <strong>22-July-2022 15:58 PM</strong></span>
</p>
<p class="govNic"><a href="http://www.nic.in/" target="_blank"><img alt="National Informatics Centre - www.nic.in - External website that opens in a new window" height="28" src="Images/nic-logo.gif" title="National Informatics Centre - www.nic.in - External website that opens in a new window" width="28"/></a>
Website hosted by National Informatics Centre. Website Content provided by the President's Secretariat.</p>
</div>
</div>
</div>
<script type="text/javascript">
//<![CDATA[
function SubScribeShowHide(obj) {
if (document.getElementById("DivSubScribe") != null) {
if (obj == '1') {
document.getElementById("DivSubScribe").style.display = 'block';
document.getElementById('divfade').style.display = 'block';
document.getElementById('ContentPlaceHolder1_SubScribe1_hdnIspopupOpen').value = '1';
}
else {
document.getElementById("DivSubScribe").style.display = 'none';
document.getElementById('divfade').style.display = 'none';
document.getElementById('ContentPlaceHolder1_SubScribe1_hdnIspopupOpen').value = '0';
}
clearcontrol();
}
return false;
}
function clearcontrol() {
document.getElementById('ContentPlaceHolder1_SubScribe1_ltrlMsg').innerHTML = '';
document.getElementById('ContentPlaceHolder1_SubScribe1_txtSubScribeName').value = '';
document.getElementById('ContentPlaceHolder1_SubScribe1_txtSubScribeEmail').value = '';
document.getElementById('ContentPlaceHolder1_SubScribe1_txtMobileNumber').value = '';
document.getElementById('ContentPlaceHolder1_SubScribe1_txtVerifiCationCode_Subscribe').value = '';
document.getElementById('ContentPlaceHolder1_SubScribe1_ddlCountry_subscribe').value = '-1';
document.getElementById('ContentPlaceHolder1_SubScribe1_chkSpeech').checked = false;
document.getElementById('ContentPlaceHolder1_SubScribe1_chkPressRelease').checked = false;
document.getElementById('ContentPlaceHolder1_SubScribe1_chkPhotoGallery').checked = false;
document.getElementById('ContentPlaceHolder1_SubScribe1_chkVideoGallery').checked = false;
// var elm = document.getElementById("<=chkSubScribetype.ClientID %>");
//var checkBoxes = elm.getElementsByTagName("input");
// for (var i = 0; i < checkBoxes.length; i++) {
// checkBoxes[i].checked = false;
// }
document.getElementById('ContentPlaceHolder1_SubScribe1_txtOTP_SubScribe').value = '';
document.getElementById('ContentPlaceHolder1_SubScribe1_ulSubScribeForm').style.display = '';
document.getElementById('ContentPlaceHolder1_SubScribe1_ulOTP').style.display = 'none';
//ulOTP,ulSubScribeForm
}
function subscribe_validation() {
var ltrlMsg = document.getElementById('ContentPlaceHolder1_SubScribe1_ltrlMsg');
var Msg_SubScribeName = 'Please Enter Name';
var Msg_SubScribeEmail = 'Please Enter Email-Id';
var Msg_MobileNumber = 'Please Enter Mobile Number';
var Msg_Country = 'Please Select Country';
var Msg_Captcha = 'Please Enter Verification Code';
var inputSubScribeName = myTrim(document.getElementById('ContentPlaceHolder1_SubScribe1_txtSubScribeName').value);
var inputSubScribeEmail = myTrim(document.getElementById('ContentPlaceHolder1_SubScribe1_txtSubScribeEmail').value);
var inputSubScribeMobile = myTrim(document.getElementById('ContentPlaceHolder1_SubScribe1_txtMobileNumber').value);
var inputCaptcha = myTrim(document.getElementById('ContentPlaceHolder1_SubScribe1_txtVerifiCationCode_Subscribe').value);
var ddlCountry_subscribe = document.getElementById('ContentPlaceHolder1_SubScribe1_ddlCountry_subscribe');
var CountryId = parseInt(ddlCountry_subscribe.options[ddlCountry_subscribe.selectedIndex].value);
if (inputSubScribeName == '') {
ltrlMsg.innerHTML = Msg_SubScribeName;
document.getElementById('ContentPlaceHolder1_SubScribe1_txtSubScribeName').focus();
return false;
}
else if (inputSubScribeEmail == '') {
ltrlMsg.innerHTML = Msg_SubScribeEmail;
document.getElementById('ContentPlaceHolder1_SubScribe1_txtSubScribeEmail').focus();
return false;
}
else if (inputSubScribeMobile == '') {
ltrlMsg.innerHTML = Msg_MobileNumber;
document.getElementById('ContentPlaceHolder1_SubScribe1_txtMobileNumber').focus();
return false;
}
else if (CountryId == -1) {
ltrlMsg.innerHTML = Msg_Country;
return false;
}
else if (inputCaptcha == '') {
ltrlMsg.innerHTML = Msg_Captcha;
document.getElementById('ContentPlaceHolder1_SubScribe1_txtVerifiCationCode_Subscribe').focus();
return false;
}
return true;
}
function OTPSubScribe_validation() {
var ltrlMsg = document.getElementById('ContentPlaceHolder1_SubScribe1_ltrlMsg');
var Msg_OTP = 'Please Enter OTP';
var inputOTP = myTrim(document.getElementById('ContentPlaceHolder1_SubScribe1_txtOTP_SubScribe').value);
if (inputOTP == '') {
ltrlMsg.innerHTML = Msg_OTP;
document.getElementById('ContentPlaceHolder1_SubScribe1_txtOTP_SubScribe').focus();
return false;
}
return true;
}
//]]>
</script>
<noscript class="displayNone">
</noscript>
<input id="ContentPlaceHolder1_SubScribe1_hdnLanguageID" name="ctl00$ContentPlaceHolder1$SubScribe1$hdnLanguageID" type="hidden" value="1"/>
<input id="ContentPlaceHolder1_SubScribe1_hdnLanguageSuffix" name="ctl00$ContentPlaceHolder1$SubScribe1$hdnLanguageSuffix" type="hidden"/>
<input id="ContentPlaceHolder1_SubScribe1_hdnIspopupOpen" name="ctl00$ContentPlaceHolder1$SubScribe1$hdnIspopupOpen" type="hidden" value="0"/>
<div class="overlaySubscribe" id="divfade">
</div>
<div class="subscribe" id="DivSubScribe">
<input alt="Close" class="closePop" id="ContentPlaceHolder1_SubScribe1_imgClose" name="ctl00$ContentPlaceHolder1$SubScribe1$imgClose" onclick="return SubScribeShowHide('0');" src="Images/close-btn.png" title="Close" type="image"/>
<h2>
Subscribe
</h2>
<span id="ContentPlaceHolder1_SubScribe1_ltrlMsg"></span>
<ul class="cf" id="ContentPlaceHolder1_SubScribe1_ulSubScribeForm">
<li>
<label for="ContentPlaceHolder1_SubScribe1_txtSubScribeName">
Name
<span class="required">*</span></label>
<input class="text" id="ContentPlaceHolder1_SubScribe1_txtSubScribeName" maxlength="100" name="ctl00$ContentPlaceHolder1$SubScribe1$txtSubScribeName" type="text"/>
</li>
<li>
<label for="ContentPlaceHolder1_SubScribe1_txtSubScribeEmail">
Email-Id
<span class="required">*</span></label>
<input class="text" id="ContentPlaceHolder1_SubScribe1_txtSubScribeEmail" maxlength="50" name="ctl00$ContentPlaceHolder1$SubScribe1$txtSubScribeEmail" type="text"/>
</li>
<li>
<div class="cf">
<label for="ContentPlaceHolder1_SubScribe1_txtMobileNumber">
Mobile Number
<span class="required">*</span>
</label>
<input class="text" id="ContentPlaceHolder1_SubScribe1_txtMobileNumber" maxlength="10" name="ctl00$ContentPlaceHolder1$SubScribe1$txtMobileNumber" type="text"/>
</div>
<span class="digitNo">
[Note : Enter 10 digit Mobile Number] <br/> [For Ex. 9898464244]
</span></li>
<li>
<label for="ContentPlaceHolder1_SubScribe1_ddlCountry_subscribe">
Select Country
<span class="required">*</span>
</label>
<select id="ContentPlaceHolder1_SubScribe1_ddlCountry_subscribe" name="ctl00$ContentPlaceHolder1$SubScribe1$ddlCountry_subscribe">
</select>
</li>
<li>
<label for="ContentPlaceHolder1_SubScribe1_chkSpeech">
SubScribe Type
<span class="required">*</span>
</label>
<div class="subscribeType cf">
<label for="ContentPlaceHolder1_SubScribe1_chkSpeech">
<input id="ContentPlaceHolder1_SubScribe1_chkSpeech" name="ctl00$ContentPlaceHolder1$SubScribe1$chkSpeech" type="checkbox"/>
Speech</label>
<label for="ContentPlaceHolder1_SubScribe1_chkPressRelease">
<input id="ContentPlaceHolder1_SubScribe1_chkPressRelease" name="ctl00$ContentPlaceHolder1$SubScribe1$chkPressRelease" type="checkbox"/>
Press Release</label>
<label for="ContentPlaceHolder1_SubScribe1_chkPhotoGallery">
<input id="ContentPlaceHolder1_SubScribe1_chkPhotoGallery" name="ctl00$ContentPlaceHolder1$SubScribe1$chkPhotoGallery" type="checkbox"/>
Photo Gallery</label>
<label for="ContentPlaceHolder1_SubScribe1_chkVideoGallery">
<input id="ContentPlaceHolder1_SubScribe1_chkVideoGallery" name="ctl00$ContentPlaceHolder1$SubScribe1$chkVideoGallery" type="checkbox"/>
Video Gallery</label>
</div>
</li>
<li>
<label for="ContentPlaceHolder1_SubScribe1_txtVerifiCationCode_Subscribe">
Verification Code
<span class="required">*</span>
</label>
<input class="text" id="ContentPlaceHolder1_SubScribe1_txtVerifiCationCode_Subscribe" name="ctl00$ContentPlaceHolder1$SubScribe1$txtVerifiCationCode_Subscribe" type="text"/>
</li>
<li style="padding-left: 140px;">
<label class="displayNone">
Image
</label>
<img alt="Verification Code" id="ContentPlaceHolder1_SubScribe1_imgCaptcha_Subscribe" src="writereaddata/Portal/Captcha_Image_SubScribe/Random.gif?t=25092022125058" style="height:27px;width:103px;" title="Verification Code"/>
<input alt="Refresh" id="ContentPlaceHolder1_SubScribe1_ibtnCaptchaRefresh_Subscribe" name="ctl00$ContentPlaceHolder1$SubScribe1$ibtnCaptchaRefresh_Subscribe" src="Images/verification-code-refresh.gif" title="Refresh Captcha" type="image"/>
</li>
<li class="last">
<input id="ContentPlaceHolder1_SubScribe1_btnSubmit" name="ctl00$ContentPlaceHolder1$SubScribe1$btnSubmit" onclick="return subscribe_validation();" title="Submit" type="submit" value="Submit"/>
<input class="submitBtn" id="ContentPlaceHolder1_SubScribe1_btnCancel" name="ctl00$ContentPlaceHolder1$SubScribe1$btnCancel" title="Reset" type="submit" value="Reset"/>
</li>
</ul>
<ul class="cf" id="ContentPlaceHolder1_SubScribe1_ulOTP" style="display: none;">
<li>
<label for="ContentPlaceHolder1_SubScribe1_txtOTP_SubScribe">
Enter OTP
<span class="required">*</span></label>
<input class="text" id="ContentPlaceHolder1_SubScribe1_txtOTP_SubScribe" maxlength="10" name="ctl00$ContentPlaceHolder1$SubScribe1$txtOTP_SubScribe" type="text"/>
</li>
<li class="last">
<input id="ContentPlaceHolder1_SubScribe1_btnOTPSubmit_SubScribe" name="ctl00$ContentPlaceHolder1$SubScribe1$btnOTPSubmit_SubScribe" onclick="return OTPSubScribe_validation();" title="Submit" type="submit" value="Submit"/>
<input class="submitBtn" id="ContentPlaceHolder1_SubScribe1_btnOTPCancel_Subscribe" name="ctl00$ContentPlaceHolder1$SubScribe1$btnOTPCancel_Subscribe" title="Cancel" type="submit" value="Cancel"/>
</li>
</ul>
</div>
<script type="text/javascript">
var txtVerifiCationCode_Subscribe = document.getElementById('ContentPlaceHolder1_SubScribe1_txtVerifiCationCode_Subscribe');
if (txtVerifiCationCode_Subscribe != null) {
txtVerifiCationCode_Subscribe.autocomplete = 'off';
}
</script>
<noscript class="displayNone">
</noscript>
</div>
<a accesskey="3" href="#wrapper" id="backToTop" title="Go to Navigation">Go to Navigation</a>
<script type="text/javascript">
//<![CDATA[
var theForm = document.forms['form1'];
if (!theForm) {
theForm = document.form1;
}
function __doPostBack(eventTarget, eventArgument) {
if (!theForm.onsubmit || (theForm.onsubmit() != false)) {
theForm.__EVENTTARGET.value = eventTarget;
theForm.__EVENTARGUMENT.value = eventArgument;
theForm.submit();
}
}
//]]>
</script><noscript class="displayNone"> This website uses Javascript </noscript>
<script src="/WebResource.axd?d=ClADoJHxJ6DojNKv6thdFkttJZFjj6vdHImabsUp8zUQDJnkVZiM8pbi_Sbc4juj9NndNDdKDErTI4sooGtq150unpPHOnGyhpLUrNSB_YQ1&t=637811929220000000" type="text/javascript"></script><noscript class="displayNone"> This website uses Javascript </noscript>
</form>
<!-- Start Image Flow -->
<script src="js/contentflow.js" type="text/javascript"></script>
<noscript class="displayNone">
</noscript>
<!-- Start Google Map -->
<script src="https://maps.googleapis.com/maps/api/js?sensor=false&region=IN" type="text/javascript"></script>
<noscript class="displayNone">
</noscript>
<script src="js/gmap3.min.js" type="text/javascript"></script>
<noscript class="displayNone">
</noscript>
<script src="js/jquery.panorama_viewer.js" type="text/javascript"></script>
<!-- Start Functions -->
<script src="js/functions.js" type="text/javascript"></script>
<noscript class="displayNone">
</noscript>
<!--<script src="Javascript/jquery.prettyPhoto.js" type="text/javascript"></script><noscript class="displayNone"></noscript>-->
<script language="javascript" type="text/javascript">
function validate() {
return false;
}
</script>
<noscript class="displayNone">
</noscript>
<!--[if IE 7]>
<script type="text/javascript">
$.fn.uniform = function() { }
</script><noscript class="displayNone"></noscript>
<![endif]-->
<!-- Start Social Media -->
<!--<script src="http://s7.addthis.com/js/250/addthis_widget.js#async=1" type="text/javascript"></script>
<noscript class="displayNone"></noscript>-->
<!-- Start General Script -->
<script src="js/general.js" type="text/javascript"></script>
<noscript class="displayNone">
</noscript>
</body>
</html>
Name=[]
for i in soup.find_all('h3'):
Name.append(i.text)
Name
['Shri Ram Nath Kovind (birth - 1945)', 'Shri Pranab Mukherjee (1935-2020)', 'Smt Pratibha Devisingh Patil (birth - 1934)', 'DR. A.P.J. Abdul Kalam (1931-2015)', 'Shri K. R. Narayanan (1920 - 2005)', 'Dr Shankar Dayal Sharma (1918-1999)', 'Shri R Venkataraman (1910-2009)', 'Giani Zail Singh (1916-1994)', 'Shri Neelam Sanjiva Reddy (1913-1996)', 'Dr. Fakhruddin Ali Ahmed (1905-1977)', 'Shri Varahagiri Venkata Giri (1894-1980)', 'Dr. Zakir Husain (1897-1969)', 'Dr. Sarvepalli Radhakrishnan (1888-1975)', 'Dr. Rajendra Prasad (1884-1963) ']
Term=[]
for i in soup.find_all('p'):
Term.append(i.text)
Term
['Term of Office: 25 July, 2017 to 25 July, 2022 ', 'https://ramnathkovind.nic.in', 'Term of Office: 25 July, 2012 to 25 July, 2017 ', 'http://pranabmukherjee.nic.in', 'Term of Office: 25 July, 2007 to 25 July, 2012 ', 'http://pratibhapatil.nic.in', 'Term of Office: 25 July, 2002 to 25 July, 2007 ', 'http://abdulkalam.nic.in', 'Term of Office: 25 July, 1997 to 25 July, 2002 ', 'Term of Office: 25 July, 1992 to 25 July, 1997 ', 'Term of Office: 25 July, 1987 to 25 July, 1992 ', 'Term of Office: 25 July, 1982 to 25 July, 1987 ', 'Term of Office: 25 July, 1977 to 25 July, 1982 ', 'Term of Office: 24 August, 1974 to 11 February, 1977', 'Term of Office: 3 May, 1969 to 20 July, 1969 and 24 August, 1969 to 24 August, 1974', 'Term of Office: 13 May, 1967 to 3 May, 1969', 'Term of Office: 13 May, 1962 to 13 May, 1967', 'Term of Office: 26 January, 1950 to 13 May, 1962', 'Copyright © 2022 The Rashtrapati Bhavan.', 'Page last updated on: 22-July-2022 15:58 PM\n', "\r\n Website hosted by National Informatics Centre. Website Content provided by the President's Secretariat."]
print(len(Name),len(Term))
14 21
5) Write a python program to scrape cricket rankings from icc-cricket.com. You have to scrape: a) Top 10 ODI teams in men’s cricket along with the records for matches, points and rating.
url=requests.get("https://www.icc-cricket.com/rankings/mens/team-rankings/odi")
url
<Response [200]>
soup=BeautifulSoup(url.text,'html.parser')
soup
<!DOCTYPE html>
<html lang="en">
<head>
<meta content="ICC Men's ODI Team Rankings | ICC" name="twitter:title"/>
<meta content="website" property="og:type"/>
<meta content="summary_large_image" property="twitter:card"/>
<meta content="Official International Cricket Council ranking for One Day International (ODI) cricket teams. Discover latest ICC rankings table, predict upcoming matches, see points and ratings for all teams." name="description"/>
<meta content="@icc" property="twitter:site"/>
<meta content="Official International Cricket Council ranking for One Day International (ODI) cricket teams. Discover latest ICC rankings table, predict upcoming matches, see points and ratings for all teams." name="twitter:description"/>
<meta content="https://www.icc-cricket.com/resources/ver/i/elements/default-thumbnail.jpg" name="twitter:image"/>
<meta content="ICC Men's ODI Team Rankings | ICC" property="og:title"/>
<meta content="https://www.icc-cricket.com/resources/ver/i/elements/default-thumbnail.jpg" property="og:image"/>
<title>ICC Men's ODI Team Rankings | ICC</title>
<meta content="Official International Cricket Council ranking for One Day International (ODI) cricket teams. Discover latest ICC rankings table, predict upcoming matches, see points and ratings for all teams." property="og:description"/>
<!-- Designed and built by Pulselive - www.pulselive.com -->
<script>
var dataLayer = [{
'user_language':'English',
'web_domain':'www.icc-cricket.com',
'page_type':'/rankings/mens/team-rankings/odi'
}];
</script>
<!-- Google Tag Manager -->
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-T7DPH24');</script>
<!-- End Google Tag Manager -->
<script async="" src="https://securepubads.g.doubleclick.net/tag/js/gpt.js"></script>
<meta charset="utf-8"/>
<meta content="width=device-width, initial-scale=1" name="viewport"/>
<meta content="app-id=956440606" name="apple-itunes-app">
<link href="/resources/prod/v8.28.1/manifest.json" rel="manifest"/>
<link href="/resources/prod/v8.28.1/i/elements/favicon.ico" rel="shortcut icon">
<link href="https://plus.google.com/+ICC" rel="publisher"/>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebPage",
"headline": "",
"url": "https://www.icc-cricket.com/rankings/mens/team-rankings/odi",
"creator": ["ICC"]
}
</script>
<title>International Cricket Council</title>
<!-- google platform library -->
<script async="" defer="" src="https://apis.google.com/js/api:client.js?onload=startApp"></script>
<script>
var startApp = function() {
gapi.load('auth2', function(){
// Retrieve the singleton for the GoogleAuth library and set up the client.
auth2 = gapi.auth2.init({
client_id: '844310787835-1rirg6e5plp2jou6v701br43iuo0lkcu.apps.googleusercontent.com'
// Request scopes in addition to 'profile' and 'email'
//scope: 'additional_scope'
});
});
};
</script>
<link href="https://fonts.googleapis.com/css?family=Hind+Siliguri:300,400,500,600" rel="stylesheet"/>
<!-- Polyfill service provided by the FT - https://github.com/Financial-Times/polyfill-service -->
<script src="https://cdn.polyfill.io/v2/polyfill.min.js?features=default,fetch"></script>
<link href="/resources/prod/v8.28.1/styles/screen.css" rel="stylesheet">
<script>
window.RESOURCE_VERSION = 'prod/v8.28.1';
</script>
</link></link></meta></head>
<body>
<!-- Google Tag Manager (noscript) -->
<noscript><iframe height="0" src="https://www.googletagmanager.com/ns.html?id=GTM-T7DPH24" style="display:none;visibility:hidden" width="0"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
<!--
Start of Floodlight Tag: Please do not removeActivity name of this tag: ICC Website - VisitationURL of the webpage where the tag is expected to be placed: This tag must be placed between the <body> and </body> tags, as close as possible to the opening tag. Creation Date: 10/01/2019
-->
<iframe frameborder="0" height="1" src="https://9282652.fls.doubleclick.net/activityi;src=9282652;type=iccre0;cat=iccwe0;u1=[user_language];u2=[user_country];u3=[page_type];u4=[web_domain];dc_lat=;dc_rdid=;tag_for_child_directed_treatment=;tfua=;npa=;ord=[SessionID]?" style="display:none" width="1"></iframe>
<!-- End of Floodlight Tag: Please do not remove -->
<script id="parsely-cfg" src="//cdn.parsely.com/keys/icc-cricket.com/p.js"></script>
<script>
window.fbAsyncInit = function() {
FB.init({
appId : 159513024983374,
autoLogAppEvents : true,
xfbml : true,
version : 'v3.0'
});
};
(function(d, s, id){
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) {return;}
js = d.createElement(s); js.id = id;
js.src = "https://connect.facebook.net/en_US/sdk.js";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));
</script>
<div class="user-account-overlay js-user-account-overlay"></div>
<section class="user-account js-user-account" data-script="sso_user-account" data-widget="user-account">
<div class="user-account__wrapper js-panel-account u-hide">
<div class="user-account__header">
<div class="user-account__close js-account-slider-close-btn" role="button">
<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-close" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg>
</div>
<div class="user-account__user-wrapper">
<div class="user-account__image">
<img alt="User Image" class="u-hide js-account-user-img" src="#"/>
</div>
<div class="user-account__user-info">
<p class="user-account__user-info__text js-account-user">Name Lastname</p>
<p class="user-account__user-info__profile js-profile-completion-info u-hide">
<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-alert" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg>
Profile <span class="js-profile-completion-percentage"></span>% Complete
</p>
</div>
</div>
<div class="user-account__tabs-nav js-tabs-wrapper"></div>
</div>
<div class="account-message js-account-message"></div>
<form autocomplete="off" id="user-account" name="user-account">
<div class="user-account__tab" data-ui-tab="My Account">
<div class="user-account__social-wrapper js-social-wrapper u-hide"></div>
<fieldset>
<div class="form-group-multiple">
<div class="form-group">
<label class="form-group__label" for="given_name">First name *</label>
<input class="form-group__element" id="given_name" maxlength="50" name="given_name" pattern="^[A-Za-z-\s]+$" required="" type="text"/>
<p class="js-error form-error"></p>
</div>
<div class="form-group">
<label class="form-group__label" for="family_name">Last name *</label>
<input class="form-group__element" id="family_name" maxlength="50" name="family_name" pattern="[A-Za-z-\s]+$" required="" type="text"/>
<p class="js-error form-error"></p>
</div>
</div>
<div class="form-group-multiple form-group-multiple--with-button">
<div class="form-group is-disabled js-change-email-input">
<label class="form-group__label" for="email">Email address *</label>
<input autocomplete="off" class="form-group__element" disabled="" id="email" maxlength="50" name="email" type="email"/>
<p class="js-error form-error"></p>
<p class="js-email-exists form-error form-error--email">Email address not available.</p>
</div>
<div class="form-group form-group--button">
<button class="form-btn form-btn--outlined js-change-email" novalidate="" type="button">Change Email</button>
</div>
</div>
<div class="form-group-multiple form-group-multiple--with-button js-account-password">
<div class="form-group is-disabled js-change-password-input">
<label class="form-group__label" for="password">Password *</label>
<input autocomplete="off" class="form-group__element" disabled="" id="password" name="password" placeholder="******" type="password"/>
<p class="js-error form-error"></p>
</div>
<div class="form-group form-group--button">
<button class="form-btn form-btn--outlined js-change-password" novalidate="" type="button">Change Password</button>
</div>
</div>
<div class="form-block form-block">
<div class="form-block__label form-block__label--dob">Date of Birth</div>
<div class="form-group-multiple">
<div class="form-group">
<label class="form-group__label" for="day">Day *</label>
<input class="form-group__element" id="day" min="0" name="day" placeholder="dd" required="" type="number"/>
<p class="js-error form-error"></p>
</div>
<div class="form-group">
<label class="form-group__label" for="month">Month *</label>
<input class="form-group__element" id="month" min="0" name="month" placeholder="mm" required="" type="number"/>
<p class="js-error form-error"></p>
</div>
<div class="form-group">
<label class="form-group__label" for="year">Year *</label>
<input class="form-group__element" id="year" min="0" name="year" placeholder="yyyy" required="" type="number"/>
<p class="js-error form-error"></p>
</div>
</div>
<p class="js-date-error form-error form-error--date">The date of birth is not valid</p>
</div>
<div class="form-block" data-dropdown-type="SSO_COUNTRY" data-widget="form-dropdown">
<div class="form-block__label">Country of residence</div>
<div class="form-dropdown js-dropdown-wrapper"></div>
</div>
</fieldset>
</div>
<div class="user-account__tab" data-ui-tab="My Preferences">
<div class="js-account-prefs u-hide">
<fieldset>
<div class="form-block" data-dropdown-type="SSO_TEAM" data-widget="form-dropdown">
<div class="form-block__label">Your favourite team</div>
<div class="form-dropdown js-dropdown-wrapper"></div>
</div>
<div class="js-contact-prefs user-account__contact-prefs-wrapper">
<div class="user-account__alert">
<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-alert" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg>
<span>Sorry, but your contact preferences will take up to 24hrs to update</span>
</div>
<div class="user-account__contact-prefs">
<div class="form-block form-block--no-margin">
<div class="form-group form-group--checkbox">
<input class="form-group__element" id="allow-contacting" name="allow-contacting" type="checkbox"/>
<label class="form-group__label" for="allow-contacting">I'm happy for the ICC to contact me</label>
</div>
<p class="js-error form-error"></p>
</div>
<div class="form-block form-block--no-margin">
<div class="form-group form-group--checkbox">
<input class="form-group__element" id="allow-partner-contacting" name="allow-partner-contacting" type="checkbox"/>
<label class="form-group__label" for="allow-partner-contacting">I'm happy for the ICC's partners to contact me</label>
</div>
<p class="js-error form-error"></p>
</div>
</div>
</div>
</fieldset>
</div>
<div class="overlay__loader__small js-loader-prefs">
Hold on! Loading your preferences <div class="loader loader--small"></div>
</div>
</div>
<div class="user-account__buttons-wrapper">
<div class="user-account__account-actions js-buttons-wrapper">
<button class="form-btn form-btn--grey is-disabled js-cancel" disabled="">Cancel</button>
<button class="form-btn is-disabled js-submit" disabled="" type="submit">Save Changes</button>
<div class="loader js-loader u-hide"></div>
</div>
<button class="form-btn form-btn--grey js-account-signout u-show-tablet">Sign Out<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-sign-out" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg></button>
</div>
</form>
</div>
<div class="user-account__wrapper js-panel-account-password u-hide">
<form id="account-edit-password" name="account-edit-password" novalidate="">
<div class="user-account__tabs-wrapper">
<h1 class="overlay__title">
Edit your password
<span class="overlay__title__option"><a class="form-cta js-cancel-password" href="#">back</a></span>
</h1>
<div class="form-group form-group--password">
<div class="form-group__password-action js-toggle-password">Show</div>
<label class="form-group__label" for="current-password">Current Password *</label>
<input class="form-group__element" id="current-password" name="current-password" required="" type="password"/>
<p class="js-error form-error"></p>
<p class="js-current-pwd-error form-error form-error--email">Invalid current password</p>
</div>
<a class="form-cta form-cta--right" href="/forgot-password">Forgot password?</a>
<div class="form-block">
<div class="form-group form-group--password">
<div class="form-group__password-action js-toggle-password">Show</div>
<label class="form-group__label" for="new-password">New password *</label>
<input class="form-group__element" id="new-password" name="new-password" required="" type="password"/>
<div class="form-block__verify-password form-block__verify-password--slider js-verify-password">
Password must include...
<ul class="form-block__verify-list">
<li class="js-verify-length">8 or more characters</li>
<li class="js-verify-letters">At least one upper and lower case letter</li>
<li class="js-verify-number">At least one number or symbol</li>
</ul>
</div>
<p class="js-error form-error"></p>
<p class="js-new-pwd-error form-error form-error--email">The new password needs to be different than the current one.</p>
</div>
</div>
<div class="form-group form-group--password">
<div class="form-group__password-action js-toggle-password">Show</div>
<label class="form-group__label" for="confirm-password">Confirm new password *</label>
<input class="form-group__element" id="confirm-password" name="confirm-password" required="" type="password"/>
<p class="js-error form-error"></p>
<p class="js-confirm-pwd-error form-error form-error--email">The confirmation does not match your new password</p>
</div>
</div>
<div class="user-account__buttons-wrapper">
<div class="user-account__account-actions">
<button class="form-btn form-btn--grey js-cancel-password" type="button">Cancel</button>
<button class="form-btn is-disabled js-submit-password" disabled="" type="submit">Change Password</button>
<div class="loader js-password-loader u-hide"></div>
</div>
</div>
</form>
</div>
</section>
<div class="main-navigation__container js-will-glue">
<!-- header -->
<header class="main-navigation">
<section class="main-navigation__top-bar">
<nav class="site-tabs">
<ul class="site-tabs__list">
<li class="site-tabs__item theme theme-icc is-active">
<a class="site-tabs__link" href="https://icc-cricket.com">
ICC Cricket
</a>
</li>
<li class="site-tabs__item theme theme-t20wc">
<a class="site-tabs__link" href="https://t20worldcup.com" rel="noopener" target="_blank">
Men’s T20 World Cup 2022
</a>
</li>
<li class="site-tabs__item theme theme-wcwc">
<a class="site-tabs__link" href="https://www.cricketworldcup.com/" rel="noopener" target="_blank">
Women’s Cricket World Cup 2022
</a>
</li>
<li class="site-tabs__item theme theme-wtc">
<a class="site-tabs__link" href="https://www.icc-cricket.com/world-test-championship/overview" rel="noopener" target="_blank">
World Test Championship
</a>
</li>
</ul></nav>
<div class="sso-nav js-sso-display">
<div class="loader sso-nav__loader">
<div class="loader__ring">
<div></div>
<div></div>
<div></div>
<div></div>
</div>
</div>
</div>
</section>
<section class="main-navigation__wrapper">
<!-- desktop menu -->
<div class="main-navigation__header u-hide-desktop">
<a class="main-navigation__logo" href="/" title="label.returnToHomepage">
<span class="icn icn-logo-icc-nav"></span>
<span class="u-screen-reader">label.ICCHome</span>
</a>
<nav aria-label="Header Navigation" class="main-navigation__desktop-list js-desktop-nav" id="" role="navigation">
<header class="linked-list__header u-show-desktop">
<a class="linked-list__header-search" href="http://icc-cricket.com/search">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-search-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</a>
<span class="js-mobile-nav-btn">
<svg aria-hidden="true" class="icon linked-list__header-close-icn">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-cross" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</span>
</header>
<ul class="linked-list js-dynamic-list">
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
Scores
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
Scores
</button>
</header>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
Men's
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
Men's
</button>
</header>
<li class="linked-list__item">
<a class="linked-list__link" href="/mens-schedule/list">
Fixtures
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/live-cricket/mens-results">
Results
</a>
</li>
</ul>
</li>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
Women's
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
Women's
</button>
</header>
<li class="linked-list__item">
<a class="linked-list__link" href="/womens-schedule/list">
Fixtures
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/live-cricket/womens-results">
Results
</a>
</li>
</ul>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/live-cricket/live">
Live Scores
</a>
</li>
<li class="linked-list__item linked-list__item--wider u-hide-desktop">
</li>
<li class="linked-list__item linked-list__item--full-width u-hide-desktop">
<div class="main-navigation__social-container">
<nav class="social-follow">
<h6 class="social-follow__title">Follow Us</h6>
<a class="social-follow__item social-follow__item--facebook" href="https://www.facebook.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-facebook-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.facebook</span></a>
<a class="social-follow__item social-follow__item--twitter" href="https://twitter.com/ICC" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-twitter-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.twitter</span>
</a>
<a class="social-follow__item social-follow__item--instagram" href="https://www.instagram.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-instagram-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.instagram</span>
</a>
<a class="social-follow__item social-follow__item--youtube" href="https://www.youtube.com/user/CricketICC?cbrd=1" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-youtube-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.youtube</span>
</a>
</nav>
<svg aria-hidden="true" focusable="false" style="width:0;height:0;position:absolute;">
<lineargradient gradienttransform="rotate(45)" id="instagram" x2="1" y2="1">
<stop offset="0%" stop-color="#4c68d6"></stop>
<stop offset="33%" stop-color="#b22d98"></stop>
<stop offset="65%" stop-color="#e85a50"></stop>
<stop offset="100%" stop-color="#fbbb59"></stop>
</lineargradient>
</svg>
</div>
</li>
</ul>
</li>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
Rankings
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
Rankings
</button>
</header>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
Men's
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
Men's
</button>
</header>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/mens/overview">
Overview
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/mens/team-rankings">
Team Rankings
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/mens/player-rankings">
Players Rankings
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/mens/rankings-predictor/test">
Team Rankings Predictor
</a>
</li>
</ul>
</li>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
Women's
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
Women's
</button>
</header>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/womens/overview">
Overview
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/womens/team-rankings">
Team Rankings
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/womens/player-rankings">
Player Rankings
</a>
</li>
</ul>
</li>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
</header>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/mens/player-rankings/comparison">
Player Head to Head
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/about">
About Rankings
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/faqs">
Rankings FAQs
</a>
</li>
</ul>
</li>
<li class="linked-list__item linked-list__item--wider u-hide-desktop">
</li>
<li class="linked-list__item linked-list__item--full-width u-hide-desktop">
<div class="main-navigation__social-container">
<nav class="social-follow">
<h6 class="social-follow__title">Follow Us</h6>
<a class="social-follow__item social-follow__item--facebook" href="https://www.facebook.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-facebook-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.facebook</span></a>
<a class="social-follow__item social-follow__item--twitter" href="https://twitter.com/ICC" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-twitter-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.twitter</span>
</a>
<a class="social-follow__item social-follow__item--instagram" href="https://www.instagram.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-instagram-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.instagram</span>
</a>
<a class="social-follow__item social-follow__item--youtube" href="https://www.youtube.com/user/CricketICC?cbrd=1" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-youtube-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.youtube</span>
</a>
</nav>
<svg aria-hidden="true" focusable="false" style="width:0;height:0;position:absolute;">
<lineargradient gradienttransform="rotate(45)" id="instagram" x2="1" y2="1">
<stop offset="0%" stop-color="#4c68d6"></stop>
<stop offset="33%" stop-color="#b22d98"></stop>
<stop offset="65%" stop-color="#e85a50"></stop>
<stop offset="100%" stop-color="#fbbb59"></stop>
</lineargradient>
</svg>
</div>
</li>
</ul>
</li>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
Events
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
Events
</button>
</header>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
Men's Events
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
Men's Events
</button>
</header>
<li class="linked-list__item">
<a class="linked-list__link" href="https://www.t20worldcup.com">
ICC T20 World Cup
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/world-test-championship">
ICC World Test Championship
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/u19-world-cup/">
ICC U19 Cricket World Cup
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/cricket-world-cup-super-league/fixtures">
ICC CWC Super League
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/cricket-world-cup-challenge-league/news">
ICC CWC Challenge League
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/cricket-world-cup-league-two/news">
ICC CWC League 2
</a>
</li>
</ul>
</li>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
Women's Events
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
Women's Events
</button>
</header>
<li class="linked-list__item">
<a class="linked-list__link" href="https://womens.t20worldcup.com//">
ICC T20 World Cup
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="https://www.cricketworldcup.com/">
ICC Cricket World Cup
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/womens-u19-world-cup/">
ICC U19 T20 World Cup
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/womens-championship">
ICC Women's Championship
</a>
</li>
</ul>
</li>
<li class="linked-list__item linked-list__item--wider u-hide-desktop">
</li>
<li class="linked-list__item linked-list__item--full-width u-hide-desktop">
<div class="main-navigation__social-container">
<nav class="social-follow">
<h6 class="social-follow__title">Follow Us</h6>
<a class="social-follow__item social-follow__item--facebook" href="https://www.facebook.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-facebook-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.facebook</span></a>
<a class="social-follow__item social-follow__item--twitter" href="https://twitter.com/ICC" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-twitter-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.twitter</span>
</a>
<a class="social-follow__item social-follow__item--instagram" href="https://www.instagram.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-instagram-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.instagram</span>
</a>
<a class="social-follow__item social-follow__item--youtube" href="https://www.youtube.com/user/CricketICC?cbrd=1" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-youtube-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.youtube</span>
</a>
</nav>
<svg aria-hidden="true" focusable="false" style="width:0;height:0;position:absolute;">
<lineargradient gradienttransform="rotate(45)" id="instagram" x2="1" y2="1">
<stop offset="0%" stop-color="#4c68d6"></stop>
<stop offset="33%" stop-color="#b22d98"></stop>
<stop offset="65%" stop-color="#e85a50"></stop>
<stop offset="100%" stop-color="#fbbb59"></stop>
</lineargradient>
</svg>
</div>
</li>
</ul>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/news">
News
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/video">
Videos
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/teams">
Teams
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="https://icc.tv">
ICC.TV
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="https://www.icc-cricket.com/shop/">
Shop
</a>
</li>
<li class="linked-list__item no-border u-show-desktop">
<span class="linked-list__title">Explore ICC</span>
</li>
<li class="linked-list__item linked-list__item--promo u-show-desktop">
<section class="app-promo">
<div class="app-promo__top">
<span class="app-promo__icon icn icn-app-icon"></span>
<span class="app-promo__text">Download the official ICC App today</span>
</div>
<div class="app-promo__bottom">
<a class="app-promo__cta icn icn-apple-badge" href="https://itunes.apple.com/gb/app/icc-world-twenty20-india-2016/id956440606?mt=8" target="_blank"></a>
<a class="app-promo__cta icn icn-android-badge" href="https://play.google.com/store/apps/details?id=com.pl.cwc_2015&hl=en_GB" target="_blank"></a>
</div>
</section>
</li>
<li class="linked-list__item linked-list__item--social u-show-desktop">
<div class="main-navigation__social-container">
<nav class="social-follow">
<h6 class="social-follow__title">Follow Us</h6>
<a class="social-follow__item social-follow__item--facebook" href="https://www.facebook.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-facebook-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.facebook</span></a>
<a class="social-follow__item social-follow__item--twitter" href="https://twitter.com/ICC" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-twitter-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.twitter</span>
</a>
<a class="social-follow__item social-follow__item--instagram" href="https://www.instagram.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-instagram-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.instagram</span>
</a>
<a class="social-follow__item social-follow__item--youtube" href="https://www.youtube.com/user/CricketICC?cbrd=1" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-youtube-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.youtube</span>
</a>
</nav>
<svg aria-hidden="true" focusable="false" style="width:0;height:0;position:absolute;">
<lineargradient gradienttransform="rotate(45)" id="instagram" x2="1" y2="1">
<stop offset="0%" stop-color="#4c68d6"></stop>
<stop offset="33%" stop-color="#b22d98"></stop>
<stop offset="65%" stop-color="#e85a50"></stop>
<stop offset="100%" stop-color="#fbbb59"></stop>
</lineargradient>
</svg>
</div>
</li>
</ul>
</nav>
<a class="main-navigation__search" href="http://icc-cricket.com/search">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-search-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</a>
<button aria-controls="sidebar-menu" aria-label="Menu" class="hamburger js-sidebar-btn" type="button">
<span class="hamburger__line hamburger__line--top"></span>
<span class="hamburger__line hamburger__line--middle"></span>
<span class="hamburger__line hamburger__line--bottom"></span>
</button>
</div>
<!-- mobile menu -->
<div class="main-navigation__mobile u-show-desktop" data-widget="mobile-navigation">
<a class="main-navigation__logo" href="/" title="label.returnToHomepage">
<span class="icn icn-logo-icc-nav"></span>
<span class="u-screen-reader">label.ICCHome</span>
</a>
<div class="main-navigation__sub-menu">
<nav class="sub-menu">
<a class="sub-menu__link" href="https://www.icc-cricket.com/mens-schedule/list">
Scores
</a>
<a class="sub-menu__link" href="https://www.icc-cricket.com/rankings/mens/overview">
Rankings
</a>
<a class="sub-menu__link" href="https://www.icc-cricket.com/news">
News
</a>
<a class="sub-menu__link" href="https://welcome.icc.tv/">
ICC.tv
</a>
</nav>
</div>
<button aria-controls="mobile-menu" aria-label="Menu" class="hamburger js-mobile-nav-btn" type="button">
<span class="hamburger__line hamburger__line--top"></span>
<span class="hamburger__line hamburger__line--middle"></span>
<span class="hamburger__line hamburger__line--bottom"></span>
<span class="u-screen-reader">label.toggleMobileNavigation</span>
</button>
<nav aria-label="Header Navigation" class="main-navigation__mobile-list js-mobile-nav" id="mobile-menu" role="navigation">
<header class="linked-list__header u-show-desktop">
<a class="linked-list__header-search" href="http://icc-cricket.com/search">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-search-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</a>
<span class="js-mobile-nav-btn">
<svg aria-hidden="true" class="icon linked-list__header-close-icn">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-cross" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</span>
</header>
<ul class="linked-list js-dynamic-list">
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
Scores
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
Scores
</button>
</header>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
Men's
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
Men's
</button>
</header>
<li class="linked-list__item">
<a class="linked-list__link" href="/mens-schedule/list">
Fixtures
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/live-cricket/mens-results">
Results
</a>
</li>
</ul>
</li>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
Women's
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
Women's
</button>
</header>
<li class="linked-list__item">
<a class="linked-list__link" href="/womens-schedule/list">
Fixtures
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/live-cricket/womens-results">
Results
</a>
</li>
</ul>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/live-cricket/live">
Live Scores
</a>
</li>
<li class="linked-list__item linked-list__item--wider u-hide-desktop">
</li>
<li class="linked-list__item linked-list__item--full-width u-hide-desktop">
<div class="main-navigation__social-container">
<nav class="social-follow">
<h6 class="social-follow__title">Follow Us</h6>
<a class="social-follow__item social-follow__item--facebook" href="https://www.facebook.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-facebook-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.facebook</span></a>
<a class="social-follow__item social-follow__item--twitter" href="https://twitter.com/ICC" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-twitter-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.twitter</span>
</a>
<a class="social-follow__item social-follow__item--instagram" href="https://www.instagram.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-instagram-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.instagram</span>
</a>
<a class="social-follow__item social-follow__item--youtube" href="https://www.youtube.com/user/CricketICC?cbrd=1" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-youtube-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.youtube</span>
</a>
</nav>
<svg aria-hidden="true" focusable="false" style="width:0;height:0;position:absolute;">
<lineargradient gradienttransform="rotate(45)" id="instagram" x2="1" y2="1">
<stop offset="0%" stop-color="#4c68d6"></stop>
<stop offset="33%" stop-color="#b22d98"></stop>
<stop offset="65%" stop-color="#e85a50"></stop>
<stop offset="100%" stop-color="#fbbb59"></stop>
</lineargradient>
</svg>
</div>
</li>
</ul>
</li>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
Rankings
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
Rankings
</button>
</header>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
Men's
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
Men's
</button>
</header>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/mens/overview">
Overview
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/mens/team-rankings">
Team Rankings
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/mens/player-rankings">
Players Rankings
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/mens/rankings-predictor/test">
Team Rankings Predictor
</a>
</li>
</ul>
</li>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
Women's
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
Women's
</button>
</header>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/womens/overview">
Overview
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/womens/team-rankings">
Team Rankings
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/womens/player-rankings">
Player Rankings
</a>
</li>
</ul>
</li>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
</header>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/mens/player-rankings/comparison">
Player Head to Head
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/about">
About Rankings
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/faqs">
Rankings FAQs
</a>
</li>
</ul>
</li>
<li class="linked-list__item linked-list__item--wider u-hide-desktop">
</li>
<li class="linked-list__item linked-list__item--full-width u-hide-desktop">
<div class="main-navigation__social-container">
<nav class="social-follow">
<h6 class="social-follow__title">Follow Us</h6>
<a class="social-follow__item social-follow__item--facebook" href="https://www.facebook.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-facebook-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.facebook</span></a>
<a class="social-follow__item social-follow__item--twitter" href="https://twitter.com/ICC" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-twitter-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.twitter</span>
</a>
<a class="social-follow__item social-follow__item--instagram" href="https://www.instagram.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-instagram-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.instagram</span>
</a>
<a class="social-follow__item social-follow__item--youtube" href="https://www.youtube.com/user/CricketICC?cbrd=1" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-youtube-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.youtube</span>
</a>
</nav>
<svg aria-hidden="true" focusable="false" style="width:0;height:0;position:absolute;">
<lineargradient gradienttransform="rotate(45)" id="instagram" x2="1" y2="1">
<stop offset="0%" stop-color="#4c68d6"></stop>
<stop offset="33%" stop-color="#b22d98"></stop>
<stop offset="65%" stop-color="#e85a50"></stop>
<stop offset="100%" stop-color="#fbbb59"></stop>
</lineargradient>
</svg>
</div>
</li>
</ul>
</li>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
Events
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
Events
</button>
</header>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
Men's Events
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
Men's Events
</button>
</header>
<li class="linked-list__item">
<a class="linked-list__link" href="https://www.t20worldcup.com">
ICC T20 World Cup
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/world-test-championship">
ICC World Test Championship
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/u19-world-cup/">
ICC U19 Cricket World Cup
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/cricket-world-cup-super-league/fixtures">
ICC CWC Super League
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/cricket-world-cup-challenge-league/news">
ICC CWC Challenge League
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/cricket-world-cup-league-two/news">
ICC CWC League 2
</a>
</li>
</ul>
</li>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
Women's Events
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
Women's Events
</button>
</header>
<li class="linked-list__item">
<a class="linked-list__link" href="https://womens.t20worldcup.com//">
ICC T20 World Cup
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="https://www.cricketworldcup.com/">
ICC Cricket World Cup
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/womens-u19-world-cup/">
ICC U19 T20 World Cup
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/womens-championship">
ICC Women's Championship
</a>
</li>
</ul>
</li>
<li class="linked-list__item linked-list__item--wider u-hide-desktop">
</li>
<li class="linked-list__item linked-list__item--full-width u-hide-desktop">
<div class="main-navigation__social-container">
<nav class="social-follow">
<h6 class="social-follow__title">Follow Us</h6>
<a class="social-follow__item social-follow__item--facebook" href="https://www.facebook.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-facebook-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.facebook</span></a>
<a class="social-follow__item social-follow__item--twitter" href="https://twitter.com/ICC" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-twitter-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.twitter</span>
</a>
<a class="social-follow__item social-follow__item--instagram" href="https://www.instagram.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-instagram-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.instagram</span>
</a>
<a class="social-follow__item social-follow__item--youtube" href="https://www.youtube.com/user/CricketICC?cbrd=1" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-youtube-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.youtube</span>
</a>
</nav>
<svg aria-hidden="true" focusable="false" style="width:0;height:0;position:absolute;">
<lineargradient gradienttransform="rotate(45)" id="instagram" x2="1" y2="1">
<stop offset="0%" stop-color="#4c68d6"></stop>
<stop offset="33%" stop-color="#b22d98"></stop>
<stop offset="65%" stop-color="#e85a50"></stop>
<stop offset="100%" stop-color="#fbbb59"></stop>
</lineargradient>
</svg>
</div>
</li>
</ul>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/news">
News
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/video">
Videos
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/teams">
Teams
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="https://icc.tv">
ICC.TV
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="https://www.icc-cricket.com/shop/">
Shop
</a>
</li>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
More
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
More
</button>
</header>
<li class="linked-list__item">
<a class="linked-list__link" href="https://fancraze.com/">
Crictos
<svg aria-hidden="true" class="icon external-link">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-external-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/awards/overview">
ICC Awards
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/hall-of-fame">
Hall of Fame
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="https://www.criiio.com/">
criiio
<svg aria-hidden="true" class="icon external-link">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-external-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/100percentcricket">
100% Cricket
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/mobile">
Official ICC App
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="https://www.icc-cricket.com/shop/">
shop
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/about">
About ICC
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/media-releases">
Media Releases
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/photos">
Photos
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/news/318971">
Commercial Opportunities
</a>
</li>
<li class="linked-list__item linked-list__item--wider u-hide-desktop">
</li>
<li class="linked-list__item linked-list__item--full-width u-hide-desktop">
<div class="main-navigation__social-container">
<nav class="social-follow">
<h6 class="social-follow__title">Follow Us</h6>
<a class="social-follow__item social-follow__item--facebook" href="https://www.facebook.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-facebook-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.facebook</span></a>
<a class="social-follow__item social-follow__item--twitter" href="https://twitter.com/ICC" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-twitter-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.twitter</span>
</a>
<a class="social-follow__item social-follow__item--instagram" href="https://www.instagram.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-instagram-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.instagram</span>
</a>
<a class="social-follow__item social-follow__item--youtube" href="https://www.youtube.com/user/CricketICC?cbrd=1" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-youtube-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.youtube</span>
</a>
</nav>
<svg aria-hidden="true" focusable="false" style="width:0;height:0;position:absolute;">
<lineargradient gradienttransform="rotate(45)" id="instagram" x2="1" y2="1">
<stop offset="0%" stop-color="#4c68d6"></stop>
<stop offset="33%" stop-color="#b22d98"></stop>
<stop offset="65%" stop-color="#e85a50"></stop>
<stop offset="100%" stop-color="#fbbb59"></stop>
</lineargradient>
</svg>
</div>
</li>
</ul>
</li>
<li class="linked-list__item no-border u-show-desktop">
<span class="linked-list__title">Explore ICC</span>
</li>
<li class="linked-list__item no-border theme theme-t20wc">
<a class="linked-list__link" href="https://t20worldcup.com">
T20 World Cup
<svg aria-hidden="true" class="icon external-link">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-external-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</a>
</li>
<li class="linked-list__item no-border theme theme-wcwc">
<a class="linked-list__link" href="https://cricketworldcup.com">
Womens Cricket World Cup
<svg aria-hidden="true" class="icon external-link">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-external-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</a>
</li>
<li class="linked-list__item linked-list__item--promo u-show-desktop">
<section class="app-promo">
<div class="app-promo__top">
<span class="app-promo__icon icn icn-app-icon"></span>
<span class="app-promo__text">Download the official ICC App today</span>
</div>
<div class="app-promo__bottom">
<a class="app-promo__cta icn icn-apple-badge" href="https://itunes.apple.com/gb/app/icc-world-twenty20-india-2016/id956440606?mt=8" target="_blank"></a>
<a class="app-promo__cta icn icn-android-badge" href="https://play.google.com/store/apps/details?id=com.pl.cwc_2015&hl=en_GB" target="_blank"></a>
</div>
</section>
</li>
<li class="linked-list__item linked-list__item--social u-show-desktop">
<div class="main-navigation__social-container">
<nav class="social-follow">
<h6 class="social-follow__title">Follow Us</h6>
<a class="social-follow__item social-follow__item--facebook" href="https://www.facebook.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-facebook-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.facebook</span></a>
<a class="social-follow__item social-follow__item--twitter" href="https://twitter.com/ICC" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-twitter-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.twitter</span>
</a>
<a class="social-follow__item social-follow__item--instagram" href="https://www.instagram.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-instagram-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.instagram</span>
</a>
<a class="social-follow__item social-follow__item--youtube" href="https://www.youtube.com/user/CricketICC?cbrd=1" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-youtube-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.youtube</span>
</a>
</nav>
<svg aria-hidden="true" focusable="false" style="width:0;height:0;position:absolute;">
<lineargradient gradienttransform="rotate(45)" id="instagram" x2="1" y2="1">
<stop offset="0%" stop-color="#4c68d6"></stop>
<stop offset="33%" stop-color="#b22d98"></stop>
<stop offset="65%" stop-color="#e85a50"></stop>
<stop offset="100%" stop-color="#fbbb59"></stop>
</lineargradient>
</svg>
</div>
</li>
</ul>
</nav>
</div>
</section>
<!-- sidebar menu -->
<div class="sidebar-nav js-navigation-sidebar u-hide-desktop" data-widget="sidebar-navigation">
<header class="sidebar-nav__header">
<span class="sidebar-nav__title">
More
</span>
<span class="sidebar-nav__close js-sidebar-btn">
<svg aria-hidden="true" class="icon sidebar-nav__close-icn">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-cross" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</span>
</header>
<div class="sidebar-nav__menu" tabindex="0">
<ul>
<li class="sidebar-nav__item" data-label="Crictos">
<a class="sidebar-nav__link sidebar-nav__link--in-sidebar-nav" href="https://fancraze.com/">
Crictos
<svg aria-hidden="true" class="icon external-link">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-external-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</a>
</li>
<li class="sidebar-nav__item" data-label="ICC Awards">
<a class="sidebar-nav__link sidebar-nav__link--in-sidebar-nav" href="/awards/overview">
ICC Awards
</a>
</li>
<li class="sidebar-nav__item" data-label="Hall of Fame">
<a class="sidebar-nav__link sidebar-nav__link--in-sidebar-nav" href="/hall-of-fame">
Hall of Fame
</a>
</li>
<li class="sidebar-nav__item" data-label="criiio">
<a class="sidebar-nav__link sidebar-nav__link--in-sidebar-nav" href="https://www.criiio.com/">
criiio
<svg aria-hidden="true" class="icon external-link">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-external-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</a>
</li>
<li class="sidebar-nav__item" data-label="100% Cricket">
<a class="sidebar-nav__link sidebar-nav__link--in-sidebar-nav" href="/100percentcricket">
100% Cricket
</a>
</li>
<li class="sidebar-nav__item" data-label="Official ICC App">
<a class="sidebar-nav__link sidebar-nav__link--in-sidebar-nav" href="/mobile">
Official ICC App
</a>
</li>
<li class="sidebar-nav__item" data-label="shop">
<a class="sidebar-nav__link sidebar-nav__link--in-sidebar-nav" href="https://www.icc-cricket.com/shop/">
shop
</a>
</li>
<li class="sidebar-nav__item" data-label="About ICC">
<a class="sidebar-nav__link sidebar-nav__link--in-sidebar-nav" href="/about">
About ICC
</a>
</li>
<li class="sidebar-nav__item" data-label="Media Releases">
<a class="sidebar-nav__link sidebar-nav__link--in-sidebar-nav" href="/media-releases">
Media Releases
</a>
</li>
<li class="sidebar-nav__item" data-label="Photos">
<a class="sidebar-nav__link sidebar-nav__link--in-sidebar-nav" href="/photos">
Photos
</a>
</li>
<li class="sidebar-nav__item" data-label="Commercial Opportunities">
<a class="sidebar-nav__link sidebar-nav__link--in-sidebar-nav" href="/news/318971">
Commercial Opportunities
</a>
</li>
</ul>
</div>
</div>
</header>
</div>
<main class="js-body-content" id="main-content" tabindex="0">
<button class="scroll-to-top" data-script="icc_scroll-to-top" data-widget="scroll-to-top">
<svg class="scroll-to-top__icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-up-arrow" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<div aria-hidden="true" class="scroll-to-top__mask">
<svg class="scroll-to-top__icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-up-arrow" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</div>
<span class="u-screen-reader">Scroll to Top</span>
</button>
<header class="page-header page-header--rankings">
<div class="wrapper">
<div class="col-12">
<div class="page-header__banner">
<a class="page-logo" data-tracking-url="https://track.adform.net/adfserve/?bn=20093364;srctype=4;ord=%%ADFRND%%" data-widget="impression-tracker" href="http://track.adform.net/C/?bn=20093364" target="_blank">
<span class="icn icn-logo-mrf-rankings"></span>
</a>
</div>
<div class="share share-- share--vertical" data-widget="share">
<div class="share__container">
<div class="share__btn js-share-btn">
<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-share" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg>
<div class="share__title">Share</div>
</div>
<ul class="share__list">
<li class="share__item share__item--facebook js-social-option" data-social-service="facebook" role="button" tabindex="0">
<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-facebook" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg>
</li>
<li class="share__item share__item--twitter js-social-option" data-social-service="twitter" role="button" tabindex="0">
<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-twitter" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg>
</li>
<li class="share__item share__item--messenger u-show-tablet js-social-option" data-social-service="facebookMessenger" role="buttn" tabindex="0">
<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-facebook-messenger" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg>
</li>
<li class="share__item share__item--whatsapp u-show-tablet js-social-option" data-social-service="whatsapp" role="button" tabindex="0">
<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-whatsapp" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg>
</li>
<li class="share__item share__item--url u-hide-tablet js-copy-button" role="button" tabindex="0">
<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-url" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg>
<div class="share__copy-message js-copy-message">URL Copied</div>
</li>
</ul>
</div>
</div>
</div>
</div>
</header>
<div class="l-sticky-side-nav">
<div class="l-sticky-side-nav__nav">
<div class="rankings-menu" data-script="icc_rankings-menu" data-widget="rankings-menu">
<div class="drop-down-tablet js-drop-down">
<div class="drop-down__clickzone js-drop-down-trigger" role="button" tabindex="0"></div>
<div class="drop-down__label">
Men's
</div>
<div class="drop-down__current">
Team Rankings
<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-caret-down" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg>
</div>
<div class="drop-down__dropdown-list js-drop-down-options">
<div class="rankings-menu__tab-container u-hide-tablet">
<nav class="content-tabs">
<ul class="block-list-2 u-no-font-size" role="tablist">
<li class="u-no-padding u-no-margin">
<a class="content-tabs__tab content-tabs__tab--active" href="/rankings/mens/overview">Men's</a>
</li>
<li class="u-no-padding u-no-margin">
<a class="content-tabs__tab" href="/rankings/womens/overview">Women's</a>
</li>
</ul>
</nav>
</div>
<div class="active tab-content">
<h3 class="rankings-menu__title">Men's</h3>
<ul class="rankings-menu__list">
<li class="rankings-menu__item rankings-menu__item--user-selection js-team-btn">
<a class="rankings-menu__link js-fav-team-link" href="#">Select your team</a>
<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg>
<div class="rankings-menu__notch js-notch"></div>
<svg class="rankings-menu__notch-icon icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-star" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg>
<li class="rankings-menu__item">
<a class="rankings-menu__link" href="/rankings/mens/overview">Overview<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg></a>
</li>
<li class="rankings-menu__item">
<a class="rankings-menu__link" href="/rankings/mens/team-rankings">Team Rankings<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg></a>
</li>
<li class="rankings-menu__item">
<a class="rankings-menu__link" href="/rankings/mens/player-rankings">Player Rankings<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg></a>
</li>
<li class="rankings-menu__item">
<a class="rankings-menu__link" href="/rankings/mens/player-rankings/comparison">Player Comparison<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg></a>
</li>
<li class="rankings-menu__item">
<a class="rankings-menu__link" href="/rankings/mens/rankings-predictor/">Team Rankings Predictor<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg></a>
</li>
<li class="rankings-menu__item">
<a class="rankings-menu__link" href="/rankings/about">About the Rankings<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg></a>
</li>
<li class="rankings-menu__item">
<a class="rankings-menu__link" href="/rankings/faqs">Player Rankings FAQs<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg></a>
</li>
</li></ul>
</div>
<div class="tab-content">
<h3 class="rankings-menu__title">Women's</h3>
<ul class="rankings-menu__list">
<li class="rankings-menu__item">
<a class="rankings-menu__link" href="/rankings/womens/overview">Overview<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg></a>
</li>
<li class="rankings-menu__item">
<a class="rankings-menu__link" href="/rankings/womens/team-rankings">Team Rankings<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg></a>
</li>
<li class="rankings-menu__item">
<a class="rankings-menu__link" href="/rankings/womens/player-rankings">Player Rankings<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg></a>
</li>
<li class="rankings-menu__item">
<a class="rankings-menu__link" href="/rankings/about">About the Rankings<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg></a>
</li>
<li class="rankings-menu__item">
<a class="rankings-menu__link" href="/rankings/faqs">Player Rankings FAQs<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg></a>
</li>
<li class="rankings-menu__item">
<a class="rankings-menu__link" href="/rankings/womens-t20i-faq">T20I Team Rankings FAQs<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg></a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="l-sticky-side-nav__content">
<section class="ranking-format-menu">
<div class="wrapper wrapper--sticky">
<div class="col-12">
<div class="content-tabs">
<ul class="inline-list">
<li class="ranking-format-menu__item">
<a class="content-tabs__tab" href="test">Test</a>
</li>
<li class="ranking-format-menu__item">
<a class="content-tabs__tab content-tabs__tab--active" href="odi">ODI</a>
</li>
<li class="ranking-format-menu__item">
<a class="content-tabs__tab" href="t20i">T20I</a>
</li>
</ul>
</div>
</div>
</div>
</section>
<div class="wrapper wrapper--sticky">
<div class="col-12">
<div class="gam-ad-embed u-hide-phablet">
<div class="gam-ad-embed__container">
<script>
window.googletag = window.googletag || {cmd: []};
googletag.cmd.push(function() {
googletag.defineSlot('/182539303/ICC_Live_TeamODIRankings_Web_728x90', [728, 90], 'div-gpt-ad-1631699481989-0').addService(googletag.pubads());
googletag.pubads().enableSingleRequest();
googletag.pubads().collapseEmptyDivs();
googletag.enableServices();
});
</script>
<!-- /182539303/ICC_Live_TeamODIRankings_Web_728x90 -->
<div id="div-gpt-ad-1631699481989-0" style="min-width: 728px; min-height: 90px;">
<script>
googletag.cmd.push(function() { googletag.display('div-gpt-ad-1631699481989-0'); });
</script>
</div>
</div>
</div>
<div class="gam-ad-embed u-show-phablet">
<div class="gam-ad-embed__container">
<script>
window.googletag = window.googletag || {cmd: []};
googletag.cmd.push(function() {
googletag.defineSlot('/182539303/ICC_Live_TeamODIRankings_Mobile_320x50', [320, 50], 'div-gpt-ad-1631699775893-0').addService(googletag.pubads());
googletag.pubads().enableSingleRequest();
googletag.pubads().collapseEmptyDivs();
googletag.enableServices();
});
</script>
<!-- /182539303/ICC_Live_TeamODIRankings_Mobile_320x50 -->
<div id="div-gpt-ad-1631699775893-0" style="min-width: 320px; min-height: 50px;">
<script>
googletag.cmd.push(function() { googletag.display('div-gpt-ad-1631699775893-0'); });
</script>
</div>
</div>
</div>
<div class="content-ad content-ad--rankings u-center">
<!-- Adform publisher tag -->
<!-- Generic Banner - Homepage (mobile 320x50) placement -->
<div class="content-ad--mobile">
<script data-adfscript="adx.adform.net/adx/?mid=653000"></script> <script async="" defer="" src="//s1.adform.net/banners/scripts/adx.js"></script>
</div>
<!-- Adform publisher tag -->
<!-- Generic Banner - Homepage (desktop 728x90) placement -->
<div class="content-ad--desktop">
<script data-adfscript="adx.adform.net/adx/?mid=652998"></script> <script async="" defer="" src="//s1.adform.net/banners/scripts/adx.js"></script>
</div>
</div>
<section class="widget rankings-widget" data-script="icc_rankings" data-widget="full-team-rankings">
<div class="rankings-block__title-container">
<div class="rankings-block__type t-odi">odi</div>
<h4>Men's ODI Team Rankings</h4>
</div>
<div class="rankings-block__meta-container">
<div class="rankings-table__last-updated">Last updated (GMT) - 22 Sep 2022</div>
<div class="rankings-table__last-updated">Developed by David Kendix</div>
</div>
<div class="rankings-block__container full rankings-table">
<table class="table">
<thead>
<tr class="table-head">
<th class="table-head__cell u-text-right">Pos</th>
<th class="table-head__cell rankings-table__team">
<span class="u-hide-mobile">Team</span>
<span class="u-show-mobile">T</span>
</th>
<th class="table-head__cell u-center-text">
<span class="u-hide-mobile">Matches</span>
<span class="u-show-mobile">M</span>
</th>
<th class="table-head__cell u-center-text">
<span class="u-hide-mobile">Points</span>
<span class="u-show-mobile">P</span>
</th>
<th class="table-head__cell u-text-right rating">
<span class="u-hide-mobile">Rating</span>
<span class="u-show-mobile">R</span>
</th>
</tr>
</thead>
<tbody>
<tr class="rankings-block__banner">
<td class="rankings-block__banner--pos">1</td>
<td class="rankings-block__banner--team-name">
<span class="flag-30 rankings-block__banner--flag ENG"></span>
<span class="u-hide-phablet">England</span>
<span class="u-show-phablet">ENG</span>
</td>
<td class="rankings-block__banner--matches">27</td>
<td class="rankings-block__banner--points">3,226</td>
<td class="rankings-block__banner--rating u-text-right">
119
<span class="circle-branding circle-branding--top"></span>
<span class="circle-branding circle-branding--bottom"></span>
</td>
</tr>
<tr class="table-body" data-team-id="16">
<td class="table-body__cell table-body__cell--position u-text-right">2</td>
<td class="table-body__cell rankings-table__team">
<span class="flag-15 table-body_logo NZ"></span>
<span class="u-hide-phablet">New Zealand</span>
<span class="u-show-phablet">NZ</span>
</td>
<td class="table-body__cell u-center-text">22</td>
<td class="table-body__cell u-center-text">2,508</td>
<td class="table-body__cell u-text-right rating">114</td>
</tr>
<tr class="table-body" data-team-id="14">
<td class="table-body__cell table-body__cell--position u-text-right">3</td>
<td class="table-body__cell rankings-table__team">
<span class="flag-15 table-body_logo IND"></span>
<span class="u-hide-phablet">India</span>
<span class="u-show-phablet">IND</span>
</td>
<td class="table-body__cell u-center-text">31</td>
<td class="table-body__cell u-center-text">3,447</td>
<td class="table-body__cell u-text-right rating">111</td>
</tr>
<tr class="table-body" data-team-id="20">
<td class="table-body__cell table-body__cell--position u-text-right">4</td>
<td class="table-body__cell rankings-table__team">
<span class="flag-15 table-body_logo PAK"></span>
<span class="u-hide-phablet">Pakistan</span>
<span class="u-show-phablet">PAK</span>
</td>
<td class="table-body__cell u-center-text">22</td>
<td class="table-body__cell u-center-text">2,354</td>
<td class="table-body__cell u-text-right rating">107</td>
</tr>
<tr class="table-body" data-team-id="15">
<td class="table-body__cell table-body__cell--position u-text-right">5</td>
<td class="table-body__cell rankings-table__team">
<span class="flag-15 table-body_logo AUS"></span>
<span class="u-hide-phablet">Australia</span>
<span class="u-show-phablet">AUS</span>
</td>
<td class="table-body__cell u-center-text">29</td>
<td class="table-body__cell u-center-text">3,071</td>
<td class="table-body__cell u-text-right rating">106</td>
</tr>
<tr class="table-body" data-team-id="19">
<td class="table-body__cell table-body__cell--position u-text-right">6</td>
<td class="table-body__cell rankings-table__team">
<span class="flag-15 table-body_logo SA"></span>
<span class="u-hide-phablet">South Africa</span>
<span class="u-show-phablet">SA</span>
</td>
<td class="table-body__cell u-center-text">21</td>
<td class="table-body__cell u-center-text">2,111</td>
<td class="table-body__cell u-text-right rating">101</td>
</tr>
<tr class="table-body" data-team-id="22">
<td class="table-body__cell table-body__cell--position u-text-right">7</td>
<td class="table-body__cell rankings-table__team">
<span class="flag-15 table-body_logo BAN"></span>
<span class="u-hide-phablet">Bangladesh</span>
<span class="u-show-phablet">BAN</span>
</td>
<td class="table-body__cell u-center-text">30</td>
<td class="table-body__cell u-center-text">2,753</td>
<td class="table-body__cell u-text-right rating">92</td>
</tr>
<tr class="table-body" data-team-id="13">
<td class="table-body__cell table-body__cell--position u-text-right">8</td>
<td class="table-body__cell rankings-table__team">
<span class="flag-15 table-body_logo SL"></span>
<span class="u-hide-phablet">Sri Lanka</span>
<span class="u-show-phablet">SL</span>
</td>
<td class="table-body__cell u-center-text">29</td>
<td class="table-body__cell u-center-text">2,658</td>
<td class="table-body__cell u-text-right rating">92</td>
</tr>
<tr class="table-body" data-team-id="21">
<td class="table-body__cell table-body__cell--position u-text-right">9</td>
<td class="table-body__cell rankings-table__team">
<span class="flag-15 table-body_logo WI"></span>
<span class="u-hide-phablet">West Indies</span>
<span class="u-show-phablet">WI</span>
</td>
<td class="table-body__cell u-center-text">41</td>
<td class="table-body__cell u-center-text">2,902</td>
<td class="table-body__cell u-text-right rating">71</td>
</tr>
<tr class="table-body" data-team-id="17">
<td class="table-body__cell table-body__cell--position u-text-right">10</td>
<td class="table-body__cell rankings-table__team">
<span class="flag-15 table-body_logo AFG"></span>
<span class="u-hide-phablet">Afghanistan</span>
<span class="u-show-phablet">AFG</span>
</td>
<td class="table-body__cell u-center-text">18</td>
<td class="table-body__cell u-center-text">1,238</td>
<td class="table-body__cell u-text-right rating">69</td>
</tr>
<tr class="table-body" data-team-id="12">
<td class="table-body__cell table-body__cell--position u-text-right">11</td>
<td class="table-body__cell rankings-table__team">
<span class="flag-15 table-body_logo IRE"></span>
<span class="u-hide-phablet">Ireland</span>
<span class="u-show-phablet">IRE</span>
</td>
<td class="table-body__cell u-center-text">23</td>
<td class="table-body__cell u-center-text">1,214</td>
<td class="table-body__cell u-text-right rating">53</td>
</tr>
<tr class="table-body" data-team-id="69">
<td class="table-body__cell table-body__cell--position u-text-right">12</td>
<td class="table-body__cell rankings-table__team">
<span class="flag-15 table-body_logo SCO"></span>
<span class="u-hide-phablet">Scotland</span>
<span class="u-show-phablet">SCO</span>
</td>
<td class="table-body__cell u-center-text">27</td>
<td class="table-body__cell u-center-text">1,254</td>
<td class="table-body__cell u-text-right rating">46</td>
</tr>
<tr class="table-body" data-team-id="18">
<td class="table-body__cell table-body__cell--position u-text-right">13</td>
<td class="table-body__cell rankings-table__team">
<span class="flag-15 table-body_logo ZIM"></span>
<span class="u-hide-phablet">Zimbabwe</span>
<span class="u-show-phablet">ZIM</span>
</td>
<td class="table-body__cell u-center-text">26</td>
<td class="table-body__cell u-center-text">1,098</td>
<td class="table-body__cell u-text-right rating">42</td>
</tr>
<tr class="table-body" data-team-id="124">
<td class="table-body__cell table-body__cell--position u-text-right">14</td>
<td class="table-body__cell rankings-table__team">
<span class="flag-15 table-body_logo NAM"></span>
<span class="u-hide-phablet">Namibia</span>
<span class="u-show-phablet">NAM</span>
</td>
<td class="table-body__cell u-center-text">19</td>
<td class="table-body__cell u-center-text">642</td>
<td class="table-body__cell u-text-right rating">34</td>
</tr>
<tr class="table-body" data-team-id="68">
<td class="table-body__cell table-body__cell--position u-text-right">15</td>
<td class="table-body__cell rankings-table__team">
<span class="flag-15 table-body_logo NED"></span>
<span class="u-hide-phablet">Netherlands</span>
<span class="u-show-phablet">NED</span>
</td>
<td class="table-body__cell u-center-text">21</td>
<td class="table-body__cell u-center-text">673</td>
<td class="table-body__cell u-text-right rating">32</td>
</tr>
<tr class="table-body" data-team-id="155">
<td class="table-body__cell table-body__cell--position u-text-right">16</td>
<td class="table-body__cell rankings-table__team">
<span class="flag-15 table-body_logo UAE"></span>
<span class="u-hide-phablet">UAE</span>
<span class="u-show-phablet">UAE</span>
</td>
<td class="table-body__cell u-center-text">22</td>
<td class="table-body__cell u-center-text">697</td>
<td class="table-body__cell u-text-right rating">32</td>
</tr>
<tr class="table-body" data-team-id="128">
<td class="table-body__cell table-body__cell--position u-text-right">17</td>
<td class="table-body__cell rankings-table__team">
<span class="flag-15 table-body_logo OMA"></span>
<span class="u-hide-phablet">Oman</span>
<span class="u-show-phablet">OMA</span>
</td>
<td class="table-body__cell u-center-text">30</td>
<td class="table-body__cell u-center-text">919</td>
<td class="table-body__cell u-text-right rating">31</td>
</tr>
<tr class="table-body" data-team-id="157">
<td class="table-body__cell table-body__cell--position u-text-right">18</td>
<td class="table-body__cell rankings-table__team">
<span class="flag-15 table-body_logo USA"></span>
<span class="u-hide-phablet">United States</span>
<span class="u-show-phablet">USA</span>
</td>
<td class="table-body__cell u-center-text">27</td>
<td class="table-body__cell u-center-text">641</td>
<td class="table-body__cell u-text-right rating">24</td>
</tr>
<tr class="table-body" data-team-id="125">
<td class="table-body__cell table-body__cell--position u-text-right">19</td>
<td class="table-body__cell rankings-table__team">
<span class="flag-15 table-body_logo NEP"></span>
<span class="u-hide-phablet">Nepal</span>
<span class="u-show-phablet">NEP</span>
</td>
<td class="table-body__cell u-center-text">22</td>
<td class="table-body__cell u-center-text">331</td>
<td class="table-body__cell u-text-right rating">15</td>
</tr>
<tr class="table-body" data-team-id="133">
<td class="table-body__cell table-body__cell--position u-text-right">20</td>
<td class="table-body__cell rankings-table__team">
<span class="flag-15 table-body_logo PNG"></span>
<span class="u-hide-phablet">Papua New Guinea</span>
<span class="u-show-phablet">PNG</span>
</td>
<td class="table-body__cell u-center-text">26</td>
<td class="table-body__cell u-center-text">209</td>
<td class="table-body__cell u-text-right rating">8</td>
</tr>
</tbody>
</table>
</div>
</section>
<div class="promo promo--full rankings-table">
<div class="promo__image-container">
<picture class="promo__image">
<source media="(max-width: 500px)" srcset="https://resources.pulse.icc-cricket.com/ICC/photo/2017/02/07/2fb1280c-5d1b-4dee-93d4-c586996065cf/GettyImages-468776142.jpg, https://resources.pulse.icc-cricket.com/ICC/photo/2017/02/07/bc292450-c3fa-4345-9244-66fbe0179709/GettyImages-468776142.jpg 2x"/>
<source srcset="https://resources.pulse.icc-cricket.com/ICC/photo/2017/02/07/10013c12-da7d-4c41-b261-1c9f626da0c8/GettyImages-468776142.jpg, https://resources.pulse.icc-cricket.com/ICC/photo/2017/02/07/f20245f7-3ffb-4f6d-8a18-d25804e1c809/GettyImages-468776142.jpg 2x"/>
<img alt="Play the MRF Tyres ICC Rankings Predictor" class="poly-object-fit" src="https://resources.pulse.icc-cricket.com/ICC/photo/2017/02/07/10013c12-da7d-4c41-b261-1c9f626da0c8/GettyImages-468776142.jpg">
</img></picture>
</div>
<div class="promo__text-container promo__text-container--with-image">
<h3 class="promo__title">Play the MRF Tyres ICC Rankings Predictor</h3>
<p class="promo__text">Predict the outcome of upcoming ODI cricket fixtures and see how the MRF Tyres ICC Rankings change.</p>
<a class="promo__cta btn" href="/rankings/mens/rankings-predictor/odi">Play Now</a>
</div>
</div>
</div>
</div>
</div>
</div>
</main>
<footer class="footer" role="contentinfo">
<section class="partners">
<div class="partners__top-level">
<section class="partners__container">
<div class="partners__list partners__list--large">
<div class="partners__item">
<a aria-label="Nissan" class="partners__link" href="http://track.adform.net/C/?bn=18235072" target="_blank" title="Nissan">
<img alt="Nissan" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/06/30/ceabcea6-36b3-40c5-ab00-7ad8b66ecd73/nissan-2.png?width=142&height=46"/>
</a>
</div>
<div class="partners__item">
<a aria-label="Oppo" class="partners__link" href="http://track.adform.net/C/?bn=18236015" target="_blank" title="Oppo">
<img alt="Oppo" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/06/30/ea209fd5-065d-47aa-8ba7-fe70a3bcf8aa/Frame-233.png?width=142&height=46"/>
</a>
</div>
<div class="partners__item">
<a aria-label="MRF Tyres" class="partners__link" href="http://track.adform.net/C/?bn=18235782" title="MRF Tyres">
<img alt="MRF Tyres" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/06/30/c1afea15-4875-4cba-9710-547729daa841/Frame-235.png?width=142&height=46"/>
</a>
</div>
<div class="partners__item">
<a aria-label="Booking" class="partners__link" href="https://www.booking.com/" target="_blank" title="Booking">
<img alt="Booking" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/06/30/8bb6e96d-2b69-4d8e-acc0-568602baba2d/Frame-234.png?width=142&height=46"/>
</a>
</div>
<div class="partners__item">
<a aria-label="BYJU" class="partners__link" href="https://byjus.com/" target="_blank" title="BYJU">
<img alt="BYJU" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/06/30/9b3ea6a2-25f4-478e-b8aa-0e1b7d3d0e2a/Frame-237.png?width=142&height=46"/>
</a>
</div>
<div class="partners__item">
<a aria-label="Emirates" class="partners__link" href="http://track.adform.net/C/?bn=18236184" title="Emirates">
<img alt="Emirates" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/06/30/d9fb726d-2cbd-41c8-9aaf-bd94f37a8e4a/Frame-236.png?width=142&height=46"/>
</a>
</div>
</div>
</section>
</div>
<div class="partners__block">
<section class="partners__container">
<div class="partners__list partners__list--medium">
<div class="partners__item">
<a aria-label="Bira 91" class="partners__link" href="https://www.bira91.com/" target="_blank" title="Bira 91">
<img alt="Bira 91" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/06/30/587180d3-1347-4152-93ab-318460743d55/Frame-239.png?width=95&height=31"/>
</a>
</div>
<div class="partners__item">
<a aria-label="Eatfit" class="partners__link" href="https://www.eatfit.in/" target="_blank" title="Eatfit">
<img alt="Eatfit" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/07/04/674c634d-7f3c-4dfc-989c-5d72fed70d79/eatfit.png?width=95&height=31"/>
</a>
</div>
<div class="partners__item">
<a aria-label="Coca Cola" class="partners__link" href="https://www.coca-colaindia.com/brands/thums-up" title="Coca Cola">
<img alt="Coca Cola" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/08/24/8f5e6ad2-0dfe-4e99-896c-20b034763dec/TU-Taste-The-Thunder-Logo.png?width=95&height=31"/>
</a>
</div>
<div class="partners__item">
<a aria-label="Upstox" class="partners__link" href="https://upstox.com/" target="_blank" title="Upstox">
<img alt="Upstox" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/06/30/70fab62f-38e2-47bb-8a3b-ffa437b1c6ac/Frame-240.png?width=95&height=31"/>
</a>
</div>
<div class="partners__item">
<a aria-label="PostPe" class="partners__link" href="https://ftx.com/" target="_blank" title="PostPe">
<img alt="PostPe" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/06/30/4c2e8d25-2744-4a26-9345-94cfafd132d3/Frame-243.png?width=95&height=31"/>
</a>
</div>
<div class="partners__item">
<a aria-label="FTX" class="partners__link" href="https://ftx.com/" target="_blank" title="FTX">
<img alt="FTX" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/06/30/8055a53b-e8d8-4622-9d0d-a833d86bff58/Frame-242.png?width=95&height=31"/>
</a>
</div>
<div class="partners__item">
<a aria-label="NIUM" class="partners__link" href="https://www.nium.com/" target="_blank" title="NIUM">
<img alt="NIUM" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/06/30/8eb1e98b-a9dc-4db8-84b0-4635582f96b0/nium.png?width=95&height=31"/>
</a>
</div>
</div>
</section>
<section class="partners__container">
<div class="partners__list partners__list--medium">
<div class="partners__item">
<a aria-label="Royal Stag" class="partners__link" href="https://www.pernod-ricard.com/en/brands/our-brands/royal-stag/" target="_blank" title="Royal Stag">
<img alt="Royal Stag" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/06/30/146eb588-7d36-4825-b06a-72a2533af1f0/Frame-250.png?width=95&height=31"/>
</a>
</div>
<div class="partners__item">
<a aria-label="Fantasy Cricket" class="partners__link" href="https://www.dream11.com/fantasy-cricket" target="_blank" title="Fantasy Cricket">
<img alt="Fantasy Cricket" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/06/30/d08b4b92-a224-4484-8269-22184d633d74/Frame-248.png?width=95&height=31"/>
</a>
</div>
<div class="partners__item">
<a aria-label="Jacobs Creek" class="partners__link" href="https://www.jacobscreek.com/en-gb" target="_blank" title="Jacobs Creek">
<img alt="Jacobs Creek" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/06/30/f44c1356-91b7-49c2-bb2a-8db9cd20133d/Jacobs-.png?width=95&height=31"/>
</a>
</div>
<div class="partners__item">
<a aria-label="FanCraze" class="partners__link" href="https://www.fancraze.com" title="FanCraze">
<img alt="FanCraze" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/06/30/51c3576a-0e91-4246-8d36-85fc5037cec6/Frame-249.png?width=95&height=31"/>
</a>
</div>
</div>
</section>
</div>
<div class="partners__block partners__block--inline">
<section class="partners__container">
<h3 class="partners__title">BROADCAST PARTNER</h3>
<div class="partners__list partners__list--large">
<div class="partners__item">
<a aria-label="Star Sports" class="partners__link" href="http://track.adform.net/C/?bn=18238489" target="_blank" title="Star Sports">
<img alt="Star Sports" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/06/30/6becb07e-9e85-4221-a4cf-43d1b58c5e46/star-sports.png?width=142&height=46"/>
</a>
</div>
</div>
</section>
<section class="partners__container">
<h3 class="partners__title">SOCIAL RESPONSIBILITY</h3>
<div class="partners__list partners__list--large">
<div class="partners__item">
<a aria-label="Cricket for Good" class="partners__link" href="https://www.icc-cricket.com/about/the-icc/cricket-for-good" target="_blank" title="Cricket for Good">
<img alt="Cricket for Good" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/06/30/66d0bd38-4492-4742-ae2f-a5a2f3ea7032/cricket4good.png?width=142&height=46"/>
</a>
</div>
</div>
</section>
</div>
</section>
<div class="footer__app-promo u-show-tablet">
<section class="app-promo">
<div class="app-promo__top">
<span class="app-promo__icon icn icn-app-icon"></span>
<span class="app-promo__text">Download the official ICC App today</span>
</div>
<div class="app-promo__bottom">
<a class="app-promo__cta icn icn-apple-badge" href="https://itunes.apple.com/gb/app/icc-world-twenty20-india-2016/id956440606?mt=8" target="_blank"></a>
<a class="app-promo__cta icn icn-android-badge" href="https://play.google.com/store/apps/details?id=com.pl.cwc_2015&hl=en_GB" target="_blank"></a>
</div>
</section>
</div>
<div class="footer__main">
<nav class="footer__links">
<a class="footer__link" href="http://www.icc-cricket.com/about/the-icc/legal-notices/website-terms-of-use">
Legal Notice
</a>
<a class="footer__link" href="http://www.icc-cricket.com/about/the-icc/legal-notices/privacy-policy">
Privacy Policy
</a>
</nav>
<div class="footer__social">
<nav class="social-follow">
<h6 class="social-follow__title">Follow Us</h6>
<a class="social-follow__item social-follow__item--facebook" href="https://www.facebook.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-facebook-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.facebook</span></a>
<a class="social-follow__item social-follow__item--twitter" href="https://twitter.com/ICC" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-twitter-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.twitter</span>
</a>
<a class="social-follow__item social-follow__item--instagram" href="https://www.instagram.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-instagram-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.instagram</span>
</a>
<a class="social-follow__item social-follow__item--youtube" href="https://www.youtube.com/user/CricketICC?cbrd=1" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-youtube-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.youtube</span>
</a>
</nav>
<svg aria-hidden="true" focusable="false" style="width:0;height:0;position:absolute;">
<lineargradient gradienttransform="rotate(45)" id="instagram" x2="1" y2="1">
<stop offset="0%" stop-color="#4c68d6"></stop>
<stop offset="33%" stop-color="#b22d98"></stop>
<stop offset="65%" stop-color="#e85a50"></stop>
<stop offset="100%" stop-color="#fbbb59"></stop>
</lineargradient>
</svg>
</div>
</div>
<div class="footer__corporate">
<span class="footer__copyright">2022 © International Cricket Council FZ LLC</span>
</div>
</footer>
<script src="/resources/prod/v8.28.1/scripts/vendors.min.js"></script>
<script src="/resources/prod/v8.28.1/scripts/client.min.js"></script>
<script src="https://sso.fanaccount.icc-cricket.com/auth/js/keycloak.js"></script>
<!--[if IE]> -->
<script type="text/javascript">
svg4everybody();
</script>
<!-- <![endif]-->
</body>
</html>
Teams=soup.find_all('span',class_="u-hide-phablet")[0:10]
Teams
[<span class="u-hide-phablet">England</span>, <span class="u-hide-phablet">New Zealand</span>, <span class="u-hide-phablet">India</span>, <span class="u-hide-phablet">Pakistan</span>, <span class="u-hide-phablet">Australia</span>, <span class="u-hide-phablet">South Africa</span>, <span class="u-hide-phablet">Bangladesh</span>, <span class="u-hide-phablet">Sri Lanka</span>, <span class="u-hide-phablet">West Indies</span>, <span class="u-hide-phablet">Afghanistan</span>]
matches_points=soup.find_all('td',class_="table-body__cell u-center-text")
matches_points
[<td class="table-body__cell u-center-text">22</td>, <td class="table-body__cell u-center-text">2,508</td>, <td class="table-body__cell u-center-text">31</td>, <td class="table-body__cell u-center-text">3,447</td>, <td class="table-body__cell u-center-text">22</td>, <td class="table-body__cell u-center-text">2,354</td>, <td class="table-body__cell u-center-text">29</td>, <td class="table-body__cell u-center-text">3,071</td>, <td class="table-body__cell u-center-text">21</td>, <td class="table-body__cell u-center-text">2,111</td>, <td class="table-body__cell u-center-text">30</td>, <td class="table-body__cell u-center-text">2,753</td>, <td class="table-body__cell u-center-text">29</td>, <td class="table-body__cell u-center-text">2,658</td>, <td class="table-body__cell u-center-text">41</td>, <td class="table-body__cell u-center-text">2,902</td>, <td class="table-body__cell u-center-text">18</td>, <td class="table-body__cell u-center-text">1,238</td>, <td class="table-body__cell u-center-text">23</td>, <td class="table-body__cell u-center-text">1,214</td>, <td class="table-body__cell u-center-text">27</td>, <td class="table-body__cell u-center-text">1,254</td>, <td class="table-body__cell u-center-text">26</td>, <td class="table-body__cell u-center-text">1,098</td>, <td class="table-body__cell u-center-text">19</td>, <td class="table-body__cell u-center-text">642</td>, <td class="table-body__cell u-center-text">21</td>, <td class="table-body__cell u-center-text">673</td>, <td class="table-body__cell u-center-text">22</td>, <td class="table-body__cell u-center-text">697</td>, <td class="table-body__cell u-center-text">30</td>, <td class="table-body__cell u-center-text">919</td>, <td class="table-body__cell u-center-text">27</td>, <td class="table-body__cell u-center-text">641</td>, <td class="table-body__cell u-center-text">22</td>, <td class="table-body__cell u-center-text">331</td>, <td class="table-body__cell u-center-text">26</td>, <td class="table-body__cell u-center-text">209</td>]
Ratings=soup.find_all('td',class_="table-body__cell u-text-right rating")[0:10]
Ratings
[<td class="table-body__cell u-text-right rating">114</td>, <td class="table-body__cell u-text-right rating">111</td>, <td class="table-body__cell u-text-right rating">107</td>, <td class="table-body__cell u-text-right rating">106</td>, <td class="table-body__cell u-text-right rating">101</td>, <td class="table-body__cell u-text-right rating">92</td>, <td class="table-body__cell u-text-right rating">92</td>, <td class="table-body__cell u-text-right rating">71</td>, <td class="table-body__cell u-text-right rating">69</td>, <td class="table-body__cell u-text-right rating">53</td>]
b) Top 10 ODI Batsmen along with the records of their team and rating.
url=requests.get('https://www.icc-cricket.com/rankings/mens/player-rankings/odi/batting')
url
<Response [200]>
soup=BeautifulSoup(url.text,"html.parser")
soup
<!DOCTYPE html>
<html lang="en">
<head>
<meta content="ICC Men's ODI Batting | Player Rankings | ICC" name="twitter:title"/>
<meta content="website" property="og:type"/>
<meta content="summary_large_image" property="twitter:card"/>
<meta content="Official ICC Cricket website - live matches, scores, news, highlights, commentary, rankings, videos and fixtures from the International Cricket Council." name="description"/>
<meta content="@icc" property="twitter:site"/>
<meta content="Official ICC Cricket website - live matches, scores, news, highlights, commentary, rankings, videos and fixtures from the International Cricket Council." name="twitter:description"/>
<meta content="https://www.icc-cricket.com/resources/ver/i/elements/default-thumbnail.jpg" name="twitter:image"/>
<meta content="ICC Men's ODI Batting | Player Rankings | ICC" property="og:title"/>
<meta content="https://www.icc-cricket.com/resources/ver/i/elements/default-thumbnail.jpg" property="og:image"/>
<title>ICC Men's ODI Batting | Player Rankings | ICC</title>
<meta content="Official ICC Cricket website - live matches, scores, news, highlights, commentary, rankings, videos and fixtures from the International Cricket Council." property="og:description"/>
<!-- Designed and built by Pulselive - www.pulselive.com -->
<script>
var dataLayer = [{
'user_language':'English',
'web_domain':'www.icc-cricket.com',
'page_type':'/rankings/mens/player-rankings/odi/batting'
}];
</script>
<!-- Google Tag Manager -->
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-T7DPH24');</script>
<!-- End Google Tag Manager -->
<script async="" src="https://securepubads.g.doubleclick.net/tag/js/gpt.js"></script>
<meta charset="utf-8"/>
<meta content="width=device-width, initial-scale=1" name="viewport"/>
<meta content="app-id=956440606" name="apple-itunes-app">
<link href="/resources/prod/v8.28.1/manifest.json" rel="manifest"/>
<link href="/resources/prod/v8.28.1/i/elements/favicon.ico" rel="shortcut icon">
<link href="https://plus.google.com/+ICC" rel="publisher"/>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebPage",
"headline": "",
"url": "https://www.icc-cricket.com/rankings/mens/player-rankings/odi/batting",
"creator": ["ICC"]
}
</script>
<title>International Cricket Council</title>
<!-- google platform library -->
<script async="" defer="" src="https://apis.google.com/js/api:client.js?onload=startApp"></script>
<script>
var startApp = function() {
gapi.load('auth2', function(){
// Retrieve the singleton for the GoogleAuth library and set up the client.
auth2 = gapi.auth2.init({
client_id: '844310787835-1rirg6e5plp2jou6v701br43iuo0lkcu.apps.googleusercontent.com'
// Request scopes in addition to 'profile' and 'email'
//scope: 'additional_scope'
});
});
};
</script>
<link href="https://fonts.googleapis.com/css?family=Hind+Siliguri:300,400,500,600" rel="stylesheet"/>
<!-- Polyfill service provided by the FT - https://github.com/Financial-Times/polyfill-service -->
<script src="https://cdn.polyfill.io/v2/polyfill.min.js?features=default,fetch"></script>
<link href="/resources/prod/v8.28.1/styles/screen.css" rel="stylesheet">
<script>
window.RESOURCE_VERSION = 'prod/v8.28.1';
</script>
</link></link></meta></head>
<body>
<!-- Google Tag Manager (noscript) -->
<noscript><iframe height="0" src="https://www.googletagmanager.com/ns.html?id=GTM-T7DPH24" style="display:none;visibility:hidden" width="0"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
<!--
Start of Floodlight Tag: Please do not removeActivity name of this tag: ICC Website - VisitationURL of the webpage where the tag is expected to be placed: This tag must be placed between the <body> and </body> tags, as close as possible to the opening tag. Creation Date: 10/01/2019
-->
<iframe frameborder="0" height="1" src="https://9282652.fls.doubleclick.net/activityi;src=9282652;type=iccre0;cat=iccwe0;u1=[user_language];u2=[user_country];u3=[page_type];u4=[web_domain];dc_lat=;dc_rdid=;tag_for_child_directed_treatment=;tfua=;npa=;ord=[SessionID]?" style="display:none" width="1"></iframe>
<!-- End of Floodlight Tag: Please do not remove -->
<script id="parsely-cfg" src="//cdn.parsely.com/keys/icc-cricket.com/p.js"></script>
<script>
window.fbAsyncInit = function() {
FB.init({
appId : 159513024983374,
autoLogAppEvents : true,
xfbml : true,
version : 'v3.0'
});
};
(function(d, s, id){
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) {return;}
js = d.createElement(s); js.id = id;
js.src = "https://connect.facebook.net/en_US/sdk.js";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));
</script>
<div class="user-account-overlay js-user-account-overlay"></div>
<section class="user-account js-user-account" data-script="sso_user-account" data-widget="user-account">
<div class="user-account__wrapper js-panel-account u-hide">
<div class="user-account__header">
<div class="user-account__close js-account-slider-close-btn" role="button">
<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-close" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg>
</div>
<div class="user-account__user-wrapper">
<div class="user-account__image">
<img alt="User Image" class="u-hide js-account-user-img" src="#"/>
</div>
<div class="user-account__user-info">
<p class="user-account__user-info__text js-account-user">Name Lastname</p>
<p class="user-account__user-info__profile js-profile-completion-info u-hide">
<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-alert" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg>
Profile <span class="js-profile-completion-percentage"></span>% Complete
</p>
</div>
</div>
<div class="user-account__tabs-nav js-tabs-wrapper"></div>
</div>
<div class="account-message js-account-message"></div>
<form autocomplete="off" id="user-account" name="user-account">
<div class="user-account__tab" data-ui-tab="My Account">
<div class="user-account__social-wrapper js-social-wrapper u-hide"></div>
<fieldset>
<div class="form-group-multiple">
<div class="form-group">
<label class="form-group__label" for="given_name">First name *</label>
<input class="form-group__element" id="given_name" maxlength="50" name="given_name" pattern="^[A-Za-z-\s]+$" required="" type="text"/>
<p class="js-error form-error"></p>
</div>
<div class="form-group">
<label class="form-group__label" for="family_name">Last name *</label>
<input class="form-group__element" id="family_name" maxlength="50" name="family_name" pattern="[A-Za-z-\s]+$" required="" type="text"/>
<p class="js-error form-error"></p>
</div>
</div>
<div class="form-group-multiple form-group-multiple--with-button">
<div class="form-group is-disabled js-change-email-input">
<label class="form-group__label" for="email">Email address *</label>
<input autocomplete="off" class="form-group__element" disabled="" id="email" maxlength="50" name="email" type="email"/>
<p class="js-error form-error"></p>
<p class="js-email-exists form-error form-error--email">Email address not available.</p>
</div>
<div class="form-group form-group--button">
<button class="form-btn form-btn--outlined js-change-email" novalidate="" type="button">Change Email</button>
</div>
</div>
<div class="form-group-multiple form-group-multiple--with-button js-account-password">
<div class="form-group is-disabled js-change-password-input">
<label class="form-group__label" for="password">Password *</label>
<input autocomplete="off" class="form-group__element" disabled="" id="password" name="password" placeholder="******" type="password"/>
<p class="js-error form-error"></p>
</div>
<div class="form-group form-group--button">
<button class="form-btn form-btn--outlined js-change-password" novalidate="" type="button">Change Password</button>
</div>
</div>
<div class="form-block form-block">
<div class="form-block__label form-block__label--dob">Date of Birth</div>
<div class="form-group-multiple">
<div class="form-group">
<label class="form-group__label" for="day">Day *</label>
<input class="form-group__element" id="day" min="0" name="day" placeholder="dd" required="" type="number"/>
<p class="js-error form-error"></p>
</div>
<div class="form-group">
<label class="form-group__label" for="month">Month *</label>
<input class="form-group__element" id="month" min="0" name="month" placeholder="mm" required="" type="number"/>
<p class="js-error form-error"></p>
</div>
<div class="form-group">
<label class="form-group__label" for="year">Year *</label>
<input class="form-group__element" id="year" min="0" name="year" placeholder="yyyy" required="" type="number"/>
<p class="js-error form-error"></p>
</div>
</div>
<p class="js-date-error form-error form-error--date">The date of birth is not valid</p>
</div>
<div class="form-block" data-dropdown-type="SSO_COUNTRY" data-widget="form-dropdown">
<div class="form-block__label">Country of residence</div>
<div class="form-dropdown js-dropdown-wrapper"></div>
</div>
</fieldset>
</div>
<div class="user-account__tab" data-ui-tab="My Preferences">
<div class="js-account-prefs u-hide">
<fieldset>
<div class="form-block" data-dropdown-type="SSO_TEAM" data-widget="form-dropdown">
<div class="form-block__label">Your favourite team</div>
<div class="form-dropdown js-dropdown-wrapper"></div>
</div>
<div class="js-contact-prefs user-account__contact-prefs-wrapper">
<div class="user-account__alert">
<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-alert" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg>
<span>Sorry, but your contact preferences will take up to 24hrs to update</span>
</div>
<div class="user-account__contact-prefs">
<div class="form-block form-block--no-margin">
<div class="form-group form-group--checkbox">
<input class="form-group__element" id="allow-contacting" name="allow-contacting" type="checkbox"/>
<label class="form-group__label" for="allow-contacting">I'm happy for the ICC to contact me</label>
</div>
<p class="js-error form-error"></p>
</div>
<div class="form-block form-block--no-margin">
<div class="form-group form-group--checkbox">
<input class="form-group__element" id="allow-partner-contacting" name="allow-partner-contacting" type="checkbox"/>
<label class="form-group__label" for="allow-partner-contacting">I'm happy for the ICC's partners to contact me</label>
</div>
<p class="js-error form-error"></p>
</div>
</div>
</div>
</fieldset>
</div>
<div class="overlay__loader__small js-loader-prefs">
Hold on! Loading your preferences <div class="loader loader--small"></div>
</div>
</div>
<div class="user-account__buttons-wrapper">
<div class="user-account__account-actions js-buttons-wrapper">
<button class="form-btn form-btn--grey is-disabled js-cancel" disabled="">Cancel</button>
<button class="form-btn is-disabled js-submit" disabled="" type="submit">Save Changes</button>
<div class="loader js-loader u-hide"></div>
</div>
<button class="form-btn form-btn--grey js-account-signout u-show-tablet">Sign Out<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-sign-out" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg></button>
</div>
</form>
</div>
<div class="user-account__wrapper js-panel-account-password u-hide">
<form id="account-edit-password" name="account-edit-password" novalidate="">
<div class="user-account__tabs-wrapper">
<h1 class="overlay__title">
Edit your password
<span class="overlay__title__option"><a class="form-cta js-cancel-password" href="#">back</a></span>
</h1>
<div class="form-group form-group--password">
<div class="form-group__password-action js-toggle-password">Show</div>
<label class="form-group__label" for="current-password">Current Password *</label>
<input class="form-group__element" id="current-password" name="current-password" required="" type="password"/>
<p class="js-error form-error"></p>
<p class="js-current-pwd-error form-error form-error--email">Invalid current password</p>
</div>
<a class="form-cta form-cta--right" href="/forgot-password">Forgot password?</a>
<div class="form-block">
<div class="form-group form-group--password">
<div class="form-group__password-action js-toggle-password">Show</div>
<label class="form-group__label" for="new-password">New password *</label>
<input class="form-group__element" id="new-password" name="new-password" required="" type="password"/>
<div class="form-block__verify-password form-block__verify-password--slider js-verify-password">
Password must include...
<ul class="form-block__verify-list">
<li class="js-verify-length">8 or more characters</li>
<li class="js-verify-letters">At least one upper and lower case letter</li>
<li class="js-verify-number">At least one number or symbol</li>
</ul>
</div>
<p class="js-error form-error"></p>
<p class="js-new-pwd-error form-error form-error--email">The new password needs to be different than the current one.</p>
</div>
</div>
<div class="form-group form-group--password">
<div class="form-group__password-action js-toggle-password">Show</div>
<label class="form-group__label" for="confirm-password">Confirm new password *</label>
<input class="form-group__element" id="confirm-password" name="confirm-password" required="" type="password"/>
<p class="js-error form-error"></p>
<p class="js-confirm-pwd-error form-error form-error--email">The confirmation does not match your new password</p>
</div>
</div>
<div class="user-account__buttons-wrapper">
<div class="user-account__account-actions">
<button class="form-btn form-btn--grey js-cancel-password" type="button">Cancel</button>
<button class="form-btn is-disabled js-submit-password" disabled="" type="submit">Change Password</button>
<div class="loader js-password-loader u-hide"></div>
</div>
</div>
</form>
</div>
</section>
<div class="main-navigation__container js-will-glue">
<!-- header -->
<header class="main-navigation">
<section class="main-navigation__top-bar">
<nav class="site-tabs">
<ul class="site-tabs__list">
<li class="site-tabs__item theme theme-icc is-active">
<a class="site-tabs__link" href="https://icc-cricket.com">
ICC Cricket
</a>
</li>
<li class="site-tabs__item theme theme-t20wc">
<a class="site-tabs__link" href="https://t20worldcup.com" rel="noopener" target="_blank">
Men’s T20 World Cup 2022
</a>
</li>
<li class="site-tabs__item theme theme-wcwc">
<a class="site-tabs__link" href="https://www.cricketworldcup.com/" rel="noopener" target="_blank">
Women’s Cricket World Cup 2022
</a>
</li>
<li class="site-tabs__item theme theme-wtc">
<a class="site-tabs__link" href="https://www.icc-cricket.com/world-test-championship/overview" rel="noopener" target="_blank">
World Test Championship
</a>
</li>
</ul></nav>
<div class="sso-nav js-sso-display">
<div class="loader sso-nav__loader">
<div class="loader__ring">
<div></div>
<div></div>
<div></div>
<div></div>
</div>
</div>
</div>
</section>
<section class="main-navigation__wrapper">
<!-- desktop menu -->
<div class="main-navigation__header u-hide-desktop">
<a class="main-navigation__logo" href="/" title="label.returnToHomepage">
<span class="icn icn-logo-icc-nav"></span>
<span class="u-screen-reader">label.ICCHome</span>
</a>
<nav aria-label="Header Navigation" class="main-navigation__desktop-list js-desktop-nav" id="" role="navigation">
<header class="linked-list__header u-show-desktop">
<a class="linked-list__header-search" href="http://icc-cricket.com/search">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-search-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</a>
<span class="js-mobile-nav-btn">
<svg aria-hidden="true" class="icon linked-list__header-close-icn">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-cross" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</span>
</header>
<ul class="linked-list js-dynamic-list">
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
Scores
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
Scores
</button>
</header>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
Men's
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
Men's
</button>
</header>
<li class="linked-list__item">
<a class="linked-list__link" href="/mens-schedule/list">
Fixtures
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/live-cricket/mens-results">
Results
</a>
</li>
</ul>
</li>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
Women's
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
Women's
</button>
</header>
<li class="linked-list__item">
<a class="linked-list__link" href="/womens-schedule/list">
Fixtures
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/live-cricket/womens-results">
Results
</a>
</li>
</ul>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/live-cricket/live">
Live Scores
</a>
</li>
<li class="linked-list__item linked-list__item--wider u-hide-desktop">
</li>
<li class="linked-list__item linked-list__item--full-width u-hide-desktop">
<div class="main-navigation__social-container">
<nav class="social-follow">
<h6 class="social-follow__title">Follow Us</h6>
<a class="social-follow__item social-follow__item--facebook" href="https://www.facebook.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-facebook-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.facebook</span></a>
<a class="social-follow__item social-follow__item--twitter" href="https://twitter.com/ICC" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-twitter-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.twitter</span>
</a>
<a class="social-follow__item social-follow__item--instagram" href="https://www.instagram.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-instagram-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.instagram</span>
</a>
<a class="social-follow__item social-follow__item--youtube" href="https://www.youtube.com/user/CricketICC?cbrd=1" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-youtube-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.youtube</span>
</a>
</nav>
<svg aria-hidden="true" focusable="false" style="width:0;height:0;position:absolute;">
<lineargradient gradienttransform="rotate(45)" id="instagram" x2="1" y2="1">
<stop offset="0%" stop-color="#4c68d6"></stop>
<stop offset="33%" stop-color="#b22d98"></stop>
<stop offset="65%" stop-color="#e85a50"></stop>
<stop offset="100%" stop-color="#fbbb59"></stop>
</lineargradient>
</svg>
</div>
</li>
</ul>
</li>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
Rankings
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
Rankings
</button>
</header>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
Men's
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
Men's
</button>
</header>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/mens/overview">
Overview
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/mens/team-rankings">
Team Rankings
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/mens/player-rankings">
Players Rankings
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/mens/rankings-predictor/test">
Team Rankings Predictor
</a>
</li>
</ul>
</li>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
Women's
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
Women's
</button>
</header>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/womens/overview">
Overview
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/womens/team-rankings">
Team Rankings
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/womens/player-rankings">
Player Rankings
</a>
</li>
</ul>
</li>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
</header>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/mens/player-rankings/comparison">
Player Head to Head
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/about">
About Rankings
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/faqs">
Rankings FAQs
</a>
</li>
</ul>
</li>
<li class="linked-list__item linked-list__item--wider u-hide-desktop">
</li>
<li class="linked-list__item linked-list__item--full-width u-hide-desktop">
<div class="main-navigation__social-container">
<nav class="social-follow">
<h6 class="social-follow__title">Follow Us</h6>
<a class="social-follow__item social-follow__item--facebook" href="https://www.facebook.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-facebook-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.facebook</span></a>
<a class="social-follow__item social-follow__item--twitter" href="https://twitter.com/ICC" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-twitter-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.twitter</span>
</a>
<a class="social-follow__item social-follow__item--instagram" href="https://www.instagram.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-instagram-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.instagram</span>
</a>
<a class="social-follow__item social-follow__item--youtube" href="https://www.youtube.com/user/CricketICC?cbrd=1" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-youtube-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.youtube</span>
</a>
</nav>
<svg aria-hidden="true" focusable="false" style="width:0;height:0;position:absolute;">
<lineargradient gradienttransform="rotate(45)" id="instagram" x2="1" y2="1">
<stop offset="0%" stop-color="#4c68d6"></stop>
<stop offset="33%" stop-color="#b22d98"></stop>
<stop offset="65%" stop-color="#e85a50"></stop>
<stop offset="100%" stop-color="#fbbb59"></stop>
</lineargradient>
</svg>
</div>
</li>
</ul>
</li>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
Events
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
Events
</button>
</header>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
Men's Events
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
Men's Events
</button>
</header>
<li class="linked-list__item">
<a class="linked-list__link" href="https://www.t20worldcup.com">
ICC T20 World Cup
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/world-test-championship">
ICC World Test Championship
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/u19-world-cup/">
ICC U19 Cricket World Cup
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/cricket-world-cup-super-league/fixtures">
ICC CWC Super League
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/cricket-world-cup-challenge-league/news">
ICC CWC Challenge League
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/cricket-world-cup-league-two/news">
ICC CWC League 2
</a>
</li>
</ul>
</li>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
Women's Events
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
Women's Events
</button>
</header>
<li class="linked-list__item">
<a class="linked-list__link" href="https://womens.t20worldcup.com//">
ICC T20 World Cup
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="https://www.cricketworldcup.com/">
ICC Cricket World Cup
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/womens-u19-world-cup/">
ICC U19 T20 World Cup
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/womens-championship">
ICC Women's Championship
</a>
</li>
</ul>
</li>
<li class="linked-list__item linked-list__item--wider u-hide-desktop">
</li>
<li class="linked-list__item linked-list__item--full-width u-hide-desktop">
<div class="main-navigation__social-container">
<nav class="social-follow">
<h6 class="social-follow__title">Follow Us</h6>
<a class="social-follow__item social-follow__item--facebook" href="https://www.facebook.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-facebook-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.facebook</span></a>
<a class="social-follow__item social-follow__item--twitter" href="https://twitter.com/ICC" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-twitter-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.twitter</span>
</a>
<a class="social-follow__item social-follow__item--instagram" href="https://www.instagram.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-instagram-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.instagram</span>
</a>
<a class="social-follow__item social-follow__item--youtube" href="https://www.youtube.com/user/CricketICC?cbrd=1" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-youtube-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.youtube</span>
</a>
</nav>
<svg aria-hidden="true" focusable="false" style="width:0;height:0;position:absolute;">
<lineargradient gradienttransform="rotate(45)" id="instagram" x2="1" y2="1">
<stop offset="0%" stop-color="#4c68d6"></stop>
<stop offset="33%" stop-color="#b22d98"></stop>
<stop offset="65%" stop-color="#e85a50"></stop>
<stop offset="100%" stop-color="#fbbb59"></stop>
</lineargradient>
</svg>
</div>
</li>
</ul>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/news">
News
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/video">
Videos
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/teams">
Teams
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="https://icc.tv">
ICC.TV
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="https://www.icc-cricket.com/shop/">
Shop
</a>
</li>
<li class="linked-list__item no-border u-show-desktop">
<span class="linked-list__title">Explore ICC</span>
</li>
<li class="linked-list__item linked-list__item--promo u-show-desktop">
<section class="app-promo">
<div class="app-promo__top">
<span class="app-promo__icon icn icn-app-icon"></span>
<span class="app-promo__text">Download the official ICC App today</span>
</div>
<div class="app-promo__bottom">
<a class="app-promo__cta icn icn-apple-badge" href="https://itunes.apple.com/gb/app/icc-world-twenty20-india-2016/id956440606?mt=8" target="_blank"></a>
<a class="app-promo__cta icn icn-android-badge" href="https://play.google.com/store/apps/details?id=com.pl.cwc_2015&hl=en_GB" target="_blank"></a>
</div>
</section>
</li>
<li class="linked-list__item linked-list__item--social u-show-desktop">
<div class="main-navigation__social-container">
<nav class="social-follow">
<h6 class="social-follow__title">Follow Us</h6>
<a class="social-follow__item social-follow__item--facebook" href="https://www.facebook.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-facebook-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.facebook</span></a>
<a class="social-follow__item social-follow__item--twitter" href="https://twitter.com/ICC" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-twitter-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.twitter</span>
</a>
<a class="social-follow__item social-follow__item--instagram" href="https://www.instagram.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-instagram-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.instagram</span>
</a>
<a class="social-follow__item social-follow__item--youtube" href="https://www.youtube.com/user/CricketICC?cbrd=1" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-youtube-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.youtube</span>
</a>
</nav>
<svg aria-hidden="true" focusable="false" style="width:0;height:0;position:absolute;">
<lineargradient gradienttransform="rotate(45)" id="instagram" x2="1" y2="1">
<stop offset="0%" stop-color="#4c68d6"></stop>
<stop offset="33%" stop-color="#b22d98"></stop>
<stop offset="65%" stop-color="#e85a50"></stop>
<stop offset="100%" stop-color="#fbbb59"></stop>
</lineargradient>
</svg>
</div>
</li>
</ul>
</nav>
<a class="main-navigation__search" href="http://icc-cricket.com/search">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-search-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</a>
<button aria-controls="sidebar-menu" aria-label="Menu" class="hamburger js-sidebar-btn" type="button">
<span class="hamburger__line hamburger__line--top"></span>
<span class="hamburger__line hamburger__line--middle"></span>
<span class="hamburger__line hamburger__line--bottom"></span>
</button>
</div>
<!-- mobile menu -->
<div class="main-navigation__mobile u-show-desktop" data-widget="mobile-navigation">
<a class="main-navigation__logo" href="/" title="label.returnToHomepage">
<span class="icn icn-logo-icc-nav"></span>
<span class="u-screen-reader">label.ICCHome</span>
</a>
<div class="main-navigation__sub-menu">
<nav class="sub-menu">
<a class="sub-menu__link" href="https://www.icc-cricket.com/mens-schedule/list">
Scores
</a>
<a class="sub-menu__link" href="https://www.icc-cricket.com/rankings/mens/overview">
Rankings
</a>
<a class="sub-menu__link" href="https://www.icc-cricket.com/news">
News
</a>
<a class="sub-menu__link" href="https://welcome.icc.tv/">
ICC.tv
</a>
</nav>
</div>
<button aria-controls="mobile-menu" aria-label="Menu" class="hamburger js-mobile-nav-btn" type="button">
<span class="hamburger__line hamburger__line--top"></span>
<span class="hamburger__line hamburger__line--middle"></span>
<span class="hamburger__line hamburger__line--bottom"></span>
<span class="u-screen-reader">label.toggleMobileNavigation</span>
</button>
<nav aria-label="Header Navigation" class="main-navigation__mobile-list js-mobile-nav" id="mobile-menu" role="navigation">
<header class="linked-list__header u-show-desktop">
<a class="linked-list__header-search" href="http://icc-cricket.com/search">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-search-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</a>
<span class="js-mobile-nav-btn">
<svg aria-hidden="true" class="icon linked-list__header-close-icn">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-cross" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</span>
</header>
<ul class="linked-list js-dynamic-list">
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
Scores
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
Scores
</button>
</header>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
Men's
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
Men's
</button>
</header>
<li class="linked-list__item">
<a class="linked-list__link" href="/mens-schedule/list">
Fixtures
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/live-cricket/mens-results">
Results
</a>
</li>
</ul>
</li>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
Women's
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
Women's
</button>
</header>
<li class="linked-list__item">
<a class="linked-list__link" href="/womens-schedule/list">
Fixtures
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/live-cricket/womens-results">
Results
</a>
</li>
</ul>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/live-cricket/live">
Live Scores
</a>
</li>
<li class="linked-list__item linked-list__item--wider u-hide-desktop">
</li>
<li class="linked-list__item linked-list__item--full-width u-hide-desktop">
<div class="main-navigation__social-container">
<nav class="social-follow">
<h6 class="social-follow__title">Follow Us</h6>
<a class="social-follow__item social-follow__item--facebook" href="https://www.facebook.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-facebook-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.facebook</span></a>
<a class="social-follow__item social-follow__item--twitter" href="https://twitter.com/ICC" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-twitter-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.twitter</span>
</a>
<a class="social-follow__item social-follow__item--instagram" href="https://www.instagram.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-instagram-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.instagram</span>
</a>
<a class="social-follow__item social-follow__item--youtube" href="https://www.youtube.com/user/CricketICC?cbrd=1" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-youtube-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.youtube</span>
</a>
</nav>
<svg aria-hidden="true" focusable="false" style="width:0;height:0;position:absolute;">
<lineargradient gradienttransform="rotate(45)" id="instagram" x2="1" y2="1">
<stop offset="0%" stop-color="#4c68d6"></stop>
<stop offset="33%" stop-color="#b22d98"></stop>
<stop offset="65%" stop-color="#e85a50"></stop>
<stop offset="100%" stop-color="#fbbb59"></stop>
</lineargradient>
</svg>
</div>
</li>
</ul>
</li>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
Rankings
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
Rankings
</button>
</header>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
Men's
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
Men's
</button>
</header>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/mens/overview">
Overview
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/mens/team-rankings">
Team Rankings
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/mens/player-rankings">
Players Rankings
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/mens/rankings-predictor/test">
Team Rankings Predictor
</a>
</li>
</ul>
</li>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
Women's
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
Women's
</button>
</header>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/womens/overview">
Overview
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/womens/team-rankings">
Team Rankings
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/womens/player-rankings">
Player Rankings
</a>
</li>
</ul>
</li>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
</header>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/mens/player-rankings/comparison">
Player Head to Head
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/about">
About Rankings
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/faqs">
Rankings FAQs
</a>
</li>
</ul>
</li>
<li class="linked-list__item linked-list__item--wider u-hide-desktop">
</li>
<li class="linked-list__item linked-list__item--full-width u-hide-desktop">
<div class="main-navigation__social-container">
<nav class="social-follow">
<h6 class="social-follow__title">Follow Us</h6>
<a class="social-follow__item social-follow__item--facebook" href="https://www.facebook.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-facebook-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.facebook</span></a>
<a class="social-follow__item social-follow__item--twitter" href="https://twitter.com/ICC" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-twitter-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.twitter</span>
</a>
<a class="social-follow__item social-follow__item--instagram" href="https://www.instagram.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-instagram-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.instagram</span>
</a>
<a class="social-follow__item social-follow__item--youtube" href="https://www.youtube.com/user/CricketICC?cbrd=1" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-youtube-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.youtube</span>
</a>
</nav>
<svg aria-hidden="true" focusable="false" style="width:0;height:0;position:absolute;">
<lineargradient gradienttransform="rotate(45)" id="instagram" x2="1" y2="1">
<stop offset="0%" stop-color="#4c68d6"></stop>
<stop offset="33%" stop-color="#b22d98"></stop>
<stop offset="65%" stop-color="#e85a50"></stop>
<stop offset="100%" stop-color="#fbbb59"></stop>
</lineargradient>
</svg>
</div>
</li>
</ul>
</li>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
Events
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
Events
</button>
</header>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
Men's Events
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
Men's Events
</button>
</header>
<li class="linked-list__item">
<a class="linked-list__link" href="https://www.t20worldcup.com">
ICC T20 World Cup
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/world-test-championship">
ICC World Test Championship
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/u19-world-cup/">
ICC U19 Cricket World Cup
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/cricket-world-cup-super-league/fixtures">
ICC CWC Super League
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/cricket-world-cup-challenge-league/news">
ICC CWC Challenge League
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/cricket-world-cup-league-two/news">
ICC CWC League 2
</a>
</li>
</ul>
</li>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
Women's Events
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
Women's Events
</button>
</header>
<li class="linked-list__item">
<a class="linked-list__link" href="https://womens.t20worldcup.com//">
ICC T20 World Cup
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="https://www.cricketworldcup.com/">
ICC Cricket World Cup
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/womens-u19-world-cup/">
ICC U19 T20 World Cup
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/womens-championship">
ICC Women's Championship
</a>
</li>
</ul>
</li>
<li class="linked-list__item linked-list__item--wider u-hide-desktop">
</li>
<li class="linked-list__item linked-list__item--full-width u-hide-desktop">
<div class="main-navigation__social-container">
<nav class="social-follow">
<h6 class="social-follow__title">Follow Us</h6>
<a class="social-follow__item social-follow__item--facebook" href="https://www.facebook.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-facebook-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.facebook</span></a>
<a class="social-follow__item social-follow__item--twitter" href="https://twitter.com/ICC" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-twitter-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.twitter</span>
</a>
<a class="social-follow__item social-follow__item--instagram" href="https://www.instagram.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-instagram-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.instagram</span>
</a>
<a class="social-follow__item social-follow__item--youtube" href="https://www.youtube.com/user/CricketICC?cbrd=1" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-youtube-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.youtube</span>
</a>
</nav>
<svg aria-hidden="true" focusable="false" style="width:0;height:0;position:absolute;">
<lineargradient gradienttransform="rotate(45)" id="instagram" x2="1" y2="1">
<stop offset="0%" stop-color="#4c68d6"></stop>
<stop offset="33%" stop-color="#b22d98"></stop>
<stop offset="65%" stop-color="#e85a50"></stop>
<stop offset="100%" stop-color="#fbbb59"></stop>
</lineargradient>
</svg>
</div>
</li>
</ul>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/news">
News
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/video">
Videos
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/teams">
Teams
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="https://icc.tv">
ICC.TV
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="https://www.icc-cricket.com/shop/">
Shop
</a>
</li>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
More
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
More
</button>
</header>
<li class="linked-list__item">
<a class="linked-list__link" href="https://fancraze.com/">
Crictos
<svg aria-hidden="true" class="icon external-link">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-external-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/awards/overview">
ICC Awards
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/hall-of-fame">
Hall of Fame
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="https://www.criiio.com/">
criiio
<svg aria-hidden="true" class="icon external-link">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-external-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/100percentcricket">
100% Cricket
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/mobile">
Official ICC App
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="https://www.icc-cricket.com/shop/">
shop
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/about">
About ICC
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/media-releases">
Media Releases
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/photos">
Photos
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/news/318971">
Commercial Opportunities
</a>
</li>
<li class="linked-list__item linked-list__item--wider u-hide-desktop">
</li>
<li class="linked-list__item linked-list__item--full-width u-hide-desktop">
<div class="main-navigation__social-container">
<nav class="social-follow">
<h6 class="social-follow__title">Follow Us</h6>
<a class="social-follow__item social-follow__item--facebook" href="https://www.facebook.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-facebook-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.facebook</span></a>
<a class="social-follow__item social-follow__item--twitter" href="https://twitter.com/ICC" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-twitter-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.twitter</span>
</a>
<a class="social-follow__item social-follow__item--instagram" href="https://www.instagram.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-instagram-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.instagram</span>
</a>
<a class="social-follow__item social-follow__item--youtube" href="https://www.youtube.com/user/CricketICC?cbrd=1" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-youtube-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.youtube</span>
</a>
</nav>
<svg aria-hidden="true" focusable="false" style="width:0;height:0;position:absolute;">
<lineargradient gradienttransform="rotate(45)" id="instagram" x2="1" y2="1">
<stop offset="0%" stop-color="#4c68d6"></stop>
<stop offset="33%" stop-color="#b22d98"></stop>
<stop offset="65%" stop-color="#e85a50"></stop>
<stop offset="100%" stop-color="#fbbb59"></stop>
</lineargradient>
</svg>
</div>
</li>
</ul>
</li>
<li class="linked-list__item no-border u-show-desktop">
<span class="linked-list__title">Explore ICC</span>
</li>
<li class="linked-list__item no-border theme theme-t20wc">
<a class="linked-list__link" href="https://t20worldcup.com">
T20 World Cup
<svg aria-hidden="true" class="icon external-link">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-external-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</a>
</li>
<li class="linked-list__item no-border theme theme-wcwc">
<a class="linked-list__link" href="https://cricketworldcup.com">
Womens Cricket World Cup
<svg aria-hidden="true" class="icon external-link">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-external-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</a>
</li>
<li class="linked-list__item linked-list__item--promo u-show-desktop">
<section class="app-promo">
<div class="app-promo__top">
<span class="app-promo__icon icn icn-app-icon"></span>
<span class="app-promo__text">Download the official ICC App today</span>
</div>
<div class="app-promo__bottom">
<a class="app-promo__cta icn icn-apple-badge" href="https://itunes.apple.com/gb/app/icc-world-twenty20-india-2016/id956440606?mt=8" target="_blank"></a>
<a class="app-promo__cta icn icn-android-badge" href="https://play.google.com/store/apps/details?id=com.pl.cwc_2015&hl=en_GB" target="_blank"></a>
</div>
</section>
</li>
<li class="linked-list__item linked-list__item--social u-show-desktop">
<div class="main-navigation__social-container">
<nav class="social-follow">
<h6 class="social-follow__title">Follow Us</h6>
<a class="social-follow__item social-follow__item--facebook" href="https://www.facebook.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-facebook-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.facebook</span></a>
<a class="social-follow__item social-follow__item--twitter" href="https://twitter.com/ICC" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-twitter-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.twitter</span>
</a>
<a class="social-follow__item social-follow__item--instagram" href="https://www.instagram.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-instagram-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.instagram</span>
</a>
<a class="social-follow__item social-follow__item--youtube" href="https://www.youtube.com/user/CricketICC?cbrd=1" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-youtube-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.youtube</span>
</a>
</nav>
<svg aria-hidden="true" focusable="false" style="width:0;height:0;position:absolute;">
<lineargradient gradienttransform="rotate(45)" id="instagram" x2="1" y2="1">
<stop offset="0%" stop-color="#4c68d6"></stop>
<stop offset="33%" stop-color="#b22d98"></stop>
<stop offset="65%" stop-color="#e85a50"></stop>
<stop offset="100%" stop-color="#fbbb59"></stop>
</lineargradient>
</svg>
</div>
</li>
</ul>
</nav>
</div>
</section>
<!-- sidebar menu -->
<div class="sidebar-nav js-navigation-sidebar u-hide-desktop" data-widget="sidebar-navigation">
<header class="sidebar-nav__header">
<span class="sidebar-nav__title">
More
</span>
<span class="sidebar-nav__close js-sidebar-btn">
<svg aria-hidden="true" class="icon sidebar-nav__close-icn">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-cross" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</span>
</header>
<div class="sidebar-nav__menu" tabindex="0">
<ul>
<li class="sidebar-nav__item" data-label="Crictos">
<a class="sidebar-nav__link sidebar-nav__link--in-sidebar-nav" href="https://fancraze.com/">
Crictos
<svg aria-hidden="true" class="icon external-link">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-external-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</a>
</li>
<li class="sidebar-nav__item" data-label="ICC Awards">
<a class="sidebar-nav__link sidebar-nav__link--in-sidebar-nav" href="/awards/overview">
ICC Awards
</a>
</li>
<li class="sidebar-nav__item" data-label="Hall of Fame">
<a class="sidebar-nav__link sidebar-nav__link--in-sidebar-nav" href="/hall-of-fame">
Hall of Fame
</a>
</li>
<li class="sidebar-nav__item" data-label="criiio">
<a class="sidebar-nav__link sidebar-nav__link--in-sidebar-nav" href="https://www.criiio.com/">
criiio
<svg aria-hidden="true" class="icon external-link">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-external-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</a>
</li>
<li class="sidebar-nav__item" data-label="100% Cricket">
<a class="sidebar-nav__link sidebar-nav__link--in-sidebar-nav" href="/100percentcricket">
100% Cricket
</a>
</li>
<li class="sidebar-nav__item" data-label="Official ICC App">
<a class="sidebar-nav__link sidebar-nav__link--in-sidebar-nav" href="/mobile">
Official ICC App
</a>
</li>
<li class="sidebar-nav__item" data-label="shop">
<a class="sidebar-nav__link sidebar-nav__link--in-sidebar-nav" href="https://www.icc-cricket.com/shop/">
shop
</a>
</li>
<li class="sidebar-nav__item" data-label="About ICC">
<a class="sidebar-nav__link sidebar-nav__link--in-sidebar-nav" href="/about">
About ICC
</a>
</li>
<li class="sidebar-nav__item" data-label="Media Releases">
<a class="sidebar-nav__link sidebar-nav__link--in-sidebar-nav" href="/media-releases">
Media Releases
</a>
</li>
<li class="sidebar-nav__item" data-label="Photos">
<a class="sidebar-nav__link sidebar-nav__link--in-sidebar-nav" href="/photos">
Photos
</a>
</li>
<li class="sidebar-nav__item" data-label="Commercial Opportunities">
<a class="sidebar-nav__link sidebar-nav__link--in-sidebar-nav" href="/news/318971">
Commercial Opportunities
</a>
</li>
</ul>
</div>
</div>
</header>
</div>
<main class="js-body-content" id="main-content" tabindex="0">
<button class="scroll-to-top" data-script="icc_scroll-to-top" data-widget="scroll-to-top">
<svg class="scroll-to-top__icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-up-arrow" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<div aria-hidden="true" class="scroll-to-top__mask">
<svg class="scroll-to-top__icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-up-arrow" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</div>
<span class="u-screen-reader">Scroll to Top</span>
</button>
<header class="page-header page-header--rankings">
<div class="wrapper">
<div class="col-12">
<div class="page-header__banner">
<a class="page-logo" data-tracking-url="https://track.adform.net/adfserve/?bn=20093364;srctype=4;ord=%%ADFRND%%" data-widget="impression-tracker" href="http://track.adform.net/C/?bn=20093364" target="_blank">
<span class="icn icn-logo-mrf-rankings"></span>
</a>
</div>
<div class="share share-- share--vertical" data-widget="share">
<div class="share__container">
<div class="share__btn js-share-btn">
<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-share" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg>
<div class="share__title">Share</div>
</div>
<ul class="share__list">
<li class="share__item share__item--facebook js-social-option" data-social-service="facebook" role="button" tabindex="0">
<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-facebook" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg>
</li>
<li class="share__item share__item--twitter js-social-option" data-social-service="twitter" role="button" tabindex="0">
<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-twitter" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg>
</li>
<li class="share__item share__item--messenger u-show-tablet js-social-option" data-social-service="facebookMessenger" role="buttn" tabindex="0">
<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-facebook-messenger" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg>
</li>
<li class="share__item share__item--whatsapp u-show-tablet js-social-option" data-social-service="whatsapp" role="button" tabindex="0">
<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-whatsapp" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg>
</li>
<li class="share__item share__item--url u-hide-tablet js-copy-button" role="button" tabindex="0">
<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-url" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg>
<div class="share__copy-message js-copy-message">URL Copied</div>
</li>
</ul>
</div>
</div>
</div>
</div>
</header>
<div class="l-sticky-side-nav">
<div class="l-sticky-side-nav__nav">
<div class="rankings-menu" data-script="icc_rankings-menu" data-widget="rankings-menu">
<div class="drop-down-tablet js-drop-down">
<div class="drop-down__clickzone js-drop-down-trigger" role="button" tabindex="0"></div>
<div class="drop-down__label">
Men's
</div>
<div class="drop-down__current">
Player Rankings
<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-caret-down" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg>
</div>
<div class="drop-down__dropdown-list js-drop-down-options">
<div class="rankings-menu__tab-container u-hide-tablet">
<nav class="content-tabs">
<ul class="block-list-2 u-no-font-size" role="tablist">
<li class="u-no-padding u-no-margin">
<a class="content-tabs__tab content-tabs__tab--active" href="/rankings/mens/overview">Men's</a>
</li>
<li class="u-no-padding u-no-margin">
<a class="content-tabs__tab" href="/rankings/womens/overview">Women's</a>
</li>
</ul>
</nav>
</div>
<div class="active tab-content">
<h3 class="rankings-menu__title">Men's</h3>
<ul class="rankings-menu__list">
<li class="rankings-menu__item rankings-menu__item--user-selection js-team-btn">
<a class="rankings-menu__link js-fav-team-link" href="#">Select your team</a>
<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg>
<div class="rankings-menu__notch js-notch"></div>
<svg class="rankings-menu__notch-icon icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-star" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg>
<li class="rankings-menu__item">
<a class="rankings-menu__link" href="/rankings/mens/overview">Overview<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg></a>
</li>
<li class="rankings-menu__item">
<a class="rankings-menu__link" href="/rankings/mens/team-rankings">Team Rankings<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg></a>
</li>
<li class="rankings-menu__item">
<a class="rankings-menu__link" href="/rankings/mens/player-rankings">Player Rankings<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg></a>
</li>
<li class="rankings-menu__item">
<a class="rankings-menu__link" href="/rankings/mens/player-rankings/comparison">Player Comparison<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg></a>
</li>
<li class="rankings-menu__item">
<a class="rankings-menu__link" href="/rankings/mens/rankings-predictor/">Team Rankings Predictor<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg></a>
</li>
<li class="rankings-menu__item">
<a class="rankings-menu__link" href="/rankings/about">About the Rankings<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg></a>
</li>
<li class="rankings-menu__item">
<a class="rankings-menu__link" href="/rankings/faqs">Player Rankings FAQs<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg></a>
</li>
</li></ul>
</div>
<div class="tab-content">
<h3 class="rankings-menu__title">Women's</h3>
<ul class="rankings-menu__list">
<li class="rankings-menu__item">
<a class="rankings-menu__link" href="/rankings/womens/overview">Overview<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg></a>
</li>
<li class="rankings-menu__item">
<a class="rankings-menu__link" href="/rankings/womens/team-rankings">Team Rankings<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg></a>
</li>
<li class="rankings-menu__item">
<a class="rankings-menu__link" href="/rankings/womens/player-rankings">Player Rankings<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg></a>
</li>
<li class="rankings-menu__item">
<a class="rankings-menu__link" href="/rankings/about">About the Rankings<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg></a>
</li>
<li class="rankings-menu__item">
<a class="rankings-menu__link" href="/rankings/faqs">Player Rankings FAQs<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg></a>
</li>
<li class="rankings-menu__item">
<a class="rankings-menu__link" href="/rankings/womens-t20i-faq">T20I Team Rankings FAQs<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg></a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="l-sticky-side-nav__content">
<section class="ranking-format-menu">
<div class="wrapper wrapper--sticky">
<div class="col-12">
<div class="content-tabs">
<ul class="inline-list">
<li class="ranking-format-menu__item">
<a class="content-tabs__tab" href="../test">Test</a>
</li>
<li class="ranking-format-menu__item">
<a class="content-tabs__tab content-tabs__tab--active" href="../odi">ODI</a>
</li>
<li class="ranking-format-menu__item">
<a class="content-tabs__tab" href="../t20i">T20i</a>
</li>
</ul>
</div>
</div>
</div>
</section>
<div class="wrapper wrapper--sticky">
<div class="col-12">
<section class="widget rankings-widget player-rankings-full-table" data-filter="RANKINGS_YEAR,RANKINGS_MONTH,RANKINGS_DAY" data-format="odi" data-script="icc_rankings" data-widget="player-rankings-filtered">
<div class="rankings-filters">
<h5 class="rankings-filters__title">Look back through the MRF Tyres Rankings Archive using the date selector below:</h5>
<div class="rankings-filters__content">
<div class="rankings-filters__options" data-content-filter=""></div>
<div class="rankings-filters__btns">
<button class="rankings-filters__filter-button js-rankings-filter-button disabled">Apply</button>
<button class="rankings-filters__reset js-rankings-filter-reset u-hide">Reset</button>
</div>
</div>
</div>
<div class="rankings-block__title-container">
<div class="rankings-block__type t-odi">odi</div>
<h4>Men's ODI Batting Rankings</h4>
<div class="share share-- share--vertical share--small" data-widget="share">
<div class="share__container">
<div class="share__btn js-share-btn">
<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-share" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg>
<div class="share__title">Share</div>
</div>
<ul class="share__list">
<li class="share__item share__item--facebook js-social-option" data-social-service="facebook" role="button" tabindex="0">
<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-facebook" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg>
</li>
<li class="share__item share__item--twitter js-social-option" data-social-service="twitter" role="button" tabindex="0">
<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-twitter" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg>
</li>
<li class="share__item share__item--messenger u-show-tablet js-social-option" data-social-service="facebookMessenger" role="buttn" tabindex="0">
<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-facebook-messenger" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg>
</li>
<li class="share__item share__item--whatsapp u-show-tablet js-social-option" data-social-service="whatsapp" role="button" tabindex="0">
<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-whatsapp" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg>
</li>
<li class="share__item share__item--url u-hide-tablet js-copy-button" role="button" tabindex="0">
<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-url" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg>
<div class="share__copy-message js-copy-message">URL Copied</div>
</li>
</ul>
</div>
</div>
</div>
<div class="rankings-block__meta-container">
<div class="rankings-block__last-updated">Last Updated - 11. September 2022</div>
</div>
<div ,="" class="rankings-block__container full" data-cricket-role="batting" data-cricket-scope="odi" data-full="true" data-page-size="100" data-player-rankings-card="" data-title="Men's ODI Batting Rankings">
<table class="table rankings-table">
<thead>
<tr class="table-head">
<th class="table-head__cell u-text-right">Pos</th>
<th class="table-head__cell">Player</th>
<th class="table-head__cell">Team</th>
<th class="table-head__cell table-head__cell--rating">Rating</th>
<th class="table-head__cell u-text-right u-hide-phablet">Career Best Rating</th>
</tr>
</thead>
<tr class="rankings-block__banner">
<td class="rankings-block__position">
<div class="rankings-block__pos-container">
<span class="rankings-block__pos-number">
1
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="rankings-block__top-player-container">
<div class="u-flex-center u-text-left">
<div class="rankings-block__player-image-container rankings-block__player-image-container--large">
<a href="/rankings/mens/player-rankings/2759">
<img alt="Player Image" class="rankings-block__player-image image-missing" data-error="true" data-player="2759" data-size="130x150" data-widget="player-image" src="//resources.pulse.icc-cricket.com/players/130x150/Photo-Missing.png"/>
</a>
</div>
<div>
<a href="/rankings/mens/player-rankings/2759"><div class="rankings-block__banner--name-large">Babar Azam</div></a>
</div>
</div>
</td>
<td>
<div class="rankings-block__banner--nationality">
<div class="flag-15 PAK"></div>
<span class="rankings-block__banner--nation"></span>PAK
</div>
</td>
<td class="u-text-left">
<div class="rankings-block__banner--rating">890</div>
</td>
<td class="u-text-right u-hide-phablet u-overflow-hidden">
<div class="rankings-block__career-best">
<span class="rankings-block__career-best-text">
898 v West Indies, 10/06/2022
</span>
<span class="circle-branding circle-branding--full-table circle-branding--top"></span>
<span class="circle-branding circle-branding--full-table circle-branding--bottom"></span>
</div>
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
2
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/1277">Rassie van der Dussen</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo SA"></span>
<span class="table-body__logo-text">SA</span>
</td>
<td class="table-body__cell rating">789</td>
<td class="table-body__cell u-text-right u-hide-phablet">
796 v England, 19/07/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
3
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/834">Quinton de Kock</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo SA"></span>
<span class="table-body__logo-text">SA</span>
</td>
<td class="table-body__cell rating">784</td>
<td class="table-body__cell u-text-right u-hide-phablet">
813 v Sri Lanka, 10/03/2019
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
4
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/1568">Imam-ul-Haq</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo PAK"></span>
<span class="table-body__logo-text">PAK</span>
</td>
<td class="table-body__cell rating">779</td>
<td class="table-body__cell u-text-right u-hide-phablet">
815 v West Indies, 12/06/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
5
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/164">Virat Kohli</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo IND"></span>
<span class="table-body__logo-text">IND</span>
</td>
<td class="table-body__cell rating">744</td>
<td class="table-body__cell u-text-right u-hide-phablet">
911 v England, 12/07/2018
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
6
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/107">Rohit Sharma</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo IND"></span>
<span class="table-body__logo-text">IND</span>
</td>
<td class="table-body__cell rating">740</td>
<td class="table-body__cell u-text-right u-hide-phablet">
885 v Sri Lanka, 06/07/2019
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
7
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/506">Jonny Bairstow</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo ENG"></span>
<span class="table-body__logo-text">ENG</span>
</td>
<td class="table-body__cell rating">732</td>
<td class="table-body__cell u-text-right u-hide-phablet">
796 v India, 26/03/2021
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
8
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/170">David Warner</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo AUS"></span>
<span class="table-body__logo-text">AUS</span>
</td>
<td class="table-body__cell rating">725</td>
<td class="table-body__cell u-text-right u-hide-phablet">
880 v Pakistan, 26/01/2017
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
9
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/226">Ross Taylor</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo NZ"></span>
<span class="table-body__logo-text">NZ</span>
</td>
<td class="table-body__cell rating">701</td>
<td class="table-body__cell u-text-right u-hide-phablet">
841 v Bangladesh, 05/06/2019
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
10
</span>
<div class="ranking-pos up">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-up" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(7)</span>
<span class="ranking-pos__tooltip">This player has moved up in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/271">Steve Smith</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo AUS"></span>
<span class="table-body__logo-text">AUS</span>
</td>
<td class="table-body__cell rating">697</td>
<td class="table-body__cell u-text-right u-hide-phablet">
752 v Pakistan, 22/01/2017
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
11
</span>
<div class="ranking-pos down">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-down" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(1)</span>
<span class="ranking-pos__tooltip">This player has moved down in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/41">Shikhar Dhawan</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo IND"></span>
<span class="table-body__logo-text">IND</span>
</td>
<td class="table-body__cell rating">696</td>
<td class="table-body__cell u-text-right u-hide-phablet">
813 v Pakistan, 23/09/2018
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
12
</span>
<div class="ranking-pos down">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-down" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(1)</span>
<span class="ranking-pos__tooltip">This player has moved down in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/887">Joe Root</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo ENG"></span>
<span class="table-body__logo-text">ENG</span>
</td>
<td class="table-body__cell rating">691</td>
<td class="table-body__cell u-text-right u-hide-phablet">
824 v Sri Lanka, 13/10/2018
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
13
</span>
<div class="ranking-pos down">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-down" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(1)</span>
<span class="ranking-pos__tooltip">This player has moved down in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/3801">Fakhar Zaman</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo PAK"></span>
<span class="table-body__logo-text">PAK</span>
</td>
<td class="table-body__cell rating">690</td>
<td class="table-body__cell u-text-right u-hide-phablet">
779 v England, 08/07/2021
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
14
</span>
<div class="ranking-pos down">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-down" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(1)</span>
<span class="ranking-pos__tooltip">This player has moved down in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/440">Kane Williamson</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo NZ"></span>
<span class="table-body__logo-text">NZ</span>
</td>
<td class="table-body__cell rating">685</td>
<td class="table-body__cell u-text-right u-hide-phablet">
799 v India, 09/07/2019
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
15
</span>
<div class="ranking-pos down">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-down" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(1)</span>
<span class="ranking-pos__tooltip">This player has moved down in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/2751">Shai Hope</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo WI"></span>
<span class="table-body__logo-text">WI</span>
</td>
<td class="table-body__cell rating">679</td>
<td class="table-body__cell u-text-right u-hide-phablet">
808 v Bangladesh, 17/05/2019
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
16
</span>
<div class="ranking-pos down">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-down" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(1)</span>
<span class="ranking-pos__tooltip">This player has moved down in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/287">Tamim Iqbal</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo BAN"></span>
<span class="table-body__logo-text">BAN</span>
</td>
<td class="table-body__cell rating">675</td>
<td class="table-body__cell u-text-right u-hide-phablet">
737 v West Indies, 28/07/2018
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
17
</span>
<div class="ranking-pos down">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-down" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(1)</span>
<span class="ranking-pos__tooltip">This player has moved down in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/1906">Jason Roy</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo ENG"></span>
<span class="table-body__logo-text">ENG</span>
</td>
<td class="table-body__cell rating">672</td>
<td class="table-body__cell u-text-right u-hide-phablet">
782 v Australia, 11/07/2019
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
18
</span>
<div class="ranking-pos up">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-up" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(1)</span>
<span class="ranking-pos__tooltip">This player has moved up in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/526">Paul Stirling</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo IRE"></span>
<span class="table-body__logo-text">IRE</span>
</td>
<td class="table-body__cell rating">664</td>
<td class="table-body__cell u-text-right u-hide-phablet">
697 v Netherlands, 04/06/2021
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
19
</span>
<div class="ranking-pos up">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-up" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(2)</span>
<span class="ranking-pos__tooltip">This player has moved up in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/491">Mushfiqur Rahim</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo BAN"></span>
<span class="table-body__logo-text">BAN</span>
</td>
<td class="table-body__cell rating">657</td>
<td class="table-body__cell u-text-right u-hide-phablet">
739 v Sri Lanka, 25/05/2021
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
20
</span>
<div class="ranking-pos up">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-up" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(3)</span>
<span class="ranking-pos__tooltip">This player has moved up in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/3882">Alex Carey</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo AUS"></span>
<span class="table-body__logo-text">AUS</span>
</td>
<td class="table-body__cell rating">655</td>
<td class="table-body__cell u-text-right u-hide-phablet">
669 v West Indies, 26/07/2021
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
21
</span>
<div class="ranking-pos down">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-down" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(3)</span>
<span class="ranking-pos__tooltip">This player has moved down in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/167">Aaron Finch</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo AUS"></span>
<span class="table-body__logo-text">AUS</span>
</td>
<td class="table-body__cell rating">654</td>
<td class="table-body__cell u-text-right u-hide-phablet">
798 v England, 25/06/2019
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
22
</span>
<div class="ranking-pos down">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-down" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(2)</span>
<span class="ranking-pos__tooltip">This player has moved down in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/431">Martin Guptill</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo NZ"></span>
<span class="table-body__logo-text">NZ</span>
</td>
<td class="table-body__cell rating">653</td>
<td class="table-body__cell u-text-right u-hide-phablet">
789 v South Africa, 01/03/2017
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
23
</span>
<div class="ranking-pos down">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-down" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(1)</span>
<span class="ranking-pos__tooltip">This player has moved down in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/282">Glenn Maxwell</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo AUS"></span>
<span class="table-body__logo-text">AUS</span>
</td>
<td class="table-body__cell rating">651</td>
<td class="table-body__cell u-text-right u-hide-phablet">
735 v India, 20/01/2016
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
24
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/187">David Miller</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo SA"></span>
<span class="table-body__logo-text">SA</span>
</td>
<td class="table-body__cell rating">627</td>
<td class="table-body__cell u-text-right u-hide-phablet">
643 v Pakistan, 04/04/2021
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
25
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/2987">Harry Tector</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo IRE"></span>
<span class="table-body__logo-text">IRE</span>
</td>
<td class="table-body__cell rating">626</td>
<td class="table-body__cell u-text-right u-hide-phablet">
626 v New Zealand, 15/07/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
26
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/1250">Rahmat Shah</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo AFG"></span>
<span class="table-body__logo-text">AFG</span>
</td>
<td class="table-body__cell rating">624</td>
<td class="table-body__cell u-text-right u-hide-phablet">
629 v Zimbabwe, 05/06/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
27
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/509">Jos Buttler</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo ENG"></span>
<span class="table-body__logo-text">ENG</span>
</td>
<td class="table-body__cell rating">624</td>
<td class="table-body__cell u-text-right u-hide-phablet">
741 v Bangladesh, 08/06/2019
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
28
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/1703">Nicholas Pooran</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo WI"></span>
<span class="table-body__logo-text">WI</span>
</td>
<td class="table-body__cell rating">622</td>
<td class="table-body__cell u-text-right u-hide-phablet">
634 v Ireland, 12/01/2020
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
29
</span>
<div class="ranking-pos up">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-up" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(1)</span>
<span class="ranking-pos__tooltip">This player has moved up in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/1596">Litton Das</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo BAN"></span>
<span class="table-body__logo-text">BAN</span>
</td>
<td class="table-body__cell rating">615</td>
<td class="table-body__cell u-text-right u-hide-phablet">
627 v Zimbabwe, 05/08/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
30
</span>
<div class="ranking-pos down">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-down" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(1)</span>
<span class="ranking-pos__tooltip">This player has moved down in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/1140">Tom Latham</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo NZ"></span>
<span class="table-body__logo-text">NZ</span>
</td>
<td class="table-body__cell rating">613</td>
<td class="table-body__cell u-text-right u-hide-phablet">
649 v Netherlands, 02/04/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
31
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/1129">Sikandar Raza</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo ZIM"></span>
<span class="table-body__logo-text">ZIM</span>
</td>
<td class="table-body__cell rating">603</td>
<td class="table-body__cell u-text-right u-hide-phablet">
627 v India, 22/08/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
32
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/201">Shakib Al Hasan</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo BAN"></span>
<span class="table-body__logo-text">BAN</span>
</td>
<td class="table-body__cell rating">601</td>
<td class="table-body__cell u-text-right u-hide-phablet">
692 v Pakistan, 05/07/2019
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
33
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/">Kariyawasa Asalanka</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo SL"></span>
<span class="table-body__logo-text">SL</span>
</td>
<td class="table-body__cell rating">592</td>
<td class="table-body__cell u-text-right u-hide-phablet">
605 v Australia, 21/06/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
34
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/492">Mahmudullah</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo BAN"></span>
<span class="table-body__logo-text">BAN</span>
</td>
<td class="table-body__cell rating">584</td>
<td class="table-body__cell u-text-right u-hide-phablet">
584 v Zimbabwe, 07/08/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
35
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/1125">Lokesh Rahul</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo IND"></span>
<span class="table-body__logo-text">IND</span>
</td>
<td class="table-body__cell rating">584</td>
<td class="table-body__cell u-text-right u-hide-phablet">
657 v England, 26/03/2021
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
36
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/1156">Calum MacLeod</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo SCO"></span>
<span class="table-body__logo-text">SCO</span>
</td>
<td class="table-body__cell rating">581</td>
<td class="table-body__cell u-text-right u-hide-phablet">
585 v England, 10/06/2018
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
37
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/3761">Shubman Gill</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo IND"></span>
<span class="table-body__logo-text">IND</span>
</td>
<td class="table-body__cell rating">570</td>
<td class="table-body__cell u-text-right u-hide-phablet">
570 v Zimbabwe, 22/08/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
38
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/1141">Kyle Coetzer</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo SCO"></span>
<span class="table-body__logo-text">SCO</span>
</td>
<td class="table-body__cell rating">569</td>
<td class="table-body__cell u-text-right u-hide-phablet">
647 v Ireland, 18/03/2018
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
39
</span>
<div class="ranking-pos up">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-up" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(1)</span>
<span class="ranking-pos__tooltip">This player has moved up in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/855">Haris Sohail</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo PAK"></span>
<span class="table-body__logo-text">PAK</span>
</td>
<td class="table-body__cell rating">551</td>
<td class="table-body__cell u-text-right u-hide-phablet">
618 v Zimbabwe, 30/10/2020
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
40
</span>
<div class="ranking-pos up">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-up" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(1)</span>
<span class="ranking-pos__tooltip">This player has moved up in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/1190">Andrew Balbirnie</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo IRE"></span>
<span class="table-body__logo-text">IRE</span>
</td>
<td class="table-body__cell rating">550</td>
<td class="table-body__cell u-text-right u-hide-phablet">
584 v South Africa, 13/07/2021
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
41
</span>
<div class="ranking-pos down">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-down" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(2)</span>
<span class="ranking-pos__tooltip">This player has moved down in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/1020">Travis Head</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo AUS"></span>
<span class="table-body__logo-text">AUS</span>
</td>
<td class="table-body__cell rating">548</td>
<td class="table-body__cell u-text-right u-hide-phablet">
670 v England, 24/06/2018
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
42
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/1670">Kusal Mendis</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo SL"></span>
<span class="table-body__logo-text">SL</span>
</td>
<td class="table-body__cell rating">548</td>
<td class="table-body__cell u-text-right u-hide-phablet">
631 v Zimbabwe, 30/06/2017
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
43
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/2884">Hashmatullah Shaidi</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo AFG"></span>
<span class="table-body__logo-text">AFG</span>
</td>
<td class="table-body__cell rating">544</td>
<td class="table-body__cell u-text-right u-hide-phablet">
543 v Zimbabwe, 09/06/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
44
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/">Janneman Malan</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo SA"></span>
<span class="table-body__logo-text">SA</span>
</td>
<td class="table-body__cell rating">543</td>
<td class="table-body__cell u-text-right u-hide-phablet">
616 v India, 21/01/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
45
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/620">Najibullah Zadran</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo AFG"></span>
<span class="table-body__logo-text">AFG</span>
</td>
<td class="table-body__cell rating">541</td>
<td class="table-body__cell u-text-right u-hide-phablet">
547 v Bangladesh, 25/02/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
46
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/2784">George Munsey</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo SCO"></span>
<span class="table-body__logo-text">SCO</span>
</td>
<td class="table-body__cell rating">539</td>
<td class="table-body__cell u-text-right u-hide-phablet">
587 v Namibia, 10/07/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
47
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/3084">Avishka Fernando</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo SL"></span>
<span class="table-body__logo-text">SL</span>
</td>
<td class="table-body__cell rating">533</td>
<td class="table-body__cell u-text-right u-hide-phablet">
591 v South Africa, 02/09/2021
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
48
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/2890">Henry Nicholls</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo NZ"></span>
<span class="table-body__logo-text">NZ</span>
</td>
<td class="table-body__cell rating">528</td>
<td class="table-body__cell u-text-right u-hide-phablet">
596 v Bangladesh, 20/03/2021
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
49
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/3893">Aqib Ilyas</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo OMA"></span>
<span class="table-body__logo-text">OMA</span>
</td>
<td class="table-body__cell rating">524</td>
<td class="table-body__cell u-text-right u-hide-phablet">
578 v United States, 11/02/2020
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
50
</span>
<div class="ranking-pos up">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-up" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(3)</span>
<span class="ranking-pos__tooltip">This player has moved up in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/1403">Assad Vala</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo PNG"></span>
<span class="table-body__logo-text">PNG</span>
</td>
<td class="table-body__cell rating">521</td>
<td class="table-body__cell u-text-right u-hide-phablet">
537 v Nepal, 25/03/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
51
</span>
<div class="ranking-pos down">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-down" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(1)</span>
<span class="ranking-pos__tooltip">This player has moved down in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/2740">Hardik Pandya</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo IND"></span>
<span class="table-body__logo-text">IND</span>
</td>
<td class="table-body__cell rating">520</td>
<td class="table-body__cell u-text-right u-hide-phablet">
561 v England, 28/03/2021
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
52
</span>
<div class="ranking-pos down">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-down" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(1)</span>
<span class="ranking-pos__tooltip">This player has moved down in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/1102">Sean Williams</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo ZIM"></span>
<span class="table-body__logo-text">ZIM</span>
</td>
<td class="table-body__cell rating">520</td>
<td class="table-body__cell u-text-right u-hide-phablet">
567 v Sri Lanka, 18/01/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
53
</span>
<div class="ranking-pos down">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-down" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(1)</span>
<span class="ranking-pos__tooltip">This player has moved down in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/1738">Kusal Perera</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo SL"></span>
<span class="table-body__logo-text">SL</span>
</td>
<td class="table-body__cell rating">516</td>
<td class="table-body__cell u-text-right u-hide-phablet">
582 v England, 29/06/2021
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
54
</span>
<div class="ranking-pos up">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-up" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(1)</span>
<span class="ranking-pos__tooltip">This player has moved up in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/1863">Danushka Gunathilaka</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo SL"></span>
<span class="table-body__logo-text">SL</span>
</td>
<td class="table-body__cell rating">510</td>
<td class="table-body__cell u-text-right u-hide-phablet">
554 v Bangladesh, 28/05/2021
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
55
</span>
<div class="ranking-pos up">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-up" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(1)</span>
<span class="ranking-pos__tooltip">This player has moved up in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/1563">Shreyas Iyer</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo IND"></span>
<span class="table-body__logo-text">IND</span>
</td>
<td class="table-body__cell rating">509</td>
<td class="table-body__cell u-text-right u-hide-phablet">
525 v West Indies, 27/07/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
56
</span>
<div class="ranking-pos down">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-down" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(2)</span>
<span class="ranking-pos__tooltip">This player has moved down in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/">Monank Patel</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo USA"></span>
<span class="table-body__logo-text">USA</span>
</td>
<td class="table-body__cell rating">508</td>
<td class="table-body__cell u-text-right u-hide-phablet">
512 v Scotland, 17/08/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
57
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/217">Angelo Mathews</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo SL"></span>
<span class="table-body__logo-text">SL</span>
</td>
<td class="table-body__cell rating">507</td>
<td class="table-body__cell u-text-right u-hide-phablet">
707 v England, 07/12/2014
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
58
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/1705">Shimron Hetmyer</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo WI"></span>
<span class="table-body__logo-text">WI</span>
</td>
<td class="table-body__cell rating">507</td>
<td class="table-body__cell u-text-right u-hide-phablet">
709 v India, 15/12/2019
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
59
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/">Scott Edwards</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo NED"></span>
<span class="table-body__logo-text">NED</span>
</td>
<td class="table-body__cell rating">504</td>
<td class="table-body__cell u-text-right u-hide-phablet">
525 v Pakistan, 16/08/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
60
</span>
<div class="ranking-pos up">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-up" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(1)</span>
<span class="ranking-pos__tooltip">This player has moved up in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/1667">Aiden Markram</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo SA"></span>
<span class="table-body__logo-text">SA</span>
</td>
<td class="table-body__cell rating">501</td>
<td class="table-body__cell u-text-right u-hide-phablet">
501 v England, 24/07/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
61
</span>
<div class="ranking-pos up">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-up" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(1)</span>
<span class="ranking-pos__tooltip">This player has moved up in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/2837">Zeeshan Maqsood</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo OMA"></span>
<span class="table-body__logo-text">OMA</span>
</td>
<td class="table-body__cell rating">499</td>
<td class="table-body__cell u-text-right u-hide-phablet">
499 v Nepal, 14/06/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
62
</span>
<div class="ranking-pos up">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-up" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(1)</span>
<span class="ranking-pos__tooltip">This player has moved up in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/2827">Jatinder Singh</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo OMA"></span>
<span class="table-body__logo-text">OMA</span>
</td>
<td class="table-body__cell rating">496</td>
<td class="table-body__cell u-text-right u-hide-phablet">
496 v Nepal, 14/06/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
63
</span>
<div class="ranking-pos up">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-up" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(1)</span>
<span class="ranking-pos__tooltip">This player has moved up in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/618">Mohammad Nabi</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo AFG"></span>
<span class="table-body__logo-text">AFG</span>
</td>
<td class="table-body__cell rating">495</td>
<td class="table-body__cell u-text-right u-hide-phablet">
545 v Bangladesh, 28/09/2016
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
64
</span>
<div class="ranking-pos up">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-up" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(1)</span>
<span class="ranking-pos__tooltip">This player has moved up in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/1143">Richard Berrington</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo SCO"></span>
<span class="table-body__logo-text">SCO</span>
</td>
<td class="table-body__cell rating">494</td>
<td class="table-body__cell u-text-right u-hide-phablet">
535 v United States, 29/05/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
65
</span>
<div class="ranking-pos down">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-down" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(5)</span>
<span class="ranking-pos__tooltip">This player has moved down in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/">Aaron Jones</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo USA"></span>
<span class="table-body__logo-text">USA</span>
</td>
<td class="table-body__cell rating">491</td>
<td class="table-body__cell u-text-right u-hide-phablet">
501 v Scotland, 17/08/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
66
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/2972">Rishabh Pant</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo IND"></span>
<span class="table-body__logo-text">IND</span>
</td>
<td class="table-body__cell rating">491</td>
<td class="table-body__cell u-text-right u-hide-phablet">
521 v England, 17/07/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
67
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/2760">Imad Wasim</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo PAK"></span>
<span class="table-body__logo-text">PAK</span>
</td>
<td class="table-body__cell rating">488</td>
<td class="table-body__cell u-text-right u-hide-phablet">
556 v Bangladesh, 05/07/2019
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
68
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/833">Temba Bavuma</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo SA"></span>
<span class="table-body__logo-text">SA</span>
</td>
<td class="table-body__cell rating">487</td>
<td class="table-body__cell u-text-right u-hide-phablet">
530 v India, 21/01/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
69
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/17115">Rahmanullah Gurbaz</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo AFG"></span>
<span class="table-body__logo-text">AFG</span>
</td>
<td class="table-body__cell rating">484</td>
<td class="table-body__cell u-text-right u-hide-phablet">
540 v Zimbabwe, 04/06/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
70
</span>
<div class="ranking-pos up">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-up" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(1)</span>
<span class="ranking-pos__tooltip">This player has moved up in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/">Vriitya Aravind</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo UAE"></span>
<span class="table-body__logo-text">UAE</span>
</td>
<td class="table-body__cell rating">480</td>
<td class="table-body__cell u-text-right u-hide-phablet">
480 v Scotland, 14/08/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
71
</span>
<div class="ranking-pos up">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-up" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(1)</span>
<span class="ranking-pos__tooltip">This player has moved up in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/1295">Dhananjaya de Silva</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo SL"></span>
<span class="table-body__logo-text">SL</span>
</td>
<td class="table-body__cell rating">480</td>
<td class="table-body__cell u-text-right u-hide-phablet">
485 v Australia, 21/06/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
72
</span>
<div class="ranking-pos down">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-down" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(2)</span>
<span class="ranking-pos__tooltip">This player has moved down in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/964">Marcus Stoinis</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo AUS"></span>
<span class="table-body__logo-text">AUS</span>
</td>
<td class="table-body__cell rating">478</td>
<td class="table-body__cell u-text-right u-hide-phablet">
616 v India, 08/03/2019
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
73
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/1919">Soumya Sarkar</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo BAN"></span>
<span class="table-body__logo-text">BAN</span>
</td>
<td class="table-body__cell rating">476</td>
<td class="table-body__cell u-text-right u-hide-phablet">
671 v South Africa, 15/07/2015
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
74
</span>
<div class="ranking-pos up">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-up" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(8)</span>
<span class="ranking-pos__tooltip">This player has moved up in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/971">Jimmy Neesham</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo NZ"></span>
<span class="table-body__logo-text">NZ</span>
</td>
<td class="table-body__cell rating">471</td>
<td class="table-body__cell u-text-right u-hide-phablet">
549 v Pakistan, 26/06/2019
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
75
</span>
<div class="ranking-pos down">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-down" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(1)</span>
<span class="ranking-pos__tooltip">This player has moved down in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/733">Tom Cooper</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo NED"></span>
<span class="table-body__logo-text">NED</span>
</td>
<td class="table-body__cell rating">471</td>
<td class="table-body__cell u-text-right u-hide-phablet">
575 v West Indies, 28/02/2011
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
76
</span>
<div class="ranking-pos down">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-down" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(1)</span>
<span class="ranking-pos__tooltip">This player has moved down in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/846">Sarfaraz Ahmed</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo PAK"></span>
<span class="table-body__logo-text">PAK</span>
</td>
<td class="table-body__cell rating">468</td>
<td class="table-body__cell u-text-right u-hide-phablet">
581 v West Indies, 05/10/2016
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
77
</span>
<div class="ranking-pos down">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-down" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(1)</span>
<span class="ranking-pos__tooltip">This player has moved down in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/872">Evin Lewis</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo WI"></span>
<span class="table-body__logo-text">WI</span>
</td>
<td class="table-body__cell rating">466</td>
<td class="table-body__cell u-text-right u-hide-phablet">
567 v Sri Lanka, 12/03/2021
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
78
</span>
<div class="ranking-pos up">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-up" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(10)</span>
<span class="ranking-pos__tooltip">This player has moved up in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/4029">Marnus Labuschagne</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo AUS"></span>
<span class="table-body__logo-text">AUS</span>
</td>
<td class="table-body__cell rating">466</td>
<td class="table-body__cell u-text-right u-hide-phablet">
532 v India, 29/11/2020
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
79
</span>
<div class="ranking-pos down">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-down" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(2)</span>
<span class="ranking-pos__tooltip">This player has moved down in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/1847">Niroshan Dickwella</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo SL"></span>
<span class="table-body__logo-text">SL</span>
</td>
<td class="table-body__cell rating">465</td>
<td class="table-body__cell u-text-right u-hide-phablet">
518 v Bangladesh, 28/05/2021
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
80
</span>
<div class="ranking-pos down">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-down" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(2)</span>
<span class="ranking-pos__tooltip">This player has moved down in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/">R.K. Paudel</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo NEP"></span>
<span class="table-body__logo-text">NEP</span>
</td>
<td class="table-body__cell rating">462</td>
<td class="table-body__cell u-text-right u-hide-phablet">
478 v Oman, 14/06/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
81
</span>
<div class="ranking-pos up">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-up" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(3)</span>
<span class="ranking-pos__tooltip">This player has moved up in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/1903">Mitchell Santner</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo NZ"></span>
<span class="table-body__logo-text">NZ</span>
</td>
<td class="table-body__cell rating">462</td>
<td class="table-body__cell u-text-right u-hide-phablet">
502 v England, 10/03/2018
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
82
</span>
<div class="ranking-pos down">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-down" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(3)</span>
<span class="ranking-pos__tooltip">This player has moved down in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/3869">Heinrich Klaasen</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo SA"></span>
<span class="table-body__logo-text">SA</span>
</td>
<td class="table-body__cell rating">461</td>
<td class="table-body__cell u-text-right u-hide-phablet">
499 v Australia, 07/03/2020
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
83
</span>
<div class="ranking-pos down">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-down" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(3)</span>
<span class="ranking-pos__tooltip">This player has moved down in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/4502">Afif Hossain</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo BAN"></span>
<span class="table-body__logo-text">BAN</span>
</td>
<td class="table-body__cell rating">459</td>
<td class="table-body__cell u-text-right u-hide-phablet">
459 v Zimbabwe, 10/08/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
84
</span>
<div class="ranking-pos down">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-down" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(1)</span>
<span class="ranking-pos__tooltip">This player has moved down in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/2876">Dasun Shanaka</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo SL"></span>
<span class="table-body__logo-text">SL</span>
</td>
<td class="table-body__cell rating">455</td>
<td class="table-body__cell u-text-right u-hide-phablet">
472 v Australia, 16/06/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
85
</span>
<div class="ranking-pos down">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-down" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(4)</span>
<span class="ranking-pos__tooltip">This player has moved down in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/820">Colin de Grandhomme</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo NZ"></span>
<span class="table-body__logo-text">NZ</span>
</td>
<td class="table-body__cell rating">453</td>
<td class="table-body__cell u-text-right u-hide-phablet">
520 v Pakistan, 19/01/2018
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
86
</span>
<div class="ranking-pos down">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-down" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(1)</span>
<span class="ranking-pos__tooltip">This player has moved down in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/4998">Shamarh Brooks</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo WI"></span>
<span class="table-body__logo-text">WI</span>
</td>
<td class="table-body__cell rating">452</td>
<td class="table-body__cell u-text-right u-hide-phablet">
479 v New Zealand, 17/08/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
87
</span>
<div class="ranking-pos down">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-down" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(1)</span>
<span class="ranking-pos__tooltip">This player has moved down in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/1223">Gerhard Erasmus</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo NAM"></span>
<span class="table-body__logo-text">NAM</span>
</td>
<td class="table-body__cell rating">449</td>
<td class="table-body__cell u-text-right u-hide-phablet">
449 v Nepal, 16/07/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
88
</span>
<div class="ranking-pos down">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-down" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(1)</span>
<span class="ranking-pos__tooltip">This player has moved down in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/2885">Rashid Khan</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo AFG"></span>
<span class="table-body__logo-text">AFG</span>
</td>
<td class="table-body__cell rating">447</td>
<td class="table-body__cell u-text-right u-hide-phablet">
477 v Ireland, 10/03/2019
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
89
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/1418">Michael Leask</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo SCO"></span>
<span class="table-body__logo-text">SCO</span>
</td>
<td class="table-body__cell rating">446</td>
<td class="table-body__cell u-text-right u-hide-phablet">
446 v United States, 17/08/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
90
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/2781">Max O'Dowd</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo NED"></span>
<span class="table-body__logo-text">NED</span>
</td>
<td class="table-body__cell rating">443</td>
<td class="table-body__cell u-text-right u-hide-phablet">
494 v England, 17/06/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
91
</span>
<div class="ranking-pos up">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-up" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount"></span>
<span class="ranking-pos__tooltip">This player has moved up in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/">Finn Allen</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo NZ"></span>
<span class="table-body__logo-text">NZ</span>
</td>
<td class="table-body__cell rating">442</td>
<td class="table-body__cell u-text-right u-hide-phablet">
442 v Australia, 11/09/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
92
</span>
<div class="ranking-pos down">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-down" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(1)</span>
<span class="ranking-pos__tooltip">This player has moved down in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/533">Craig Ervine</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo ZIM"></span>
<span class="table-body__logo-text">ZIM</span>
</td>
<td class="table-body__cell rating">442</td>
<td class="table-body__cell u-text-right u-hide-phablet">
524 v Afghanistan, 18/10/2015
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
93
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/3216">Muhammad Usman</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo UAE"></span>
<span class="table-body__logo-text">UAE</span>
</td>
<td class="table-body__cell rating">440</td>
<td class="table-body__cell u-text-right u-hide-phablet">
491 v Oman, 08/02/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
94
</span>
<div class="ranking-pos up">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-up" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(1)</span>
<span class="ranking-pos__tooltip">This player has moved up in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/1201">Mohammad Rizwan</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo PAK"></span>
<span class="table-body__logo-text">PAK</span>
</td>
<td class="table-body__cell rating">438</td>
<td class="table-body__cell u-text-right u-hide-phablet">
442 v West Indies, 08/06/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
95
</span>
<div class="ranking-pos down">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-down" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(3)</span>
<span class="ranking-pos__tooltip">This player has moved down in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/221">Mitchell Marsh</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo AUS"></span>
<span class="table-body__logo-text">AUS</span>
</td>
<td class="table-body__cell rating">437</td>
<td class="table-body__cell u-text-right u-hide-phablet">
641 v New Zealand, 06/12/2016
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
96
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/1411">Charles Amini</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo PNG"></span>
<span class="table-body__logo-text">PNG</span>
</td>
<td class="table-body__cell rating">436</td>
<td class="table-body__cell u-text-right u-hide-phablet">
436 v United States, 11/09/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
97
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/1188">Matthew Cross</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo SCO"></span>
<span class="table-body__logo-text">SCO</span>
</td>
<td class="table-body__cell rating">436</td>
<td class="table-body__cell u-text-right u-hide-phablet">
446 v UAE, 14/08/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
98
</span>
<div class="ranking-pos down">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-down" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(4)</span>
<span class="ranking-pos__tooltip">This player has moved down in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/">Steven Taylor</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo USA"></span>
<span class="table-body__logo-text">USA</span>
</td>
<td class="table-body__cell rating">435</td>
<td class="table-body__cell u-text-right u-hide-phablet">
440 v Scotland, 13/08/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
99
</span>
<div class="ranking-pos down">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-down" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(1)</span>
<span class="ranking-pos__tooltip">This player has moved down in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/5510">Chundangapoyil Rizwan</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo UAE"></span>
<span class="table-body__logo-text">UAE</span>
</td>
<td class="table-body__cell rating">433</td>
<td class="table-body__cell u-text-right u-hide-phablet">
434 v United States, 11/08/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
100
</span>
<div class="ranking-pos up">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-up" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount"></span>
<span class="ranking-pos__tooltip">This player has moved up in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/">Cameron Green</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo AUS"></span>
<span class="table-body__logo-text">AUS</span>
</td>
<td class="table-body__cell rating">428</td>
<td class="table-body__cell u-text-right u-hide-phablet">
428 v New Zealand, 11/09/2022
</td>
</tr>
</table>
</div>
</section>
</div>
</div>
</div>
</div>
</main>
<footer class="footer" role="contentinfo">
<section class="partners">
<div class="partners__top-level">
<section class="partners__container">
<div class="partners__list partners__list--large">
<div class="partners__item">
<a aria-label="Nissan" class="partners__link" href="http://track.adform.net/C/?bn=18235072" target="_blank" title="Nissan">
<img alt="Nissan" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/06/30/ceabcea6-36b3-40c5-ab00-7ad8b66ecd73/nissan-2.png?width=142&height=46">
</img></a>
</div>
<div class="partners__item">
<a aria-label="Oppo" class="partners__link" href="http://track.adform.net/C/?bn=18236015" target="_blank" title="Oppo">
<img alt="Oppo" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/06/30/ea209fd5-065d-47aa-8ba7-fe70a3bcf8aa/Frame-233.png?width=142&height=46">
</img></a>
</div>
<div class="partners__item">
<a aria-label="MRF Tyres" class="partners__link" href="http://track.adform.net/C/?bn=18235782" title="MRF Tyres">
<img alt="MRF Tyres" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/06/30/c1afea15-4875-4cba-9710-547729daa841/Frame-235.png?width=142&height=46"/>
</a>
</div>
<div class="partners__item">
<a aria-label="Booking" class="partners__link" href="https://www.booking.com/" target="_blank" title="Booking">
<img alt="Booking" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/06/30/8bb6e96d-2b69-4d8e-acc0-568602baba2d/Frame-234.png?width=142&height=46"/>
</a>
</div>
<div class="partners__item">
<a aria-label="BYJU" class="partners__link" href="https://byjus.com/" target="_blank" title="BYJU">
<img alt="BYJU" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/06/30/9b3ea6a2-25f4-478e-b8aa-0e1b7d3d0e2a/Frame-237.png?width=142&height=46"/>
</a>
</div>
<div class="partners__item">
<a aria-label="Emirates" class="partners__link" href="http://track.adform.net/C/?bn=18236184" title="Emirates">
<img alt="Emirates" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/06/30/d9fb726d-2cbd-41c8-9aaf-bd94f37a8e4a/Frame-236.png?width=142&height=46"/>
</a>
</div>
</div>
</section>
</div>
<div class="partners__block">
<section class="partners__container">
<div class="partners__list partners__list--medium">
<div class="partners__item">
<a aria-label="Bira 91" class="partners__link" href="https://www.bira91.com/" target="_blank" title="Bira 91">
<img alt="Bira 91" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/06/30/587180d3-1347-4152-93ab-318460743d55/Frame-239.png?width=95&height=31"/>
</a>
</div>
<div class="partners__item">
<a aria-label="Eatfit" class="partners__link" href="https://www.eatfit.in/" target="_blank" title="Eatfit">
<img alt="Eatfit" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/07/04/674c634d-7f3c-4dfc-989c-5d72fed70d79/eatfit.png?width=95&height=31"/>
</a>
</div>
<div class="partners__item">
<a aria-label="Coca Cola" class="partners__link" href="https://www.coca-colaindia.com/brands/thums-up" title="Coca Cola">
<img alt="Coca Cola" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/08/24/8f5e6ad2-0dfe-4e99-896c-20b034763dec/TU-Taste-The-Thunder-Logo.png?width=95&height=31"/>
</a>
</div>
<div class="partners__item">
<a aria-label="Upstox" class="partners__link" href="https://upstox.com/" target="_blank" title="Upstox">
<img alt="Upstox" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/06/30/70fab62f-38e2-47bb-8a3b-ffa437b1c6ac/Frame-240.png?width=95&height=31"/>
</a>
</div>
<div class="partners__item">
<a aria-label="PostPe" class="partners__link" href="https://ftx.com/" target="_blank" title="PostPe">
<img alt="PostPe" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/06/30/4c2e8d25-2744-4a26-9345-94cfafd132d3/Frame-243.png?width=95&height=31"/>
</a>
</div>
<div class="partners__item">
<a aria-label="FTX" class="partners__link" href="https://ftx.com/" target="_blank" title="FTX">
<img alt="FTX" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/06/30/8055a53b-e8d8-4622-9d0d-a833d86bff58/Frame-242.png?width=95&height=31"/>
</a>
</div>
<div class="partners__item">
<a aria-label="NIUM" class="partners__link" href="https://www.nium.com/" target="_blank" title="NIUM">
<img alt="NIUM" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/06/30/8eb1e98b-a9dc-4db8-84b0-4635582f96b0/nium.png?width=95&height=31"/>
</a>
</div>
</div>
</section>
<section class="partners__container">
<div class="partners__list partners__list--medium">
<div class="partners__item">
<a aria-label="Royal Stag" class="partners__link" href="https://www.pernod-ricard.com/en/brands/our-brands/royal-stag/" target="_blank" title="Royal Stag">
<img alt="Royal Stag" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/06/30/146eb588-7d36-4825-b06a-72a2533af1f0/Frame-250.png?width=95&height=31"/>
</a>
</div>
<div class="partners__item">
<a aria-label="Fantasy Cricket" class="partners__link" href="https://www.dream11.com/fantasy-cricket" target="_blank" title="Fantasy Cricket">
<img alt="Fantasy Cricket" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/06/30/d08b4b92-a224-4484-8269-22184d633d74/Frame-248.png?width=95&height=31"/>
</a>
</div>
<div class="partners__item">
<a aria-label="Jacobs Creek" class="partners__link" href="https://www.jacobscreek.com/en-gb" target="_blank" title="Jacobs Creek">
<img alt="Jacobs Creek" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/06/30/f44c1356-91b7-49c2-bb2a-8db9cd20133d/Jacobs-.png?width=95&height=31"/>
</a>
</div>
<div class="partners__item">
<a aria-label="FanCraze" class="partners__link" href="https://www.fancraze.com" title="FanCraze">
<img alt="FanCraze" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/06/30/51c3576a-0e91-4246-8d36-85fc5037cec6/Frame-249.png?width=95&height=31"/>
</a>
</div>
</div>
</section>
</div>
<div class="partners__block partners__block--inline">
<section class="partners__container">
<h3 class="partners__title">BROADCAST PARTNER</h3>
<div class="partners__list partners__list--large">
<div class="partners__item">
<a aria-label="Star Sports" class="partners__link" href="http://track.adform.net/C/?bn=18238489" target="_blank" title="Star Sports">
<img alt="Star Sports" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/06/30/6becb07e-9e85-4221-a4cf-43d1b58c5e46/star-sports.png?width=142&height=46"/>
</a>
</div>
</div>
</section>
<section class="partners__container">
<h3 class="partners__title">SOCIAL RESPONSIBILITY</h3>
<div class="partners__list partners__list--large">
<div class="partners__item">
<a aria-label="Cricket for Good" class="partners__link" href="https://www.icc-cricket.com/about/the-icc/cricket-for-good" target="_blank" title="Cricket for Good">
<img alt="Cricket for Good" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/06/30/66d0bd38-4492-4742-ae2f-a5a2f3ea7032/cricket4good.png?width=142&height=46"/>
</a>
</div>
</div>
</section>
</div>
</section>
<div class="footer__app-promo u-show-tablet">
<section class="app-promo">
<div class="app-promo__top">
<span class="app-promo__icon icn icn-app-icon"></span>
<span class="app-promo__text">Download the official ICC App today</span>
</div>
<div class="app-promo__bottom">
<a class="app-promo__cta icn icn-apple-badge" href="https://itunes.apple.com/gb/app/icc-world-twenty20-india-2016/id956440606?mt=8" target="_blank"></a>
<a class="app-promo__cta icn icn-android-badge" href="https://play.google.com/store/apps/details?id=com.pl.cwc_2015&hl=en_GB" target="_blank"></a>
</div>
</section>
</div>
<div class="footer__main">
<nav class="footer__links">
<a class="footer__link" href="http://www.icc-cricket.com/about/the-icc/legal-notices/website-terms-of-use">
Legal Notice
</a>
<a class="footer__link" href="http://www.icc-cricket.com/about/the-icc/legal-notices/privacy-policy">
Privacy Policy
</a>
</nav>
<div class="footer__social">
<nav class="social-follow">
<h6 class="social-follow__title">Follow Us</h6>
<a class="social-follow__item social-follow__item--facebook" href="https://www.facebook.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-facebook-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.facebook</span></a>
<a class="social-follow__item social-follow__item--twitter" href="https://twitter.com/ICC" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-twitter-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.twitter</span>
</a>
<a class="social-follow__item social-follow__item--instagram" href="https://www.instagram.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-instagram-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.instagram</span>
</a>
<a class="social-follow__item social-follow__item--youtube" href="https://www.youtube.com/user/CricketICC?cbrd=1" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-youtube-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.youtube</span>
</a>
</nav>
<svg aria-hidden="true" focusable="false" style="width:0;height:0;position:absolute;">
<lineargradient gradienttransform="rotate(45)" id="instagram" x2="1" y2="1">
<stop offset="0%" stop-color="#4c68d6"></stop>
<stop offset="33%" stop-color="#b22d98"></stop>
<stop offset="65%" stop-color="#e85a50"></stop>
<stop offset="100%" stop-color="#fbbb59"></stop>
</lineargradient>
</svg>
</div>
</div>
<div class="footer__corporate">
<span class="footer__copyright">2022 © International Cricket Council FZ LLC</span>
</div>
</footer>
<script src="/resources/prod/v8.28.1/scripts/vendors.min.js"></script>
<script src="/resources/prod/v8.28.1/scripts/client.min.js"></script>
<script src="https://sso.fanaccount.icc-cricket.com/auth/js/keycloak.js"></script>
<!--[if IE]> -->
<script type="text/javascript">
svg4everybody();
</script>
<!-- <![endif]-->
</body>
</html>
Top_Batsman=soup.find_all('td',class_="table-body__cell rankings-table__name name")[0:10]
Top_Batsman
[<td class="table-body__cell rankings-table__name name"> <a href="/rankings/mens/player-rankings/1277">Rassie van der Dussen</a> </td>, <td class="table-body__cell rankings-table__name name"> <a href="/rankings/mens/player-rankings/834">Quinton de Kock</a> </td>, <td class="table-body__cell rankings-table__name name"> <a href="/rankings/mens/player-rankings/1568">Imam-ul-Haq</a> </td>, <td class="table-body__cell rankings-table__name name"> <a href="/rankings/mens/player-rankings/164">Virat Kohli</a> </td>, <td class="table-body__cell rankings-table__name name"> <a href="/rankings/mens/player-rankings/107">Rohit Sharma</a> </td>, <td class="table-body__cell rankings-table__name name"> <a href="/rankings/mens/player-rankings/506">Jonny Bairstow</a> </td>, <td class="table-body__cell rankings-table__name name"> <a href="/rankings/mens/player-rankings/170">David Warner</a> </td>, <td class="table-body__cell rankings-table__name name"> <a href="/rankings/mens/player-rankings/226">Ross Taylor</a> </td>, <td class="table-body__cell rankings-table__name name"> <a href="/rankings/mens/player-rankings/271">Steve Smith</a> </td>, <td class="table-body__cell rankings-table__name name"> <a href="/rankings/mens/player-rankings/41">Shikhar Dhawan</a> </td>]
Team_Batsman=soup.find_all('span',class_="table-body__logo-text")[0:10]
Team_Batsman
[<span class="table-body__logo-text">SA</span>, <span class="table-body__logo-text">SA</span>, <span class="table-body__logo-text">PAK</span>, <span class="table-body__logo-text">IND</span>, <span class="table-body__logo-text">IND</span>, <span class="table-body__logo-text">ENG</span>, <span class="table-body__logo-text">AUS</span>, <span class="table-body__logo-text">NZ</span>, <span class="table-body__logo-text">AUS</span>, <span class="table-body__logo-text">IND</span>]
Batsman_rating=soup.find_all('td',class_="table-body__cell rating")[0:10]
Batsman_rating
[<td class="table-body__cell rating">789</td>, <td class="table-body__cell rating">784</td>, <td class="table-body__cell rating">779</td>, <td class="table-body__cell rating">744</td>, <td class="table-body__cell rating">740</td>, <td class="table-body__cell rating">732</td>, <td class="table-body__cell rating">725</td>, <td class="table-body__cell rating">701</td>, <td class="table-body__cell rating">697</td>, <td class="table-body__cell rating">696</td>]
print(len(Top_Batsman),len(Team_Batsman),len(Batsman_rating))
10 10 10
import pandas as pd
df=pd.DataFrame({"Name":Top_Batsman,"Team":Team_Batsman,"Ratings":Batsman_rating})
df
| Name | Team | Ratings | |
|---|---|---|---|
| 0 | [\n, [Rassie van der Dussen], \n] | [SA] | [789] |
| 1 | [\n, [Quinton de Kock], \n] | [SA] | [784] |
| 2 | [\n, [Imam-ul-Haq], \n] | [PAK] | [779] |
| 3 | [\n, [Virat Kohli], \n] | [IND] | [744] |
| 4 | [\n, [Rohit Sharma], \n] | [IND] | [740] |
| 5 | [\n, [Jonny Bairstow], \n] | [ENG] | [732] |
| 6 | [\n, [David Warner], \n] | [AUS] | [725] |
| 7 | [\n, [Ross Taylor], \n] | [NZ] | [701] |
| 8 | [\n, [Steve Smith], \n] | [AUS] | [697] |
| 9 | [\n, [Shikhar Dhawan], \n] | [IND] | [696] |
c) Top 10 ODI bowlers along with the records of their team and rating.
site=requests.get('https://www.icc-cricket.com/rankings/mens/player-rankings/odi/bowling')
site
<Response [200]>
soup=BeautifulSoup(site.text,'html.parser')
soup
<!DOCTYPE html>
<html lang="en">
<head>
<meta content="ICC Men's ODI Bowling | Player Rankings | ICC" name="twitter:title"/>
<meta content="website" property="og:type"/>
<meta content="summary_large_image" property="twitter:card"/>
<meta content="Official ICC Cricket website - live matches, scores, news, highlights, commentary, rankings, videos and fixtures from the International Cricket Council." name="description"/>
<meta content="@icc" property="twitter:site"/>
<meta content="Official ICC Cricket website - live matches, scores, news, highlights, commentary, rankings, videos and fixtures from the International Cricket Council." name="twitter:description"/>
<meta content="https://www.icc-cricket.com/resources/ver/i/elements/default-thumbnail.jpg" name="twitter:image"/>
<meta content="ICC Men's ODI Bowling | Player Rankings | ICC" property="og:title"/>
<meta content="https://www.icc-cricket.com/resources/ver/i/elements/default-thumbnail.jpg" property="og:image"/>
<title>ICC Men's ODI Bowling | Player Rankings | ICC</title>
<meta content="Official ICC Cricket website - live matches, scores, news, highlights, commentary, rankings, videos and fixtures from the International Cricket Council." property="og:description"/>
<!-- Designed and built by Pulselive - www.pulselive.com -->
<script>
var dataLayer = [{
'user_language':'English',
'web_domain':'www.icc-cricket.com',
'page_type':'/rankings/mens/player-rankings/odi/bowling'
}];
</script>
<!-- Google Tag Manager -->
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-T7DPH24');</script>
<!-- End Google Tag Manager -->
<script async="" src="https://securepubads.g.doubleclick.net/tag/js/gpt.js"></script>
<meta charset="utf-8"/>
<meta content="width=device-width, initial-scale=1" name="viewport"/>
<meta content="app-id=956440606" name="apple-itunes-app">
<link href="/resources/prod/v8.28.1/manifest.json" rel="manifest"/>
<link href="/resources/prod/v8.28.1/i/elements/favicon.ico" rel="shortcut icon">
<link href="https://plus.google.com/+ICC" rel="publisher"/>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebPage",
"headline": "",
"url": "https://www.icc-cricket.com/rankings/mens/player-rankings/odi/bowling",
"creator": ["ICC"]
}
</script>
<title>International Cricket Council</title>
<!-- google platform library -->
<script async="" defer="" src="https://apis.google.com/js/api:client.js?onload=startApp"></script>
<script>
var startApp = function() {
gapi.load('auth2', function(){
// Retrieve the singleton for the GoogleAuth library and set up the client.
auth2 = gapi.auth2.init({
client_id: '844310787835-1rirg6e5plp2jou6v701br43iuo0lkcu.apps.googleusercontent.com'
// Request scopes in addition to 'profile' and 'email'
//scope: 'additional_scope'
});
});
};
</script>
<link href="https://fonts.googleapis.com/css?family=Hind+Siliguri:300,400,500,600" rel="stylesheet"/>
<!-- Polyfill service provided by the FT - https://github.com/Financial-Times/polyfill-service -->
<script src="https://cdn.polyfill.io/v2/polyfill.min.js?features=default,fetch"></script>
<link href="/resources/prod/v8.28.1/styles/screen.css" rel="stylesheet">
<script>
window.RESOURCE_VERSION = 'prod/v8.28.1';
</script>
</link></link></meta></head>
<body>
<!-- Google Tag Manager (noscript) -->
<noscript><iframe height="0" src="https://www.googletagmanager.com/ns.html?id=GTM-T7DPH24" style="display:none;visibility:hidden" width="0"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
<!--
Start of Floodlight Tag: Please do not removeActivity name of this tag: ICC Website - VisitationURL of the webpage where the tag is expected to be placed: This tag must be placed between the <body> and </body> tags, as close as possible to the opening tag. Creation Date: 10/01/2019
-->
<iframe frameborder="0" height="1" src="https://9282652.fls.doubleclick.net/activityi;src=9282652;type=iccre0;cat=iccwe0;u1=[user_language];u2=[user_country];u3=[page_type];u4=[web_domain];dc_lat=;dc_rdid=;tag_for_child_directed_treatment=;tfua=;npa=;ord=[SessionID]?" style="display:none" width="1"></iframe>
<!-- End of Floodlight Tag: Please do not remove -->
<script id="parsely-cfg" src="//cdn.parsely.com/keys/icc-cricket.com/p.js"></script>
<script>
window.fbAsyncInit = function() {
FB.init({
appId : 159513024983374,
autoLogAppEvents : true,
xfbml : true,
version : 'v3.0'
});
};
(function(d, s, id){
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) {return;}
js = d.createElement(s); js.id = id;
js.src = "https://connect.facebook.net/en_US/sdk.js";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));
</script>
<div class="user-account-overlay js-user-account-overlay"></div>
<section class="user-account js-user-account" data-script="sso_user-account" data-widget="user-account">
<div class="user-account__wrapper js-panel-account u-hide">
<div class="user-account__header">
<div class="user-account__close js-account-slider-close-btn" role="button">
<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-close" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg>
</div>
<div class="user-account__user-wrapper">
<div class="user-account__image">
<img alt="User Image" class="u-hide js-account-user-img" src="#"/>
</div>
<div class="user-account__user-info">
<p class="user-account__user-info__text js-account-user">Name Lastname</p>
<p class="user-account__user-info__profile js-profile-completion-info u-hide">
<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-alert" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg>
Profile <span class="js-profile-completion-percentage"></span>% Complete
</p>
</div>
</div>
<div class="user-account__tabs-nav js-tabs-wrapper"></div>
</div>
<div class="account-message js-account-message"></div>
<form autocomplete="off" id="user-account" name="user-account">
<div class="user-account__tab" data-ui-tab="My Account">
<div class="user-account__social-wrapper js-social-wrapper u-hide"></div>
<fieldset>
<div class="form-group-multiple">
<div class="form-group">
<label class="form-group__label" for="given_name">First name *</label>
<input class="form-group__element" id="given_name" maxlength="50" name="given_name" pattern="^[A-Za-z-\s]+$" required="" type="text"/>
<p class="js-error form-error"></p>
</div>
<div class="form-group">
<label class="form-group__label" for="family_name">Last name *</label>
<input class="form-group__element" id="family_name" maxlength="50" name="family_name" pattern="[A-Za-z-\s]+$" required="" type="text"/>
<p class="js-error form-error"></p>
</div>
</div>
<div class="form-group-multiple form-group-multiple--with-button">
<div class="form-group is-disabled js-change-email-input">
<label class="form-group__label" for="email">Email address *</label>
<input autocomplete="off" class="form-group__element" disabled="" id="email" maxlength="50" name="email" type="email"/>
<p class="js-error form-error"></p>
<p class="js-email-exists form-error form-error--email">Email address not available.</p>
</div>
<div class="form-group form-group--button">
<button class="form-btn form-btn--outlined js-change-email" novalidate="" type="button">Change Email</button>
</div>
</div>
<div class="form-group-multiple form-group-multiple--with-button js-account-password">
<div class="form-group is-disabled js-change-password-input">
<label class="form-group__label" for="password">Password *</label>
<input autocomplete="off" class="form-group__element" disabled="" id="password" name="password" placeholder="******" type="password"/>
<p class="js-error form-error"></p>
</div>
<div class="form-group form-group--button">
<button class="form-btn form-btn--outlined js-change-password" novalidate="" type="button">Change Password</button>
</div>
</div>
<div class="form-block form-block">
<div class="form-block__label form-block__label--dob">Date of Birth</div>
<div class="form-group-multiple">
<div class="form-group">
<label class="form-group__label" for="day">Day *</label>
<input class="form-group__element" id="day" min="0" name="day" placeholder="dd" required="" type="number"/>
<p class="js-error form-error"></p>
</div>
<div class="form-group">
<label class="form-group__label" for="month">Month *</label>
<input class="form-group__element" id="month" min="0" name="month" placeholder="mm" required="" type="number"/>
<p class="js-error form-error"></p>
</div>
<div class="form-group">
<label class="form-group__label" for="year">Year *</label>
<input class="form-group__element" id="year" min="0" name="year" placeholder="yyyy" required="" type="number"/>
<p class="js-error form-error"></p>
</div>
</div>
<p class="js-date-error form-error form-error--date">The date of birth is not valid</p>
</div>
<div class="form-block" data-dropdown-type="SSO_COUNTRY" data-widget="form-dropdown">
<div class="form-block__label">Country of residence</div>
<div class="form-dropdown js-dropdown-wrapper"></div>
</div>
</fieldset>
</div>
<div class="user-account__tab" data-ui-tab="My Preferences">
<div class="js-account-prefs u-hide">
<fieldset>
<div class="form-block" data-dropdown-type="SSO_TEAM" data-widget="form-dropdown">
<div class="form-block__label">Your favourite team</div>
<div class="form-dropdown js-dropdown-wrapper"></div>
</div>
<div class="js-contact-prefs user-account__contact-prefs-wrapper">
<div class="user-account__alert">
<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-alert" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg>
<span>Sorry, but your contact preferences will take up to 24hrs to update</span>
</div>
<div class="user-account__contact-prefs">
<div class="form-block form-block--no-margin">
<div class="form-group form-group--checkbox">
<input class="form-group__element" id="allow-contacting" name="allow-contacting" type="checkbox"/>
<label class="form-group__label" for="allow-contacting">I'm happy for the ICC to contact me</label>
</div>
<p class="js-error form-error"></p>
</div>
<div class="form-block form-block--no-margin">
<div class="form-group form-group--checkbox">
<input class="form-group__element" id="allow-partner-contacting" name="allow-partner-contacting" type="checkbox"/>
<label class="form-group__label" for="allow-partner-contacting">I'm happy for the ICC's partners to contact me</label>
</div>
<p class="js-error form-error"></p>
</div>
</div>
</div>
</fieldset>
</div>
<div class="overlay__loader__small js-loader-prefs">
Hold on! Loading your preferences <div class="loader loader--small"></div>
</div>
</div>
<div class="user-account__buttons-wrapper">
<div class="user-account__account-actions js-buttons-wrapper">
<button class="form-btn form-btn--grey is-disabled js-cancel" disabled="">Cancel</button>
<button class="form-btn is-disabled js-submit" disabled="" type="submit">Save Changes</button>
<div class="loader js-loader u-hide"></div>
</div>
<button class="form-btn form-btn--grey js-account-signout u-show-tablet">Sign Out<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-sign-out" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg></button>
</div>
</form>
</div>
<div class="user-account__wrapper js-panel-account-password u-hide">
<form id="account-edit-password" name="account-edit-password" novalidate="">
<div class="user-account__tabs-wrapper">
<h1 class="overlay__title">
Edit your password
<span class="overlay__title__option"><a class="form-cta js-cancel-password" href="#">back</a></span>
</h1>
<div class="form-group form-group--password">
<div class="form-group__password-action js-toggle-password">Show</div>
<label class="form-group__label" for="current-password">Current Password *</label>
<input class="form-group__element" id="current-password" name="current-password" required="" type="password"/>
<p class="js-error form-error"></p>
<p class="js-current-pwd-error form-error form-error--email">Invalid current password</p>
</div>
<a class="form-cta form-cta--right" href="/forgot-password">Forgot password?</a>
<div class="form-block">
<div class="form-group form-group--password">
<div class="form-group__password-action js-toggle-password">Show</div>
<label class="form-group__label" for="new-password">New password *</label>
<input class="form-group__element" id="new-password" name="new-password" required="" type="password"/>
<div class="form-block__verify-password form-block__verify-password--slider js-verify-password">
Password must include...
<ul class="form-block__verify-list">
<li class="js-verify-length">8 or more characters</li>
<li class="js-verify-letters">At least one upper and lower case letter</li>
<li class="js-verify-number">At least one number or symbol</li>
</ul>
</div>
<p class="js-error form-error"></p>
<p class="js-new-pwd-error form-error form-error--email">The new password needs to be different than the current one.</p>
</div>
</div>
<div class="form-group form-group--password">
<div class="form-group__password-action js-toggle-password">Show</div>
<label class="form-group__label" for="confirm-password">Confirm new password *</label>
<input class="form-group__element" id="confirm-password" name="confirm-password" required="" type="password"/>
<p class="js-error form-error"></p>
<p class="js-confirm-pwd-error form-error form-error--email">The confirmation does not match your new password</p>
</div>
</div>
<div class="user-account__buttons-wrapper">
<div class="user-account__account-actions">
<button class="form-btn form-btn--grey js-cancel-password" type="button">Cancel</button>
<button class="form-btn is-disabled js-submit-password" disabled="" type="submit">Change Password</button>
<div class="loader js-password-loader u-hide"></div>
</div>
</div>
</form>
</div>
</section>
<div class="main-navigation__container js-will-glue">
<!-- header -->
<header class="main-navigation">
<section class="main-navigation__top-bar">
<nav class="site-tabs">
<ul class="site-tabs__list">
<li class="site-tabs__item theme theme-icc is-active">
<a class="site-tabs__link" href="https://icc-cricket.com">
ICC Cricket
</a>
</li>
<li class="site-tabs__item theme theme-t20wc">
<a class="site-tabs__link" href="https://t20worldcup.com" rel="noopener" target="_blank">
Men’s T20 World Cup 2022
</a>
</li>
<li class="site-tabs__item theme theme-wcwc">
<a class="site-tabs__link" href="https://www.cricketworldcup.com/" rel="noopener" target="_blank">
Women’s Cricket World Cup 2022
</a>
</li>
<li class="site-tabs__item theme theme-wtc">
<a class="site-tabs__link" href="https://www.icc-cricket.com/world-test-championship/overview" rel="noopener" target="_blank">
World Test Championship
</a>
</li>
</ul></nav>
<div class="sso-nav js-sso-display">
<div class="loader sso-nav__loader">
<div class="loader__ring">
<div></div>
<div></div>
<div></div>
<div></div>
</div>
</div>
</div>
</section>
<section class="main-navigation__wrapper">
<!-- desktop menu -->
<div class="main-navigation__header u-hide-desktop">
<a class="main-navigation__logo" href="/" title="label.returnToHomepage">
<span class="icn icn-logo-icc-nav"></span>
<span class="u-screen-reader">label.ICCHome</span>
</a>
<nav aria-label="Header Navigation" class="main-navigation__desktop-list js-desktop-nav" id="" role="navigation">
<header class="linked-list__header u-show-desktop">
<a class="linked-list__header-search" href="http://icc-cricket.com/search">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-search-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</a>
<span class="js-mobile-nav-btn">
<svg aria-hidden="true" class="icon linked-list__header-close-icn">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-cross" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</span>
</header>
<ul class="linked-list js-dynamic-list">
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
Scores
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
Scores
</button>
</header>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
Men's
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
Men's
</button>
</header>
<li class="linked-list__item">
<a class="linked-list__link" href="/mens-schedule/list">
Fixtures
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/live-cricket/mens-results">
Results
</a>
</li>
</ul>
</li>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
Women's
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
Women's
</button>
</header>
<li class="linked-list__item">
<a class="linked-list__link" href="/womens-schedule/list">
Fixtures
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/live-cricket/womens-results">
Results
</a>
</li>
</ul>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/live-cricket/live">
Live Scores
</a>
</li>
<li class="linked-list__item linked-list__item--wider u-hide-desktop">
</li>
<li class="linked-list__item linked-list__item--full-width u-hide-desktop">
<div class="main-navigation__social-container">
<nav class="social-follow">
<h6 class="social-follow__title">Follow Us</h6>
<a class="social-follow__item social-follow__item--facebook" href="https://www.facebook.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-facebook-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.facebook</span></a>
<a class="social-follow__item social-follow__item--twitter" href="https://twitter.com/ICC" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-twitter-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.twitter</span>
</a>
<a class="social-follow__item social-follow__item--instagram" href="https://www.instagram.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-instagram-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.instagram</span>
</a>
<a class="social-follow__item social-follow__item--youtube" href="https://www.youtube.com/user/CricketICC?cbrd=1" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-youtube-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.youtube</span>
</a>
</nav>
<svg aria-hidden="true" focusable="false" style="width:0;height:0;position:absolute;">
<lineargradient gradienttransform="rotate(45)" id="instagram" x2="1" y2="1">
<stop offset="0%" stop-color="#4c68d6"></stop>
<stop offset="33%" stop-color="#b22d98"></stop>
<stop offset="65%" stop-color="#e85a50"></stop>
<stop offset="100%" stop-color="#fbbb59"></stop>
</lineargradient>
</svg>
</div>
</li>
</ul>
</li>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
Rankings
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
Rankings
</button>
</header>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
Men's
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
Men's
</button>
</header>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/mens/overview">
Overview
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/mens/team-rankings">
Team Rankings
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/mens/player-rankings">
Players Rankings
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/mens/rankings-predictor/test">
Team Rankings Predictor
</a>
</li>
</ul>
</li>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
Women's
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
Women's
</button>
</header>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/womens/overview">
Overview
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/womens/team-rankings">
Team Rankings
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/womens/player-rankings">
Player Rankings
</a>
</li>
</ul>
</li>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
</header>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/mens/player-rankings/comparison">
Player Head to Head
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/about">
About Rankings
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/faqs">
Rankings FAQs
</a>
</li>
</ul>
</li>
<li class="linked-list__item linked-list__item--wider u-hide-desktop">
</li>
<li class="linked-list__item linked-list__item--full-width u-hide-desktop">
<div class="main-navigation__social-container">
<nav class="social-follow">
<h6 class="social-follow__title">Follow Us</h6>
<a class="social-follow__item social-follow__item--facebook" href="https://www.facebook.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-facebook-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.facebook</span></a>
<a class="social-follow__item social-follow__item--twitter" href="https://twitter.com/ICC" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-twitter-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.twitter</span>
</a>
<a class="social-follow__item social-follow__item--instagram" href="https://www.instagram.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-instagram-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.instagram</span>
</a>
<a class="social-follow__item social-follow__item--youtube" href="https://www.youtube.com/user/CricketICC?cbrd=1" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-youtube-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.youtube</span>
</a>
</nav>
<svg aria-hidden="true" focusable="false" style="width:0;height:0;position:absolute;">
<lineargradient gradienttransform="rotate(45)" id="instagram" x2="1" y2="1">
<stop offset="0%" stop-color="#4c68d6"></stop>
<stop offset="33%" stop-color="#b22d98"></stop>
<stop offset="65%" stop-color="#e85a50"></stop>
<stop offset="100%" stop-color="#fbbb59"></stop>
</lineargradient>
</svg>
</div>
</li>
</ul>
</li>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
Events
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
Events
</button>
</header>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
Men's Events
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
Men's Events
</button>
</header>
<li class="linked-list__item">
<a class="linked-list__link" href="https://www.t20worldcup.com">
ICC T20 World Cup
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/world-test-championship">
ICC World Test Championship
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/u19-world-cup/">
ICC U19 Cricket World Cup
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/cricket-world-cup-super-league/fixtures">
ICC CWC Super League
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/cricket-world-cup-challenge-league/news">
ICC CWC Challenge League
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/cricket-world-cup-league-two/news">
ICC CWC League 2
</a>
</li>
</ul>
</li>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
Women's Events
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
Women's Events
</button>
</header>
<li class="linked-list__item">
<a class="linked-list__link" href="https://womens.t20worldcup.com//">
ICC T20 World Cup
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="https://www.cricketworldcup.com/">
ICC Cricket World Cup
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/womens-u19-world-cup/">
ICC U19 T20 World Cup
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/womens-championship">
ICC Women's Championship
</a>
</li>
</ul>
</li>
<li class="linked-list__item linked-list__item--wider u-hide-desktop">
</li>
<li class="linked-list__item linked-list__item--full-width u-hide-desktop">
<div class="main-navigation__social-container">
<nav class="social-follow">
<h6 class="social-follow__title">Follow Us</h6>
<a class="social-follow__item social-follow__item--facebook" href="https://www.facebook.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-facebook-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.facebook</span></a>
<a class="social-follow__item social-follow__item--twitter" href="https://twitter.com/ICC" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-twitter-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.twitter</span>
</a>
<a class="social-follow__item social-follow__item--instagram" href="https://www.instagram.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-instagram-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.instagram</span>
</a>
<a class="social-follow__item social-follow__item--youtube" href="https://www.youtube.com/user/CricketICC?cbrd=1" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-youtube-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.youtube</span>
</a>
</nav>
<svg aria-hidden="true" focusable="false" style="width:0;height:0;position:absolute;">
<lineargradient gradienttransform="rotate(45)" id="instagram" x2="1" y2="1">
<stop offset="0%" stop-color="#4c68d6"></stop>
<stop offset="33%" stop-color="#b22d98"></stop>
<stop offset="65%" stop-color="#e85a50"></stop>
<stop offset="100%" stop-color="#fbbb59"></stop>
</lineargradient>
</svg>
</div>
</li>
</ul>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/news">
News
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/video">
Videos
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/teams">
Teams
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="https://icc.tv">
ICC.TV
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="https://www.icc-cricket.com/shop/">
Shop
</a>
</li>
<li class="linked-list__item no-border u-show-desktop">
<span class="linked-list__title">Explore ICC</span>
</li>
<li class="linked-list__item linked-list__item--promo u-show-desktop">
<section class="app-promo">
<div class="app-promo__top">
<span class="app-promo__icon icn icn-app-icon"></span>
<span class="app-promo__text">Download the official ICC App today</span>
</div>
<div class="app-promo__bottom">
<a class="app-promo__cta icn icn-apple-badge" href="https://itunes.apple.com/gb/app/icc-world-twenty20-india-2016/id956440606?mt=8" target="_blank"></a>
<a class="app-promo__cta icn icn-android-badge" href="https://play.google.com/store/apps/details?id=com.pl.cwc_2015&hl=en_GB" target="_blank"></a>
</div>
</section>
</li>
<li class="linked-list__item linked-list__item--social u-show-desktop">
<div class="main-navigation__social-container">
<nav class="social-follow">
<h6 class="social-follow__title">Follow Us</h6>
<a class="social-follow__item social-follow__item--facebook" href="https://www.facebook.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-facebook-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.facebook</span></a>
<a class="social-follow__item social-follow__item--twitter" href="https://twitter.com/ICC" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-twitter-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.twitter</span>
</a>
<a class="social-follow__item social-follow__item--instagram" href="https://www.instagram.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-instagram-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.instagram</span>
</a>
<a class="social-follow__item social-follow__item--youtube" href="https://www.youtube.com/user/CricketICC?cbrd=1" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-youtube-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.youtube</span>
</a>
</nav>
<svg aria-hidden="true" focusable="false" style="width:0;height:0;position:absolute;">
<lineargradient gradienttransform="rotate(45)" id="instagram" x2="1" y2="1">
<stop offset="0%" stop-color="#4c68d6"></stop>
<stop offset="33%" stop-color="#b22d98"></stop>
<stop offset="65%" stop-color="#e85a50"></stop>
<stop offset="100%" stop-color="#fbbb59"></stop>
</lineargradient>
</svg>
</div>
</li>
</ul>
</nav>
<a class="main-navigation__search" href="http://icc-cricket.com/search">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-search-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</a>
<button aria-controls="sidebar-menu" aria-label="Menu" class="hamburger js-sidebar-btn" type="button">
<span class="hamburger__line hamburger__line--top"></span>
<span class="hamburger__line hamburger__line--middle"></span>
<span class="hamburger__line hamburger__line--bottom"></span>
</button>
</div>
<!-- mobile menu -->
<div class="main-navigation__mobile u-show-desktop" data-widget="mobile-navigation">
<a class="main-navigation__logo" href="/" title="label.returnToHomepage">
<span class="icn icn-logo-icc-nav"></span>
<span class="u-screen-reader">label.ICCHome</span>
</a>
<div class="main-navigation__sub-menu">
<nav class="sub-menu">
<a class="sub-menu__link" href="https://www.icc-cricket.com/mens-schedule/list">
Scores
</a>
<a class="sub-menu__link" href="https://www.icc-cricket.com/rankings/mens/overview">
Rankings
</a>
<a class="sub-menu__link" href="https://www.icc-cricket.com/news">
News
</a>
<a class="sub-menu__link" href="https://welcome.icc.tv/">
ICC.tv
</a>
</nav>
</div>
<button aria-controls="mobile-menu" aria-label="Menu" class="hamburger js-mobile-nav-btn" type="button">
<span class="hamburger__line hamburger__line--top"></span>
<span class="hamburger__line hamburger__line--middle"></span>
<span class="hamburger__line hamburger__line--bottom"></span>
<span class="u-screen-reader">label.toggleMobileNavigation</span>
</button>
<nav aria-label="Header Navigation" class="main-navigation__mobile-list js-mobile-nav" id="mobile-menu" role="navigation">
<header class="linked-list__header u-show-desktop">
<a class="linked-list__header-search" href="http://icc-cricket.com/search">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-search-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</a>
<span class="js-mobile-nav-btn">
<svg aria-hidden="true" class="icon linked-list__header-close-icn">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-cross" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</span>
</header>
<ul class="linked-list js-dynamic-list">
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
Scores
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
Scores
</button>
</header>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
Men's
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
Men's
</button>
</header>
<li class="linked-list__item">
<a class="linked-list__link" href="/mens-schedule/list">
Fixtures
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/live-cricket/mens-results">
Results
</a>
</li>
</ul>
</li>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
Women's
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
Women's
</button>
</header>
<li class="linked-list__item">
<a class="linked-list__link" href="/womens-schedule/list">
Fixtures
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/live-cricket/womens-results">
Results
</a>
</li>
</ul>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/live-cricket/live">
Live Scores
</a>
</li>
<li class="linked-list__item linked-list__item--wider u-hide-desktop">
</li>
<li class="linked-list__item linked-list__item--full-width u-hide-desktop">
<div class="main-navigation__social-container">
<nav class="social-follow">
<h6 class="social-follow__title">Follow Us</h6>
<a class="social-follow__item social-follow__item--facebook" href="https://www.facebook.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-facebook-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.facebook</span></a>
<a class="social-follow__item social-follow__item--twitter" href="https://twitter.com/ICC" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-twitter-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.twitter</span>
</a>
<a class="social-follow__item social-follow__item--instagram" href="https://www.instagram.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-instagram-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.instagram</span>
</a>
<a class="social-follow__item social-follow__item--youtube" href="https://www.youtube.com/user/CricketICC?cbrd=1" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-youtube-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.youtube</span>
</a>
</nav>
<svg aria-hidden="true" focusable="false" style="width:0;height:0;position:absolute;">
<lineargradient gradienttransform="rotate(45)" id="instagram" x2="1" y2="1">
<stop offset="0%" stop-color="#4c68d6"></stop>
<stop offset="33%" stop-color="#b22d98"></stop>
<stop offset="65%" stop-color="#e85a50"></stop>
<stop offset="100%" stop-color="#fbbb59"></stop>
</lineargradient>
</svg>
</div>
</li>
</ul>
</li>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
Rankings
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
Rankings
</button>
</header>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
Men's
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
Men's
</button>
</header>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/mens/overview">
Overview
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/mens/team-rankings">
Team Rankings
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/mens/player-rankings">
Players Rankings
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/mens/rankings-predictor/test">
Team Rankings Predictor
</a>
</li>
</ul>
</li>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
Women's
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
Women's
</button>
</header>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/womens/overview">
Overview
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/womens/team-rankings">
Team Rankings
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/womens/player-rankings">
Player Rankings
</a>
</li>
</ul>
</li>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
</header>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/mens/player-rankings/comparison">
Player Head to Head
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/about">
About Rankings
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/faqs">
Rankings FAQs
</a>
</li>
</ul>
</li>
<li class="linked-list__item linked-list__item--wider u-hide-desktop">
</li>
<li class="linked-list__item linked-list__item--full-width u-hide-desktop">
<div class="main-navigation__social-container">
<nav class="social-follow">
<h6 class="social-follow__title">Follow Us</h6>
<a class="social-follow__item social-follow__item--facebook" href="https://www.facebook.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-facebook-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.facebook</span></a>
<a class="social-follow__item social-follow__item--twitter" href="https://twitter.com/ICC" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-twitter-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.twitter</span>
</a>
<a class="social-follow__item social-follow__item--instagram" href="https://www.instagram.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-instagram-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.instagram</span>
</a>
<a class="social-follow__item social-follow__item--youtube" href="https://www.youtube.com/user/CricketICC?cbrd=1" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-youtube-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.youtube</span>
</a>
</nav>
<svg aria-hidden="true" focusable="false" style="width:0;height:0;position:absolute;">
<lineargradient gradienttransform="rotate(45)" id="instagram" x2="1" y2="1">
<stop offset="0%" stop-color="#4c68d6"></stop>
<stop offset="33%" stop-color="#b22d98"></stop>
<stop offset="65%" stop-color="#e85a50"></stop>
<stop offset="100%" stop-color="#fbbb59"></stop>
</lineargradient>
</svg>
</div>
</li>
</ul>
</li>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
Events
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
Events
</button>
</header>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
Men's Events
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
Men's Events
</button>
</header>
<li class="linked-list__item">
<a class="linked-list__link" href="https://www.t20worldcup.com">
ICC T20 World Cup
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/world-test-championship">
ICC World Test Championship
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/u19-world-cup/">
ICC U19 Cricket World Cup
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/cricket-world-cup-super-league/fixtures">
ICC CWC Super League
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/cricket-world-cup-challenge-league/news">
ICC CWC Challenge League
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/cricket-world-cup-league-two/news">
ICC CWC League 2
</a>
</li>
</ul>
</li>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
Women's Events
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
Women's Events
</button>
</header>
<li class="linked-list__item">
<a class="linked-list__link" href="https://womens.t20worldcup.com//">
ICC T20 World Cup
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="https://www.cricketworldcup.com/">
ICC Cricket World Cup
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/womens-u19-world-cup/">
ICC U19 T20 World Cup
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/womens-championship">
ICC Women's Championship
</a>
</li>
</ul>
</li>
<li class="linked-list__item linked-list__item--wider u-hide-desktop">
</li>
<li class="linked-list__item linked-list__item--full-width u-hide-desktop">
<div class="main-navigation__social-container">
<nav class="social-follow">
<h6 class="social-follow__title">Follow Us</h6>
<a class="social-follow__item social-follow__item--facebook" href="https://www.facebook.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-facebook-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.facebook</span></a>
<a class="social-follow__item social-follow__item--twitter" href="https://twitter.com/ICC" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-twitter-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.twitter</span>
</a>
<a class="social-follow__item social-follow__item--instagram" href="https://www.instagram.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-instagram-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.instagram</span>
</a>
<a class="social-follow__item social-follow__item--youtube" href="https://www.youtube.com/user/CricketICC?cbrd=1" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-youtube-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.youtube</span>
</a>
</nav>
<svg aria-hidden="true" focusable="false" style="width:0;height:0;position:absolute;">
<lineargradient gradienttransform="rotate(45)" id="instagram" x2="1" y2="1">
<stop offset="0%" stop-color="#4c68d6"></stop>
<stop offset="33%" stop-color="#b22d98"></stop>
<stop offset="65%" stop-color="#e85a50"></stop>
<stop offset="100%" stop-color="#fbbb59"></stop>
</lineargradient>
</svg>
</div>
</li>
</ul>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/news">
News
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/video">
Videos
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/teams">
Teams
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="https://icc.tv">
ICC.TV
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="https://www.icc-cricket.com/shop/">
Shop
</a>
</li>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
More
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
More
</button>
</header>
<li class="linked-list__item">
<a class="linked-list__link" href="https://fancraze.com/">
Crictos
<svg aria-hidden="true" class="icon external-link">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-external-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/awards/overview">
ICC Awards
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/hall-of-fame">
Hall of Fame
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="https://www.criiio.com/">
criiio
<svg aria-hidden="true" class="icon external-link">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-external-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/100percentcricket">
100% Cricket
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/mobile">
Official ICC App
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="https://www.icc-cricket.com/shop/">
shop
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/about">
About ICC
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/media-releases">
Media Releases
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/photos">
Photos
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/news/318971">
Commercial Opportunities
</a>
</li>
<li class="linked-list__item linked-list__item--wider u-hide-desktop">
</li>
<li class="linked-list__item linked-list__item--full-width u-hide-desktop">
<div class="main-navigation__social-container">
<nav class="social-follow">
<h6 class="social-follow__title">Follow Us</h6>
<a class="social-follow__item social-follow__item--facebook" href="https://www.facebook.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-facebook-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.facebook</span></a>
<a class="social-follow__item social-follow__item--twitter" href="https://twitter.com/ICC" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-twitter-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.twitter</span>
</a>
<a class="social-follow__item social-follow__item--instagram" href="https://www.instagram.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-instagram-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.instagram</span>
</a>
<a class="social-follow__item social-follow__item--youtube" href="https://www.youtube.com/user/CricketICC?cbrd=1" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-youtube-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.youtube</span>
</a>
</nav>
<svg aria-hidden="true" focusable="false" style="width:0;height:0;position:absolute;">
<lineargradient gradienttransform="rotate(45)" id="instagram" x2="1" y2="1">
<stop offset="0%" stop-color="#4c68d6"></stop>
<stop offset="33%" stop-color="#b22d98"></stop>
<stop offset="65%" stop-color="#e85a50"></stop>
<stop offset="100%" stop-color="#fbbb59"></stop>
</lineargradient>
</svg>
</div>
</li>
</ul>
</li>
<li class="linked-list__item no-border u-show-desktop">
<span class="linked-list__title">Explore ICC</span>
</li>
<li class="linked-list__item no-border theme theme-t20wc">
<a class="linked-list__link" href="https://t20worldcup.com">
T20 World Cup
<svg aria-hidden="true" class="icon external-link">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-external-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</a>
</li>
<li class="linked-list__item no-border theme theme-wcwc">
<a class="linked-list__link" href="https://cricketworldcup.com">
Womens Cricket World Cup
<svg aria-hidden="true" class="icon external-link">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-external-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</a>
</li>
<li class="linked-list__item linked-list__item--promo u-show-desktop">
<section class="app-promo">
<div class="app-promo__top">
<span class="app-promo__icon icn icn-app-icon"></span>
<span class="app-promo__text">Download the official ICC App today</span>
</div>
<div class="app-promo__bottom">
<a class="app-promo__cta icn icn-apple-badge" href="https://itunes.apple.com/gb/app/icc-world-twenty20-india-2016/id956440606?mt=8" target="_blank"></a>
<a class="app-promo__cta icn icn-android-badge" href="https://play.google.com/store/apps/details?id=com.pl.cwc_2015&hl=en_GB" target="_blank"></a>
</div>
</section>
</li>
<li class="linked-list__item linked-list__item--social u-show-desktop">
<div class="main-navigation__social-container">
<nav class="social-follow">
<h6 class="social-follow__title">Follow Us</h6>
<a class="social-follow__item social-follow__item--facebook" href="https://www.facebook.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-facebook-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.facebook</span></a>
<a class="social-follow__item social-follow__item--twitter" href="https://twitter.com/ICC" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-twitter-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.twitter</span>
</a>
<a class="social-follow__item social-follow__item--instagram" href="https://www.instagram.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-instagram-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.instagram</span>
</a>
<a class="social-follow__item social-follow__item--youtube" href="https://www.youtube.com/user/CricketICC?cbrd=1" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-youtube-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.youtube</span>
</a>
</nav>
<svg aria-hidden="true" focusable="false" style="width:0;height:0;position:absolute;">
<lineargradient gradienttransform="rotate(45)" id="instagram" x2="1" y2="1">
<stop offset="0%" stop-color="#4c68d6"></stop>
<stop offset="33%" stop-color="#b22d98"></stop>
<stop offset="65%" stop-color="#e85a50"></stop>
<stop offset="100%" stop-color="#fbbb59"></stop>
</lineargradient>
</svg>
</div>
</li>
</ul>
</nav>
</div>
</section>
<!-- sidebar menu -->
<div class="sidebar-nav js-navigation-sidebar u-hide-desktop" data-widget="sidebar-navigation">
<header class="sidebar-nav__header">
<span class="sidebar-nav__title">
More
</span>
<span class="sidebar-nav__close js-sidebar-btn">
<svg aria-hidden="true" class="icon sidebar-nav__close-icn">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-cross" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</span>
</header>
<div class="sidebar-nav__menu" tabindex="0">
<ul>
<li class="sidebar-nav__item" data-label="Crictos">
<a class="sidebar-nav__link sidebar-nav__link--in-sidebar-nav" href="https://fancraze.com/">
Crictos
<svg aria-hidden="true" class="icon external-link">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-external-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</a>
</li>
<li class="sidebar-nav__item" data-label="ICC Awards">
<a class="sidebar-nav__link sidebar-nav__link--in-sidebar-nav" href="/awards/overview">
ICC Awards
</a>
</li>
<li class="sidebar-nav__item" data-label="Hall of Fame">
<a class="sidebar-nav__link sidebar-nav__link--in-sidebar-nav" href="/hall-of-fame">
Hall of Fame
</a>
</li>
<li class="sidebar-nav__item" data-label="criiio">
<a class="sidebar-nav__link sidebar-nav__link--in-sidebar-nav" href="https://www.criiio.com/">
criiio
<svg aria-hidden="true" class="icon external-link">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-external-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</a>
</li>
<li class="sidebar-nav__item" data-label="100% Cricket">
<a class="sidebar-nav__link sidebar-nav__link--in-sidebar-nav" href="/100percentcricket">
100% Cricket
</a>
</li>
<li class="sidebar-nav__item" data-label="Official ICC App">
<a class="sidebar-nav__link sidebar-nav__link--in-sidebar-nav" href="/mobile">
Official ICC App
</a>
</li>
<li class="sidebar-nav__item" data-label="shop">
<a class="sidebar-nav__link sidebar-nav__link--in-sidebar-nav" href="https://www.icc-cricket.com/shop/">
shop
</a>
</li>
<li class="sidebar-nav__item" data-label="About ICC">
<a class="sidebar-nav__link sidebar-nav__link--in-sidebar-nav" href="/about">
About ICC
</a>
</li>
<li class="sidebar-nav__item" data-label="Media Releases">
<a class="sidebar-nav__link sidebar-nav__link--in-sidebar-nav" href="/media-releases">
Media Releases
</a>
</li>
<li class="sidebar-nav__item" data-label="Photos">
<a class="sidebar-nav__link sidebar-nav__link--in-sidebar-nav" href="/photos">
Photos
</a>
</li>
<li class="sidebar-nav__item" data-label="Commercial Opportunities">
<a class="sidebar-nav__link sidebar-nav__link--in-sidebar-nav" href="/news/318971">
Commercial Opportunities
</a>
</li>
</ul>
</div>
</div>
</header>
</div>
<main class="js-body-content" id="main-content" tabindex="0">
<button class="scroll-to-top" data-script="icc_scroll-to-top" data-widget="scroll-to-top">
<svg class="scroll-to-top__icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-up-arrow" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<div aria-hidden="true" class="scroll-to-top__mask">
<svg class="scroll-to-top__icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-up-arrow" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</div>
<span class="u-screen-reader">Scroll to Top</span>
</button>
<header class="page-header page-header--rankings">
<div class="wrapper">
<div class="col-12">
<div class="page-header__banner">
<a class="page-logo" data-tracking-url="https://track.adform.net/adfserve/?bn=20093364;srctype=4;ord=%%ADFRND%%" data-widget="impression-tracker" href="http://track.adform.net/C/?bn=20093364" target="_blank">
<span class="icn icn-logo-mrf-rankings"></span>
</a>
</div>
<div class="share share-- share--vertical" data-widget="share">
<div class="share__container">
<div class="share__btn js-share-btn">
<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-share" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg>
<div class="share__title">Share</div>
</div>
<ul class="share__list">
<li class="share__item share__item--facebook js-social-option" data-social-service="facebook" role="button" tabindex="0">
<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-facebook" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg>
</li>
<li class="share__item share__item--twitter js-social-option" data-social-service="twitter" role="button" tabindex="0">
<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-twitter" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg>
</li>
<li class="share__item share__item--messenger u-show-tablet js-social-option" data-social-service="facebookMessenger" role="buttn" tabindex="0">
<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-facebook-messenger" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg>
</li>
<li class="share__item share__item--whatsapp u-show-tablet js-social-option" data-social-service="whatsapp" role="button" tabindex="0">
<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-whatsapp" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg>
</li>
<li class="share__item share__item--url u-hide-tablet js-copy-button" role="button" tabindex="0">
<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-url" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg>
<div class="share__copy-message js-copy-message">URL Copied</div>
</li>
</ul>
</div>
</div>
</div>
</div>
</header>
<div class="l-sticky-side-nav">
<div class="l-sticky-side-nav__nav">
<div class="rankings-menu" data-script="icc_rankings-menu" data-widget="rankings-menu">
<div class="drop-down-tablet js-drop-down">
<div class="drop-down__clickzone js-drop-down-trigger" role="button" tabindex="0"></div>
<div class="drop-down__label">
Men's
</div>
<div class="drop-down__current">
Player Rankings
<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-caret-down" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg>
</div>
<div class="drop-down__dropdown-list js-drop-down-options">
<div class="rankings-menu__tab-container u-hide-tablet">
<nav class="content-tabs">
<ul class="block-list-2 u-no-font-size" role="tablist">
<li class="u-no-padding u-no-margin">
<a class="content-tabs__tab content-tabs__tab--active" href="/rankings/mens/overview">Men's</a>
</li>
<li class="u-no-padding u-no-margin">
<a class="content-tabs__tab" href="/rankings/womens/overview">Women's</a>
</li>
</ul>
</nav>
</div>
<div class="active tab-content">
<h3 class="rankings-menu__title">Men's</h3>
<ul class="rankings-menu__list">
<li class="rankings-menu__item rankings-menu__item--user-selection js-team-btn">
<a class="rankings-menu__link js-fav-team-link" href="#">Select your team</a>
<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg>
<div class="rankings-menu__notch js-notch"></div>
<svg class="rankings-menu__notch-icon icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-star" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg>
<li class="rankings-menu__item">
<a class="rankings-menu__link" href="/rankings/mens/overview">Overview<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg></a>
</li>
<li class="rankings-menu__item">
<a class="rankings-menu__link" href="/rankings/mens/team-rankings">Team Rankings<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg></a>
</li>
<li class="rankings-menu__item">
<a class="rankings-menu__link" href="/rankings/mens/player-rankings">Player Rankings<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg></a>
</li>
<li class="rankings-menu__item">
<a class="rankings-menu__link" href="/rankings/mens/player-rankings/comparison">Player Comparison<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg></a>
</li>
<li class="rankings-menu__item">
<a class="rankings-menu__link" href="/rankings/mens/rankings-predictor/">Team Rankings Predictor<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg></a>
</li>
<li class="rankings-menu__item">
<a class="rankings-menu__link" href="/rankings/about">About the Rankings<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg></a>
</li>
<li class="rankings-menu__item">
<a class="rankings-menu__link" href="/rankings/faqs">Player Rankings FAQs<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg></a>
</li>
</li></ul>
</div>
<div class="tab-content">
<h3 class="rankings-menu__title">Women's</h3>
<ul class="rankings-menu__list">
<li class="rankings-menu__item">
<a class="rankings-menu__link" href="/rankings/womens/overview">Overview<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg></a>
</li>
<li class="rankings-menu__item">
<a class="rankings-menu__link" href="/rankings/womens/team-rankings">Team Rankings<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg></a>
</li>
<li class="rankings-menu__item">
<a class="rankings-menu__link" href="/rankings/womens/player-rankings">Player Rankings<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg></a>
</li>
<li class="rankings-menu__item">
<a class="rankings-menu__link" href="/rankings/about">About the Rankings<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg></a>
</li>
<li class="rankings-menu__item">
<a class="rankings-menu__link" href="/rankings/faqs">Player Rankings FAQs<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg></a>
</li>
<li class="rankings-menu__item">
<a class="rankings-menu__link" href="/rankings/womens-t20i-faq">T20I Team Rankings FAQs<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg></a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="l-sticky-side-nav__content">
<section class="ranking-format-menu">
<div class="wrapper wrapper--sticky">
<div class="col-12">
<div class="content-tabs">
<ul class="inline-list">
<li class="ranking-format-menu__item">
<a class="content-tabs__tab" href="../test">Test</a>
</li>
<li class="ranking-format-menu__item">
<a class="content-tabs__tab content-tabs__tab--active" href="../odi">ODI</a>
</li>
<li class="ranking-format-menu__item">
<a class="content-tabs__tab" href="../t20i">T20i</a>
</li>
</ul>
</div>
</div>
</div>
</section>
<div class="wrapper wrapper--sticky">
<div class="col-12">
<section class="widget rankings-widget player-rankings-full-table" data-filter="RANKINGS_YEAR,RANKINGS_MONTH,RANKINGS_DAY" data-format="odi" data-script="icc_rankings" data-widget="player-rankings-filtered">
<div class="rankings-filters">
<h5 class="rankings-filters__title">Look back through the MRF Tyres Rankings Archive using the date selector below:</h5>
<div class="rankings-filters__content">
<div class="rankings-filters__options" data-content-filter=""></div>
<div class="rankings-filters__btns">
<button class="rankings-filters__filter-button js-rankings-filter-button disabled">Apply</button>
<button class="rankings-filters__reset js-rankings-filter-reset u-hide">Reset</button>
</div>
</div>
</div>
<div class="rankings-block__title-container">
<div class="rankings-block__type t-odi">odi</div>
<h4>Men's ODI Bowling Rankings</h4>
<div class="share share-- share--vertical share--small" data-widget="share">
<div class="share__container">
<div class="share__btn js-share-btn">
<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-share" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg>
<div class="share__title">Share</div>
</div>
<ul class="share__list">
<li class="share__item share__item--facebook js-social-option" data-social-service="facebook" role="button" tabindex="0">
<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-facebook" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg>
</li>
<li class="share__item share__item--twitter js-social-option" data-social-service="twitter" role="button" tabindex="0">
<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-twitter" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg>
</li>
<li class="share__item share__item--messenger u-show-tablet js-social-option" data-social-service="facebookMessenger" role="buttn" tabindex="0">
<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-facebook-messenger" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg>
</li>
<li class="share__item share__item--whatsapp u-show-tablet js-social-option" data-social-service="whatsapp" role="button" tabindex="0">
<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-whatsapp" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg>
</li>
<li class="share__item share__item--url u-hide-tablet js-copy-button" role="button" tabindex="0">
<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-url" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg>
<div class="share__copy-message js-copy-message">URL Copied</div>
</li>
</ul>
</div>
</div>
</div>
<div class="rankings-block__meta-container">
<div class="rankings-block__last-updated">Last Updated - 11. September 2022</div>
</div>
<div ,="" class="rankings-block__container full" data-cricket-role="bowling" data-cricket-scope="odi" data-full="true" data-page-size="100" data-player-rankings-card="" data-title="Men's ODI Bowling Rankings">
<table class="table rankings-table">
<thead>
<tr class="table-head">
<th class="table-head__cell u-text-right">Pos</th>
<th class="table-head__cell">Player</th>
<th class="table-head__cell">Team</th>
<th class="table-head__cell table-head__cell--rating">Rating</th>
<th class="table-head__cell u-text-right u-hide-phablet">Career Best Rating</th>
</tr>
</thead>
<tr class="rankings-block__banner">
<td class="rankings-block__position">
<div class="rankings-block__pos-container">
<span class="rankings-block__pos-number">
1
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="rankings-block__top-player-container">
<div class="u-flex-center u-text-left">
<div class="rankings-block__player-image-container rankings-block__player-image-container--large">
<a href="/rankings/mens/player-rankings/969">
<img alt="Player Image" class="rankings-block__player-image image-missing" data-error="true" data-player="969" data-size="130x150" data-widget="player-image" src="//resources.pulse.icc-cricket.com/players/130x150/Photo-Missing.png"/>
</a>
</div>
<div>
<a href="/rankings/mens/player-rankings/969"><div class="rankings-block__banner--name-large">Trent Boult</div></a>
</div>
</div>
</td>
<td>
<div class="rankings-block__banner--nationality">
<div class="flag-15 NZ"></div>
<span class="rankings-block__banner--nation"></span>NZ
</div>
</td>
<td class="u-text-left">
<div class="rankings-block__banner--rating">775</div>
</td>
<td class="u-text-right u-hide-phablet u-overflow-hidden">
<div class="rankings-block__career-best">
<span class="rankings-block__career-best-text">
775 v Australia, 11/09/2022
</span>
<span class="circle-branding circle-branding--full-table circle-branding--top"></span>
<span class="circle-branding circle-branding--full-table circle-branding--bottom"></span>
</div>
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
2
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/857">Josh Hazlewood</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo AUS"></span>
<span class="table-body__logo-text">AUS</span>
</td>
<td class="table-body__cell rating">718</td>
<td class="table-body__cell u-text-right u-hide-phablet">
733 v England, 26/01/2018
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
3
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/4572">Mujeeb Ur Rahman</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo AFG"></span>
<span class="table-body__logo-text">AFG</span>
</td>
<td class="table-body__cell rating">676</td>
<td class="table-body__cell u-text-right u-hide-phablet">
712 v Ireland, 24/01/2021
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
4
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/1124">Jasprit Bumrah</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo IND"></span>
<span class="table-body__logo-text">IND</span>
</td>
<td class="table-body__cell rating">662</td>
<td class="table-body__cell u-text-right u-hide-phablet">
841 v West Indies, 01/11/2018
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
5
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/4530">Shaheen Afridi</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo PAK"></span>
<span class="table-body__logo-text">PAK</span>
</td>
<td class="table-body__cell rating">661</td>
<td class="table-body__cell u-text-right u-hide-phablet">
688 v West Indies, 10/06/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
6
</span>
<div class="ranking-pos up">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-up" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(2)</span>
<span class="ranking-pos__tooltip">This player has moved up in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/618">Mohammad Nabi</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo AFG"></span>
<span class="table-body__logo-text">AFG</span>
</td>
<td class="table-body__cell rating">657</td>
<td class="table-body__cell u-text-right u-hide-phablet">
657 v Zimbabwe, 09/06/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
7
</span>
<div class="ranking-pos up">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-up" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(2)</span>
<span class="ranking-pos__tooltip">This player has moved up in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/1597">Mehedi Hasan</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo BAN"></span>
<span class="table-body__logo-text">BAN</span>
</td>
<td class="table-body__cell rating">655</td>
<td class="table-body__cell u-text-right u-hide-phablet">
725 v Sri Lanka, 25/05/2021
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
8
</span>
<div class="ranking-pos down">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-down" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(2)</span>
<span class="ranking-pos__tooltip">This player has moved down in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/1505">Matt Henry</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo NZ"></span>
<span class="table-body__logo-text">NZ</span>
</td>
<td class="table-body__cell rating">654</td>
<td class="table-body__cell u-text-right u-hide-phablet">
691 v Bangladesh, 26/03/2021
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
9
</span>
<div class="ranking-pos down">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-down" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(2)</span>
<span class="ranking-pos__tooltip">This player has moved down in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/490">Mitchell Starc</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo AUS"></span>
<span class="table-body__logo-text">AUS</span>
</td>
<td class="table-body__cell rating">653</td>
<td class="table-body__cell u-text-right u-hide-phablet">
783 v New Zealand, 29/03/2015
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
10
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/2885">Rashid Khan</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo AFG"></span>
<span class="table-body__logo-text">AFG</span>
</td>
<td class="table-body__cell rating">651</td>
<td class="table-body__cell u-text-right u-hide-phablet">
806 v Pakistan, 21/09/2018
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
11
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/1594">Mustafizur Rahman</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo BAN"></span>
<span class="table-body__logo-text">BAN</span>
</td>
<td class="table-body__cell rating">640</td>
<td class="table-body__cell u-text-right u-hide-phablet">
695 v West Indies, 14/12/2018
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
12
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/967">Chris Woakes</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo ENG"></span>
<span class="table-body__logo-text">ENG</span>
</td>
<td class="table-body__cell rating">640</td>
<td class="table-body__cell u-text-right u-hide-phablet">
711 v Sri Lanka, 04/07/2021
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
13
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/1365">Andy McBrine</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo IRE"></span>
<span class="table-body__logo-text">IRE</span>
</td>
<td class="table-body__cell rating">630</td>
<td class="table-body__cell u-text-right u-hide-phablet">
646 v West Indies, 16/01/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
14
</span>
<div class="ranking-pos up">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-up" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(1)</span>
<span class="ranking-pos__tooltip">This player has moved up in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/1664">Kagiso Rabada</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo SA"></span>
<span class="table-body__logo-text">SA</span>
</td>
<td class="table-body__cell rating">625</td>
<td class="table-body__cell u-text-right u-hide-phablet">
724 v England, 29/05/2017
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
15
</span>
<div class="ranking-pos down">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-down" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(1)</span>
<span class="ranking-pos__tooltip">This player has moved down in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/958">Adam Zampa</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo AUS"></span>
<span class="table-body__logo-text">AUS</span>
</td>
<td class="table-body__cell rating">622</td>
<td class="table-body__cell u-text-right u-hide-phablet">
650 v Pakistan, 29/03/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
16
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/201">Shakib Al Hasan</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo BAN"></span>
<span class="table-body__logo-text">BAN</span>
</td>
<td class="table-body__cell rating">619</td>
<td class="table-body__cell u-text-right u-hide-phablet">
717 v Zimbabwe, 05/11/2009
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
17
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/3098">Alzarri Joseph</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo WI"></span>
<span class="table-body__logo-text">WI</span>
</td>
<td class="table-body__cell rating">609</td>
<td class="table-body__cell u-text-right u-hide-phablet">
623 v New Zealand, 17/08/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
18
</span>
<div class="ranking-pos up">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-up" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(1)</span>
<span class="ranking-pos__tooltip">This player has moved up in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/111">Yuzvendra Chahal</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo IND"></span>
<span class="table-body__logo-text">IND</span>
</td>
<td class="table-body__cell rating">604</td>
<td class="table-body__cell u-text-right u-hide-phablet">
730 v New Zealand, 23/01/2019
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
19
</span>
<div class="ranking-pos down">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-down" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(1)</span>
<span class="ranking-pos__tooltip">This player has moved down in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/488">Pat Cummins</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo AUS"></span>
<span class="table-body__logo-text">AUS</span>
</td>
<td class="table-body__cell rating">600</td>
<td class="table-body__cell u-text-right u-hide-phablet">
729 v Pakistan, 12/06/2019
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
20
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/1903">Mitchell Santner</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo NZ"></span>
<span class="table-body__logo-text">NZ</span>
</td>
<td class="table-body__cell rating">596</td>
<td class="table-body__cell u-text-right u-hide-phablet">
663 v England, 25/02/2018
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
21
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/3746">Lungi Ngidi</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo SA"></span>
<span class="table-body__logo-text">SA</span>
</td>
<td class="table-body__cell rating">577</td>
<td class="table-body__cell u-text-right u-hide-phablet">
621 v Australia, 04/03/2020
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
22
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/1650">Mark Watt</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo SCO"></span>
<span class="table-body__logo-text">SCO</span>
</td>
<td class="table-body__cell rating">574</td>
<td class="table-body__cell u-text-right u-hide-phablet">
579 v UAE, 14/08/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
23
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/">Akeal Hosein</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo WI"></span>
<span class="table-body__logo-text">WI</span>
</td>
<td class="table-body__cell rating">573</td>
<td class="table-body__cell u-text-right u-hide-phablet">
577 v New Zealand, 19/08/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
24
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/2758">David Willey</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo ENG"></span>
<span class="table-body__logo-text">ENG</span>
</td>
<td class="table-body__cell rating">569</td>
<td class="table-body__cell u-text-right u-hide-phablet">
569 v South Africa, 24/07/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
25
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/3309">Tabraiz Shamsi</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo SA"></span>
<span class="table-body__logo-text">SA</span>
</td>
<td class="table-body__cell rating">567</td>
<td class="table-body__cell u-text-right u-hide-phablet">
597 v Bangladesh, 20/03/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
26
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/1258">Ahmed Raza</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo UAE"></span>
<span class="table-body__logo-text">UAE</span>
</td>
<td class="table-body__cell rating">555</td>
<td class="table-body__cell u-text-right u-hide-phablet">
562 v Papua New Guinea, 15/03/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
27
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/588">Akila Dananjaya</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo SL"></span>
<span class="table-body__logo-text">SL</span>
</td>
<td class="table-body__cell rating">546</td>
<td class="table-body__cell u-text-right u-hide-phablet">
651 v England, 23/10/2018
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
28
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/2749">Mark Wood</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo ENG"></span>
<span class="table-body__logo-text">ENG</span>
</td>
<td class="table-body__cell rating">543</td>
<td class="table-body__cell u-text-right u-hide-phablet">
615 v Afghanistan, 18/06/2019
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
29
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/1894">Keshav Maharaj</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo SA"></span>
<span class="table-body__logo-text">SA</span>
</td>
<td class="table-body__cell rating">541</td>
<td class="table-body__cell u-text-right u-hide-phablet">
549 v England, 22/07/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
30
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/817">Dushmantha Chameera</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo SL"></span>
<span class="table-body__logo-text">SL</span>
</td>
<td class="table-body__cell rating">537</td>
<td class="table-body__cell u-text-right u-hide-phablet">
552 v Australia, 16/06/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
31
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/3046">Shadab Khan</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo PAK"></span>
<span class="table-body__logo-text">PAK</span>
</td>
<td class="table-body__cell rating">536</td>
<td class="table-body__cell u-text-right u-hide-phablet">
607 v South Africa, 22/01/2019
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
32
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/116">Bhuvneshwar Kumar</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo IND"></span>
<span class="table-body__logo-text">IND</span>
</td>
<td class="table-body__cell rating">535</td>
<td class="table-body__cell u-text-right u-hide-phablet">
657 v West Indies, 17/10/2014
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
33
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/261">Kuldeep Yadav</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo IND"></span>
<span class="table-body__logo-text">IND</span>
</td>
<td class="table-body__cell rating">535</td>
<td class="table-body__cell u-text-right u-hide-phablet">
765 v New Zealand, 26/01/2019
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
34
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/3013">Sandeep Lamichhane</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo NEP"></span>
<span class="table-body__logo-text">NEP</span>
</td>
<td class="table-body__cell rating">534</td>
<td class="table-body__cell u-text-right u-hide-phablet">
540 v Namibia, 16/07/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
35
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/3221">Bilal Khan</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo OMA"></span>
<span class="table-body__logo-text">OMA</span>
</td>
<td class="table-body__cell rating">532</td>
<td class="table-body__cell u-text-right u-hide-phablet">
545 v United States, 12/06/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
36
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/94">Mohammad Shami</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo IND"></span>
<span class="table-body__logo-text">IND</span>
</td>
<td class="table-body__cell rating">532</td>
<td class="table-body__cell u-text-right u-hide-phablet">
654 v Bangladesh, 19/03/2015
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
37
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/3082">Wanindu Hasaranga</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo SL"></span>
<span class="table-body__logo-text">SL</span>
</td>
<td class="table-body__cell rating">531</td>
<td class="table-body__cell u-text-right u-hide-phablet">
546 v Australia, 14/06/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
38
</span>
<div class="ranking-pos up">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-up" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(1)</span>
<span class="ranking-pos__tooltip">This player has moved up in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/307">Tim Southee</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo NZ"></span>
<span class="table-body__logo-text">NZ</span>
</td>
<td class="table-body__cell rating">524</td>
<td class="table-body__cell u-text-right u-hide-phablet">
638 v England, 20/02/2015
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
39
</span>
<div class="ranking-pos down">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-down" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(1)</span>
<span class="ranking-pos__tooltip">This player has moved down in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/3729">Lachlan Ferguson</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo NZ"></span>
<span class="table-body__logo-text">NZ</span>
</td>
<td class="table-body__cell rating">521</td>
<td class="table-body__cell u-text-right u-hide-phablet">
668 v West Indies, 22/06/2019
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
40
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/796">Adil Rashid</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo ENG"></span>
<span class="table-body__logo-text">ENG</span>
</td>
<td class="table-body__cell rating">506</td>
<td class="table-body__cell u-text-right u-hide-phablet">
687 v Sri Lanka, 20/10/2018
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
41
</span>
<div class="ranking-pos up">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-up" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(1)</span>
<span class="ranking-pos__tooltip">This player has moved up in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/">Saurabh Netravalkar</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo USA"></span>
<span class="table-body__logo-text">USA</span>
</td>
<td class="table-body__cell rating">501</td>
<td class="table-body__cell u-text-right u-hide-phablet">
501 v Papua New Guinea, 11/09/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
42
</span>
<div class="ranking-pos down">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-down" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(1)</span>
<span class="ranking-pos__tooltip">This player has moved down in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/1839">Taskin Ahmed</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo BAN"></span>
<span class="table-body__logo-text">BAN</span>
</td>
<td class="table-body__cell rating">498</td>
<td class="table-body__cell u-text-right u-hide-phablet">
528 v West Indies, 10/07/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
43
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/3195">Mohammad Nawaz</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo PAK"></span>
<span class="table-body__logo-text">PAK</span>
</td>
<td class="table-body__cell rating">495</td>
<td class="table-body__cell u-text-right u-hide-phablet">
500 v Netherlands, 18/08/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
44
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/4324">Simi Singh</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo IRE"></span>
<span class="table-body__logo-text">IRE</span>
</td>
<td class="table-body__cell rating">493</td>
<td class="table-body__cell u-text-right u-hide-phablet">
507 v Zimbabwe, 13/09/2021
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
45
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/9">Ravindra Jadeja</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo IND"></span>
<span class="table-body__logo-text">IND</span>
</td>
<td class="table-body__cell rating">491</td>
<td class="table-body__cell u-text-right u-hide-phablet">
738 v Zimbabwe, 01/08/2013
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
46
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/837">Dwaine Pretorius</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo SA"></span>
<span class="table-body__logo-text">SA</span>
</td>
<td class="table-body__cell rating">485</td>
<td class="table-body__cell u-text-right u-hide-phablet">
539 v Australia, 06/07/2019
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
47
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/">Haris Rauf</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo PAK"></span>
<span class="table-body__logo-text">PAK</span>
</td>
<td class="table-body__cell rating">479</td>
<td class="table-body__cell u-text-right u-hide-phablet">
484 v Netherlands, 18/08/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
48
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/2837">Zeeshan Maqsood</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo OMA"></span>
<span class="table-body__logo-text">OMA</span>
</td>
<td class="table-body__cell rating">478</td>
<td class="table-body__cell u-text-right u-hide-phablet">
478 v Nepal, 14/06/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
49
</span>
<div class="ranking-pos up">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-up" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(2)</span>
<span class="ranking-pos__tooltip">This player has moved up in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/">M. Prasidh Krishna</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo IND"></span>
<span class="table-body__logo-text">IND</span>
</td>
<td class="table-body__cell rating">473</td>
<td class="table-body__cell u-text-right u-hide-phablet">
481 v West Indies, 11/02/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
50
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/2801">Chad Soper</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo PNG"></span>
<span class="table-body__logo-text">PNG</span>
</td>
<td class="table-body__cell rating">473</td>
<td class="table-body__cell u-text-right u-hide-phablet">
473 v United States, 11/09/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
51
</span>
<div class="ranking-pos down">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-down" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(2)</span>
<span class="ranking-pos__tooltip">This player has moved down in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/820">Colin de Grandhomme</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo NZ"></span>
<span class="table-body__logo-text">NZ</span>
</td>
<td class="table-body__cell rating">473</td>
<td class="table-body__cell u-text-right u-hide-phablet">
523 v Netherlands, 04/04/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
52
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/5142">Hamza Tahir</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo SCO"></span>
<span class="table-body__logo-text">SCO</span>
</td>
<td class="table-body__cell rating">472</td>
<td class="table-body__cell u-text-right u-hide-phablet">
484 v Nepal, 17/07/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
53
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/1215">Rohan Mustafa</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo UAE"></span>
<span class="table-body__logo-text">UAE</span>
</td>
<td class="table-body__cell rating">470</td>
<td class="table-body__cell u-text-right u-hide-phablet">
496 v Namibia, 08/03/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
54
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/4590">Blessing Muzarabani</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo ZIM"></span>
<span class="table-body__logo-text">ZIM</span>
</td>
<td class="table-body__cell rating">470</td>
<td class="table-body__cell u-text-right u-hide-phablet">
515 v Afghanistan, 09/06/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
55
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/1904">Taijul Islam</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo BAN"></span>
<span class="table-body__logo-text">BAN</span>
</td>
<td class="table-body__cell rating">469</td>
<td class="table-body__cell u-text-right u-hide-phablet">
469 v Zimbabwe, 10/08/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
56
</span>
<div class="ranking-pos up">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-up" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(1)</span>
<span class="ranking-pos__tooltip">This player has moved up in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/1075">Jason Holder</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo WI"></span>
<span class="table-body__logo-text">WI</span>
</td>
<td class="table-body__cell rating">464</td>
<td class="table-body__cell u-text-right u-hide-phablet">
486 v Sri Lanka, 10/03/2021
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
57
</span>
<div class="ranking-pos up">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-up" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(1)</span>
<span class="ranking-pos__tooltip">This player has moved up in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/">Kaleemullah</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo OMA"></span>
<span class="table-body__logo-text">OMA</span>
</td>
<td class="table-body__cell rating">462</td>
<td class="table-body__cell u-text-right u-hide-phablet">
476 v Papua New Guinea, 16/04/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
58
</span>
<div class="ranking-pos up">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-up" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(1)</span>
<span class="ranking-pos__tooltip">This player has moved up in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/1757">Craig Young</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo IRE"></span>
<span class="table-body__logo-text">IRE</span>
</td>
<td class="table-body__cell rating">462</td>
<td class="table-body__cell u-text-right u-hide-phablet">
470 v West Indies, 16/01/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
59
</span>
<div class="ranking-pos down">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-down" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(3)</span>
<span class="ranking-pos__tooltip">This player has moved down in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/1304">Ish Sodhi</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo NZ"></span>
<span class="table-body__logo-text">NZ</span>
</td>
<td class="table-body__cell rating">461</td>
<td class="table-body__cell u-text-right u-hide-phablet">
509 v Netherlands, 04/04/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
60
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/1662">Andile Phehlukwayo</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo SA"></span>
<span class="table-body__logo-text">SA</span>
</td>
<td class="table-body__cell rating">459</td>
<td class="table-body__cell u-text-right u-hide-phablet">
613 v Pakistan, 30/01/2019
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
61
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/1745">Shardul Thakur</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo IND"></span>
<span class="table-body__logo-text">IND</span>
</td>
<td class="table-body__cell rating">455</td>
<td class="table-body__cell u-text-right u-hide-phablet">
457 v Zimbabwe, 20/08/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
62
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/2983">Joshua Little</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo IRE"></span>
<span class="table-body__logo-text">IRE</span>
</td>
<td class="table-body__cell rating">454</td>
<td class="table-body__cell u-text-right u-hide-phablet">
493 v West Indies, 13/01/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
63
</span>
<div class="ranking-pos up">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-up" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(1)</span>
<span class="ranking-pos__tooltip">This player has moved up in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/2760">Imad Wasim</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo PAK"></span>
<span class="table-body__logo-text">PAK</span>
</td>
<td class="table-body__cell rating">452</td>
<td class="table-body__cell u-text-right u-hide-phablet">
570 v England, 19/05/2019
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
64
</span>
<div class="ranking-pos up">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-up" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(1)</span>
<span class="ranking-pos__tooltip">This player has moved up in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/1309">Sheldon Cottrell</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo WI"></span>
<span class="table-body__logo-text">WI</span>
</td>
<td class="table-body__cell rating">452</td>
<td class="table-body__cell u-text-right u-hide-phablet">
581 v Sri Lanka, 26/02/2020
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
65
</span>
<div class="ranking-pos up">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-up" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(1)</span>
<span class="ranking-pos__tooltip">This player has moved up in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/5433">Anrich Nortje</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo SA"></span>
<span class="table-body__logo-text">SA</span>
</td>
<td class="table-body__cell rating">450</td>
<td class="table-body__cell u-text-right u-hide-phablet">
459 v England, 22/07/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
66
</span>
<div class="ranking-pos up">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-up" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(1)</span>
<span class="ranking-pos__tooltip">This player has moved up in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/3325">Hasan Ali</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo PAK"></span>
<span class="table-body__logo-text">PAK</span>
</td>
<td class="table-body__cell rating">449</td>
<td class="table-body__cell u-text-right u-hide-phablet">
766 v New Zealand, 06/01/2018
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
67
</span>
<div class="ranking-pos up">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-up" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(1)</span>
<span class="ranking-pos__tooltip">This player has moved up in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/2839">Reece Topley</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo ENG"></span>
<span class="table-body__logo-text">ENG</span>
</td>
<td class="table-body__cell rating">449</td>
<td class="table-body__cell u-text-right u-hide-phablet">
468 v South Africa, 22/07/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
68
</span>
<div class="ranking-pos up">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-up" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(1)</span>
<span class="ranking-pos__tooltip">This player has moved up in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/1295">Dhananjaya de Silva</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo SL"></span>
<span class="table-body__logo-text">SL</span>
</td>
<td class="table-body__cell rating">449</td>
<td class="table-body__cell u-text-right u-hide-phablet">
454 v Australia, 21/06/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
69
</span>
<div class="ranking-pos down">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-down" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(6)</span>
<span class="ranking-pos__tooltip">This player has moved down in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/3781">Jhye Richardson</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo AUS"></span>
<span class="table-body__logo-text">AUS</span>
</td>
<td class="table-body__cell rating">448</td>
<td class="table-body__cell u-text-right u-hide-phablet">
548 v Pakistan, 24/03/2019
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
70
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/1417">Safyaan Sharif</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo SCO"></span>
<span class="table-body__logo-text">SCO</span>
</td>
<td class="table-body__cell rating">448</td>
<td class="table-body__cell u-text-right u-hide-phablet">
542 v England, 10/06/2018
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
71
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/3840">Mohammed Siraj</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo IND"></span>
<span class="table-body__logo-text">IND</span>
</td>
<td class="table-body__cell rating">447</td>
<td class="table-body__cell u-text-right u-hide-phablet">
452 v Zimbabwe, 20/08/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
72
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/1735">Moeen Ali</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo ENG"></span>
<span class="table-body__logo-text">ENG</span>
</td>
<td class="table-body__cell rating">445</td>
<td class="table-body__cell u-text-right u-hide-phablet">
629 v Australia, 24/06/2018
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
73
</span>
<div class="ranking-pos up">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-up" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(1)</span>
<span class="ranking-pos__tooltip">This player has moved up in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/1129">Sikandar Raza</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo ZIM"></span>
<span class="table-body__logo-text">ZIM</span>
</td>
<td class="table-body__cell rating">434</td>
<td class="table-body__cell u-text-right u-hide-phablet">
494 v UAE, 16/04/2019
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
74
</span>
<div class="ranking-pos down">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-down" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(1)</span>
<span class="ranking-pos__tooltip">This player has moved down in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/935">Ashton Agar</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo AUS"></span>
<span class="table-body__logo-text">AUS</span>
</td>
<td class="table-body__cell rating">434</td>
<td class="table-body__cell u-text-right u-hide-phablet">
456 v Sri Lanka, 14/06/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
75
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/">Maheesh Theekshana</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo SL"></span>
<span class="table-body__logo-text">SL</span>
</td>
<td class="table-body__cell rating">433</td>
<td class="table-body__cell u-text-right u-hide-phablet">
433 v Australia, 24/06/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
76
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/2861">Fred Klaassen</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo NED"></span>
<span class="table-body__logo-text">NED</span>
</td>
<td class="table-body__cell rating">433</td>
<td class="table-body__cell u-text-right u-hide-phablet">
458 v New Zealand, 04/04/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
77
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/1418">Michael Leask</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo SCO"></span>
<span class="table-body__logo-text">SCO</span>
</td>
<td class="table-body__cell rating">432</td>
<td class="table-body__cell u-text-right u-hide-phablet">
432 v United States, 17/08/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
78
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/505">Nuwan Pradeep</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo SL"></span>
<span class="table-body__logo-text">SL</span>
</td>
<td class="table-body__cell rating">432</td>
<td class="table-body__cell u-text-right u-hide-phablet">
506 v England, 13/10/2018
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
79
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/2915">Mohammad Mohammad Saifuddin</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo BAN"></span>
<span class="table-body__logo-text">BAN</span>
</td>
<td class="table-body__cell rating">428</td>
<td class="table-body__cell u-text-right u-hide-phablet">
496 v West Indies, 25/01/2021
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
80
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/">Jan Frylinck</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo NAM"></span>
<span class="table-body__logo-text">NAM</span>
</td>
<td class="table-body__cell rating">423</td>
<td class="table-body__cell u-text-right u-hide-phablet">
423 v Nepal, 16/07/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
81
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/2877">Jeffrey Vandersay</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo SL"></span>
<span class="table-body__logo-text">SL</span>
</td>
<td class="table-body__cell rating">422</td>
<td class="table-body__cell u-text-right u-hide-phablet">
431 v Australia, 21/06/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
82
</span>
<div class="ranking-pos up">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-up" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(10)</span>
<span class="ranking-pos__tooltip">This player has moved up in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/">Nosthush Kenjige</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo USA"></span>
<span class="table-body__logo-text">USA</span>
</td>
<td class="table-body__cell rating">420</td>
<td class="table-body__cell u-text-right u-hide-phablet">
420 v Papua New Guinea, 11/09/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
83
</span>
<div class="ranking-pos down">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-down" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(1)</span>
<span class="ranking-pos__tooltip">This player has moved down in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/1097">Tendai Chatara</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo ZIM"></span>
<span class="table-body__logo-text">ZIM</span>
</td>
<td class="table-body__cell rating">417</td>
<td class="table-body__cell u-text-right u-hide-phablet">
562 v Ireland, 07/03/2015
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
84
</span>
<div class="ranking-pos down">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-down" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(1)</span>
<span class="ranking-pos__tooltip">This player has moved down in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/">Akshar Patel</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo IND"></span>
<span class="table-body__logo-text">IND</span>
</td>
<td class="table-body__cell rating">416</td>
<td class="table-body__cell u-text-right u-hide-phablet">
663 v Australia, 01/10/2017
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
85
</span>
<div class="ranking-pos down">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-down" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(1)</span>
<span class="ranking-pos__tooltip">This player has moved down in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/">Saqib Mahmood</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo ENG"></span>
<span class="table-body__logo-text">ENG</span>
</td>
<td class="table-body__cell rating">415</td>
<td class="table-body__cell u-text-right u-hide-phablet">
454 v Pakistan, 13/07/2021
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
86
</span>
<div class="ranking-pos down">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-down" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(1)</span>
<span class="ranking-pos__tooltip">This player has moved down in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/988">Wahab Riaz</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo PAK"></span>
<span class="table-body__logo-text">PAK</span>
</td>
<td class="table-body__cell rating">415</td>
<td class="table-body__cell u-text-right u-hide-phablet">
522 v England, 13/11/2015
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
87
</span>
<div class="ranking-pos down">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-down" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(1)</span>
<span class="ranking-pos__tooltip">This player has moved down in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/2740">Hardik Pandya</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo IND"></span>
<span class="table-body__logo-text">IND</span>
</td>
<td class="table-body__cell rating">414</td>
<td class="table-body__cell u-text-right u-hide-phablet">
552 v South Africa, 16/02/2018
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
88
</span>
<div class="ranking-pos down">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-down" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(1)</span>
<span class="ranking-pos__tooltip">This player has moved down in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/4208">Faheem Ashraf</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo PAK"></span>
<span class="table-body__logo-text">PAK</span>
</td>
<td class="table-body__cell rating">413</td>
<td class="table-body__cell u-text-right u-hide-phablet">
477 v South Africa, 02/04/2021
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
89
</span>
<div class="ranking-pos down">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-down" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(1)</span>
<span class="ranking-pos__tooltip">This player has moved down in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/3116">Richard Ngarava</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo ZIM"></span>
<span class="table-body__logo-text">ZIM</span>
</td>
<td class="table-body__cell rating">413</td>
<td class="table-body__cell u-text-right u-hide-phablet">
413 v Australia, 03/09/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
90
</span>
<div class="ranking-pos down">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-down" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(1)</span>
<span class="ranking-pos__tooltip">This player has moved down in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/1403">Assad Vala</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo PNG"></span>
<span class="table-body__logo-text">PNG</span>
</td>
<td class="table-body__cell rating">411</td>
<td class="table-body__cell u-text-right u-hide-phablet">
411 v United States, 11/09/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
91
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/3863">Zahoor Khan</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo UAE"></span>
<span class="table-body__logo-text">UAE</span>
</td>
<td class="table-body__cell rating">408</td>
<td class="table-body__cell u-text-right u-hide-phablet">
417 v Papua New Guinea, 15/03/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
92
</span>
<div class="ranking-pos up">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-up" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(1)</span>
<span class="ranking-pos__tooltip">This player has moved up in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/3646">Tom Curran</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo ENG"></span>
<span class="table-body__logo-text">ENG</span>
</td>
<td class="table-body__cell rating">399</td>
<td class="table-body__cell u-text-right u-hide-phablet">
443 v Sri Lanka, 04/07/2021
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
93
</span>
<div class="ranking-pos up">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-up" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(1)</span>
<span class="ranking-pos__tooltip">This player has moved up in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/2828">Khawar Ali</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo OMA"></span>
<span class="table-body__logo-text">OMA</span>
</td>
<td class="table-body__cell rating">398</td>
<td class="table-body__cell u-text-right u-hide-phablet">
401 v Nepal, 09/06/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
94
</span>
<div class="ranking-pos up">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-up" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount"></span>
<span class="ranking-pos__tooltip">This player has moved up in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/942">Sean Abbott</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo AUS"></span>
<span class="table-body__logo-text">AUS</span>
</td>
<td class="table-body__cell rating">398</td>
<td class="table-body__cell u-text-right u-hide-phablet">
398 v New Zealand, 11/09/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
95
</span>
<div class="ranking-pos down">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-down" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(5)</span>
<span class="ranking-pos__tooltip">This player has moved down in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/971">Jimmy Neesham</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo NZ"></span>
<span class="table-body__logo-text">NZ</span>
</td>
<td class="table-body__cell rating">397</td>
<td class="table-body__cell u-text-right u-hide-phablet">
458 v Bangladesh, 26/03/2021
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
96
</span>
<div class="ranking-pos down">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-down" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(1)</span>
<span class="ranking-pos__tooltip">This player has moved down in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/1794">Logan van Beek</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo NED"></span>
<span class="table-body__logo-text">NED</span>
</td>
<td class="table-body__cell rating">394</td>
<td class="table-body__cell u-text-right u-hide-phablet">
394 v Pakistan, 21/08/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
97
</span>
<div class="ranking-pos down">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-down" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(1)</span>
<span class="ranking-pos__tooltip">This player has moved down in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/3316">Mark Adair</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo IRE"></span>
<span class="table-body__logo-text">IRE</span>
</td>
<td class="table-body__cell rating">390</td>
<td class="table-body__cell u-text-right u-hide-phablet">
394 v New Zealand, 12/07/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
98
</span>
<div class="ranking-pos down">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-down" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(1)</span>
<span class="ranking-pos__tooltip">This player has moved down in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/1781">Sompal Kami</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo NEP"></span>
<span class="table-body__logo-text">NEP</span>
</td>
<td class="table-body__cell rating">390</td>
<td class="table-body__cell u-text-right u-hide-phablet">
399 v Namibia, 16/07/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
99
</span>
<div class="ranking-pos down">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-down" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(1)</span>
<span class="ranking-pos__tooltip">This player has moved down in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/2777">Karan KC</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo NEP"></span>
<span class="table-body__logo-text">NEP</span>
</td>
<td class="table-body__cell rating">387</td>
<td class="table-body__cell u-text-right u-hide-phablet">
397 v Scotland, 13/07/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
100
</span>
<div class="ranking-pos down">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-down" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(1)</span>
<span class="ranking-pos__tooltip">This player has moved down in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/mens/player-rankings/1414">Norman Vanua</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo PNG"></span>
<span class="table-body__logo-text">PNG</span>
</td>
<td class="table-body__cell rating">383</td>
<td class="table-body__cell u-text-right u-hide-phablet">
383 v United States, 11/09/2022
</td>
</tr>
</table>
</div>
</section>
</div>
</div>
</div>
</div>
</main>
<footer class="footer" role="contentinfo">
<section class="partners">
<div class="partners__top-level">
<section class="partners__container">
<div class="partners__list partners__list--large">
<div class="partners__item">
<a aria-label="Nissan" class="partners__link" href="http://track.adform.net/C/?bn=18235072" target="_blank" title="Nissan">
<img alt="Nissan" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/06/30/ceabcea6-36b3-40c5-ab00-7ad8b66ecd73/nissan-2.png?width=142&height=46">
</img></a>
</div>
<div class="partners__item">
<a aria-label="Oppo" class="partners__link" href="http://track.adform.net/C/?bn=18236015" target="_blank" title="Oppo">
<img alt="Oppo" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/06/30/ea209fd5-065d-47aa-8ba7-fe70a3bcf8aa/Frame-233.png?width=142&height=46">
</img></a>
</div>
<div class="partners__item">
<a aria-label="MRF Tyres" class="partners__link" href="http://track.adform.net/C/?bn=18235782" title="MRF Tyres">
<img alt="MRF Tyres" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/06/30/c1afea15-4875-4cba-9710-547729daa841/Frame-235.png?width=142&height=46"/>
</a>
</div>
<div class="partners__item">
<a aria-label="Booking" class="partners__link" href="https://www.booking.com/" target="_blank" title="Booking">
<img alt="Booking" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/06/30/8bb6e96d-2b69-4d8e-acc0-568602baba2d/Frame-234.png?width=142&height=46"/>
</a>
</div>
<div class="partners__item">
<a aria-label="BYJU" class="partners__link" href="https://byjus.com/" target="_blank" title="BYJU">
<img alt="BYJU" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/06/30/9b3ea6a2-25f4-478e-b8aa-0e1b7d3d0e2a/Frame-237.png?width=142&height=46"/>
</a>
</div>
<div class="partners__item">
<a aria-label="Emirates" class="partners__link" href="http://track.adform.net/C/?bn=18236184" title="Emirates">
<img alt="Emirates" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/06/30/d9fb726d-2cbd-41c8-9aaf-bd94f37a8e4a/Frame-236.png?width=142&height=46"/>
</a>
</div>
</div>
</section>
</div>
<div class="partners__block">
<section class="partners__container">
<div class="partners__list partners__list--medium">
<div class="partners__item">
<a aria-label="Bira 91" class="partners__link" href="https://www.bira91.com/" target="_blank" title="Bira 91">
<img alt="Bira 91" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/06/30/587180d3-1347-4152-93ab-318460743d55/Frame-239.png?width=95&height=31"/>
</a>
</div>
<div class="partners__item">
<a aria-label="Eatfit" class="partners__link" href="https://www.eatfit.in/" target="_blank" title="Eatfit">
<img alt="Eatfit" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/07/04/674c634d-7f3c-4dfc-989c-5d72fed70d79/eatfit.png?width=95&height=31"/>
</a>
</div>
<div class="partners__item">
<a aria-label="Coca Cola" class="partners__link" href="https://www.coca-colaindia.com/brands/thums-up" title="Coca Cola">
<img alt="Coca Cola" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/08/24/8f5e6ad2-0dfe-4e99-896c-20b034763dec/TU-Taste-The-Thunder-Logo.png?width=95&height=31"/>
</a>
</div>
<div class="partners__item">
<a aria-label="Upstox" class="partners__link" href="https://upstox.com/" target="_blank" title="Upstox">
<img alt="Upstox" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/06/30/70fab62f-38e2-47bb-8a3b-ffa437b1c6ac/Frame-240.png?width=95&height=31"/>
</a>
</div>
<div class="partners__item">
<a aria-label="PostPe" class="partners__link" href="https://ftx.com/" target="_blank" title="PostPe">
<img alt="PostPe" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/06/30/4c2e8d25-2744-4a26-9345-94cfafd132d3/Frame-243.png?width=95&height=31"/>
</a>
</div>
<div class="partners__item">
<a aria-label="FTX" class="partners__link" href="https://ftx.com/" target="_blank" title="FTX">
<img alt="FTX" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/06/30/8055a53b-e8d8-4622-9d0d-a833d86bff58/Frame-242.png?width=95&height=31"/>
</a>
</div>
<div class="partners__item">
<a aria-label="NIUM" class="partners__link" href="https://www.nium.com/" target="_blank" title="NIUM">
<img alt="NIUM" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/06/30/8eb1e98b-a9dc-4db8-84b0-4635582f96b0/nium.png?width=95&height=31"/>
</a>
</div>
</div>
</section>
<section class="partners__container">
<div class="partners__list partners__list--medium">
<div class="partners__item">
<a aria-label="Royal Stag" class="partners__link" href="https://www.pernod-ricard.com/en/brands/our-brands/royal-stag/" target="_blank" title="Royal Stag">
<img alt="Royal Stag" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/06/30/146eb588-7d36-4825-b06a-72a2533af1f0/Frame-250.png?width=95&height=31"/>
</a>
</div>
<div class="partners__item">
<a aria-label="Fantasy Cricket" class="partners__link" href="https://www.dream11.com/fantasy-cricket" target="_blank" title="Fantasy Cricket">
<img alt="Fantasy Cricket" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/06/30/d08b4b92-a224-4484-8269-22184d633d74/Frame-248.png?width=95&height=31"/>
</a>
</div>
<div class="partners__item">
<a aria-label="Jacobs Creek" class="partners__link" href="https://www.jacobscreek.com/en-gb" target="_blank" title="Jacobs Creek">
<img alt="Jacobs Creek" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/06/30/f44c1356-91b7-49c2-bb2a-8db9cd20133d/Jacobs-.png?width=95&height=31"/>
</a>
</div>
<div class="partners__item">
<a aria-label="FanCraze" class="partners__link" href="https://www.fancraze.com" title="FanCraze">
<img alt="FanCraze" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/06/30/51c3576a-0e91-4246-8d36-85fc5037cec6/Frame-249.png?width=95&height=31"/>
</a>
</div>
</div>
</section>
</div>
<div class="partners__block partners__block--inline">
<section class="partners__container">
<h3 class="partners__title">BROADCAST PARTNER</h3>
<div class="partners__list partners__list--large">
<div class="partners__item">
<a aria-label="Star Sports" class="partners__link" href="http://track.adform.net/C/?bn=18238489" target="_blank" title="Star Sports">
<img alt="Star Sports" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/06/30/6becb07e-9e85-4221-a4cf-43d1b58c5e46/star-sports.png?width=142&height=46"/>
</a>
</div>
</div>
</section>
<section class="partners__container">
<h3 class="partners__title">SOCIAL RESPONSIBILITY</h3>
<div class="partners__list partners__list--large">
<div class="partners__item">
<a aria-label="Cricket for Good" class="partners__link" href="https://www.icc-cricket.com/about/the-icc/cricket-for-good" target="_blank" title="Cricket for Good">
<img alt="Cricket for Good" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/06/30/66d0bd38-4492-4742-ae2f-a5a2f3ea7032/cricket4good.png?width=142&height=46"/>
</a>
</div>
</div>
</section>
</div>
</section>
<div class="footer__app-promo u-show-tablet">
<section class="app-promo">
<div class="app-promo__top">
<span class="app-promo__icon icn icn-app-icon"></span>
<span class="app-promo__text">Download the official ICC App today</span>
</div>
<div class="app-promo__bottom">
<a class="app-promo__cta icn icn-apple-badge" href="https://itunes.apple.com/gb/app/icc-world-twenty20-india-2016/id956440606?mt=8" target="_blank"></a>
<a class="app-promo__cta icn icn-android-badge" href="https://play.google.com/store/apps/details?id=com.pl.cwc_2015&hl=en_GB" target="_blank"></a>
</div>
</section>
</div>
<div class="footer__main">
<nav class="footer__links">
<a class="footer__link" href="http://www.icc-cricket.com/about/the-icc/legal-notices/website-terms-of-use">
Legal Notice
</a>
<a class="footer__link" href="http://www.icc-cricket.com/about/the-icc/legal-notices/privacy-policy">
Privacy Policy
</a>
</nav>
<div class="footer__social">
<nav class="social-follow">
<h6 class="social-follow__title">Follow Us</h6>
<a class="social-follow__item social-follow__item--facebook" href="https://www.facebook.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-facebook-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.facebook</span></a>
<a class="social-follow__item social-follow__item--twitter" href="https://twitter.com/ICC" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-twitter-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.twitter</span>
</a>
<a class="social-follow__item social-follow__item--instagram" href="https://www.instagram.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-instagram-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.instagram</span>
</a>
<a class="social-follow__item social-follow__item--youtube" href="https://www.youtube.com/user/CricketICC?cbrd=1" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-youtube-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.youtube</span>
</a>
</nav>
<svg aria-hidden="true" focusable="false" style="width:0;height:0;position:absolute;">
<lineargradient gradienttransform="rotate(45)" id="instagram" x2="1" y2="1">
<stop offset="0%" stop-color="#4c68d6"></stop>
<stop offset="33%" stop-color="#b22d98"></stop>
<stop offset="65%" stop-color="#e85a50"></stop>
<stop offset="100%" stop-color="#fbbb59"></stop>
</lineargradient>
</svg>
</div>
</div>
<div class="footer__corporate">
<span class="footer__copyright">2022 © International Cricket Council FZ LLC</span>
</div>
</footer>
<script src="/resources/prod/v8.28.1/scripts/vendors.min.js"></script>
<script src="/resources/prod/v8.28.1/scripts/client.min.js"></script>
<script src="https://sso.fanaccount.icc-cricket.com/auth/js/keycloak.js"></script>
<!--[if IE]> -->
<script type="text/javascript">
svg4everybody();
</script>
<!-- <![endif]-->
</body>
</html>
Top_Bowler=soup.find_all('td',class_="table-body__cell rankings-table__name name")[0:10]
Top_Bowler
[<td class="table-body__cell rankings-table__name name"> <a href="/rankings/mens/player-rankings/857">Josh Hazlewood</a> </td>, <td class="table-body__cell rankings-table__name name"> <a href="/rankings/mens/player-rankings/4572">Mujeeb Ur Rahman</a> </td>, <td class="table-body__cell rankings-table__name name"> <a href="/rankings/mens/player-rankings/1124">Jasprit Bumrah</a> </td>, <td class="table-body__cell rankings-table__name name"> <a href="/rankings/mens/player-rankings/4530">Shaheen Afridi</a> </td>, <td class="table-body__cell rankings-table__name name"> <a href="/rankings/mens/player-rankings/618">Mohammad Nabi</a> </td>, <td class="table-body__cell rankings-table__name name"> <a href="/rankings/mens/player-rankings/1597">Mehedi Hasan</a> </td>, <td class="table-body__cell rankings-table__name name"> <a href="/rankings/mens/player-rankings/1505">Matt Henry</a> </td>, <td class="table-body__cell rankings-table__name name"> <a href="/rankings/mens/player-rankings/490">Mitchell Starc</a> </td>, <td class="table-body__cell rankings-table__name name"> <a href="/rankings/mens/player-rankings/2885">Rashid Khan</a> </td>, <td class="table-body__cell rankings-table__name name"> <a href="/rankings/mens/player-rankings/1594">Mustafizur Rahman</a> </td>]
Team_Bowler=soup.find_all('span',class_="table-body__logo-text")[0:10]
Team_Bowler
[<span class="table-body__logo-text">AUS</span>, <span class="table-body__logo-text">AFG</span>, <span class="table-body__logo-text">IND</span>, <span class="table-body__logo-text">PAK</span>, <span class="table-body__logo-text">AFG</span>, <span class="table-body__logo-text">BAN</span>, <span class="table-body__logo-text">NZ</span>, <span class="table-body__logo-text">AUS</span>, <span class="table-body__logo-text">AFG</span>, <span class="table-body__logo-text">BAN</span>]
Bowler_rating=soup.find_all('td',class_="table-body__cell rating")[0:10]
Bowler_rating
[<td class="table-body__cell rating">718</td>, <td class="table-body__cell rating">676</td>, <td class="table-body__cell rating">662</td>, <td class="table-body__cell rating">661</td>, <td class="table-body__cell rating">657</td>, <td class="table-body__cell rating">655</td>, <td class="table-body__cell rating">654</td>, <td class="table-body__cell rating">653</td>, <td class="table-body__cell rating">651</td>, <td class="table-body__cell rating">640</td>]
print(len(Top_Bowler),len(Team_Bowler),len(Bowler_rating))
10 10 10
import pandas as pd
df=pd.DataFrame({"Bowler_Name":Top_Bowler,"Team":Team_Bowler,"Rating":Bowler_rating})
df
| Bowler_Name | Team | Rating | |
|---|---|---|---|
| 0 | [\n, [Josh Hazlewood], \n] | [AUS] | [718] |
| 1 | [\n, [Mujeeb Ur Rahman], \n] | [AFG] | [676] |
| 2 | [\n, [Jasprit Bumrah], \n] | [IND] | [662] |
| 3 | [\n, [Shaheen Afridi], \n] | [PAK] | [661] |
| 4 | [\n, [Mohammad Nabi], \n] | [AFG] | [657] |
| 5 | [\n, [Mehedi Hasan], \n] | [BAN] | [655] |
| 6 | [\n, [Matt Henry], \n] | [NZ] | [654] |
| 7 | [\n, [Mitchell Starc], \n] | [AUS] | [653] |
| 8 | [\n, [Rashid Khan], \n] | [AFG] | [651] |
| 9 | [\n, [Mustafizur Rahman], \n] | [BAN] | [640] |
6) Write a python program to scrape cricket rankings from icc-cricket.com. You have to scrape: a) Top 10 ODI teams in women’s cricket along with the records for matches, points and rating
url=requests.get("https://www.icc-cricket.com/rankings/womens/team-rankings/odi")
url
<Response [200]>
soup=BeautifulSoup(url.text,'html.parser')
soup
<!DOCTYPE html>
<html lang="en">
<head>
<meta content="ICC Women's ODI Team Rankings | ICC" name="twitter:title"/>
<meta content="website" property="og:type"/>
<meta content="summary_large_image" property="twitter:card"/>
<meta content="Official International Cricket Council rankings for test match cricket teams. Discover latest ICC rankings table, predict upcoming matches, see points and ratings for all teams." name="description"/>
<meta content="@icc" property="twitter:site"/>
<meta content="Official International Cricket Council rankings for test match cricket teams. Discover latest ICC rankings table, predict upcoming matches, see points and ratings for all teams." name="twitter:description"/>
<meta content="https://www.icc-cricket.com/resources/ver/i/elements/default-thumbnail.jpg" name="twitter:image"/>
<meta content="ICC Women's ODI Team Rankings | ICC" property="og:title"/>
<meta content="https://www.icc-cricket.com/resources/ver/i/elements/default-thumbnail.jpg" property="og:image"/>
<title>ICC Women's ODI Team Rankings | ICC</title>
<meta content="Official International Cricket Council rankings for test match cricket teams. Discover latest ICC rankings table, predict upcoming matches, see points and ratings for all teams." property="og:description"/>
<!-- Designed and built by Pulselive - www.pulselive.com -->
<script>
var dataLayer = [{
'user_language':'English',
'web_domain':'www.icc-cricket.com',
'page_type':'/rankings/womens/team-rankings/odi'
}];
</script>
<!-- Google Tag Manager -->
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-T7DPH24');</script>
<!-- End Google Tag Manager -->
<script async="" src="https://securepubads.g.doubleclick.net/tag/js/gpt.js"></script>
<meta charset="utf-8"/>
<meta content="width=device-width, initial-scale=1" name="viewport"/>
<meta content="app-id=956440606" name="apple-itunes-app">
<link href="/resources/prod/v8.28.1/manifest.json" rel="manifest"/>
<link href="/resources/prod/v8.28.1/i/elements/favicon.ico" rel="shortcut icon">
<link href="https://plus.google.com/+ICC" rel="publisher"/>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebPage",
"headline": "",
"url": "https://www.icc-cricket.com/rankings/womens/team-rankings/odi",
"creator": ["ICC"]
}
</script>
<title>International Cricket Council</title>
<!-- google platform library -->
<script async="" defer="" src="https://apis.google.com/js/api:client.js?onload=startApp"></script>
<script>
var startApp = function() {
gapi.load('auth2', function(){
// Retrieve the singleton for the GoogleAuth library and set up the client.
auth2 = gapi.auth2.init({
client_id: '844310787835-1rirg6e5plp2jou6v701br43iuo0lkcu.apps.googleusercontent.com'
// Request scopes in addition to 'profile' and 'email'
//scope: 'additional_scope'
});
});
};
</script>
<link href="https://fonts.googleapis.com/css?family=Hind+Siliguri:300,400,500,600" rel="stylesheet"/>
<!-- Polyfill service provided by the FT - https://github.com/Financial-Times/polyfill-service -->
<script src="https://cdn.polyfill.io/v2/polyfill.min.js?features=default,fetch"></script>
<link href="/resources/prod/v8.28.1/styles/screen.css" rel="stylesheet">
<script>
window.RESOURCE_VERSION = 'prod/v8.28.1';
</script>
</link></link></meta></head>
<body>
<!-- Google Tag Manager (noscript) -->
<noscript><iframe height="0" src="https://www.googletagmanager.com/ns.html?id=GTM-T7DPH24" style="display:none;visibility:hidden" width="0"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
<!--
Start of Floodlight Tag: Please do not removeActivity name of this tag: ICC Website - VisitationURL of the webpage where the tag is expected to be placed: This tag must be placed between the <body> and </body> tags, as close as possible to the opening tag. Creation Date: 10/01/2019
-->
<iframe frameborder="0" height="1" src="https://9282652.fls.doubleclick.net/activityi;src=9282652;type=iccre0;cat=iccwe0;u1=[user_language];u2=[user_country];u3=[page_type];u4=[web_domain];dc_lat=;dc_rdid=;tag_for_child_directed_treatment=;tfua=;npa=;ord=[SessionID]?" style="display:none" width="1"></iframe>
<!-- End of Floodlight Tag: Please do not remove -->
<script id="parsely-cfg" src="//cdn.parsely.com/keys/icc-cricket.com/p.js"></script>
<script>
window.fbAsyncInit = function() {
FB.init({
appId : 159513024983374,
autoLogAppEvents : true,
xfbml : true,
version : 'v3.0'
});
};
(function(d, s, id){
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) {return;}
js = d.createElement(s); js.id = id;
js.src = "https://connect.facebook.net/en_US/sdk.js";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));
</script>
<div class="user-account-overlay js-user-account-overlay"></div>
<section class="user-account js-user-account" data-script="sso_user-account" data-widget="user-account">
<div class="user-account__wrapper js-panel-account u-hide">
<div class="user-account__header">
<div class="user-account__close js-account-slider-close-btn" role="button">
<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-close" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg>
</div>
<div class="user-account__user-wrapper">
<div class="user-account__image">
<img alt="User Image" class="u-hide js-account-user-img" src="#"/>
</div>
<div class="user-account__user-info">
<p class="user-account__user-info__text js-account-user">Name Lastname</p>
<p class="user-account__user-info__profile js-profile-completion-info u-hide">
<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-alert" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg>
Profile <span class="js-profile-completion-percentage"></span>% Complete
</p>
</div>
</div>
<div class="user-account__tabs-nav js-tabs-wrapper"></div>
</div>
<div class="account-message js-account-message"></div>
<form autocomplete="off" id="user-account" name="user-account">
<div class="user-account__tab" data-ui-tab="My Account">
<div class="user-account__social-wrapper js-social-wrapper u-hide"></div>
<fieldset>
<div class="form-group-multiple">
<div class="form-group">
<label class="form-group__label" for="given_name">First name *</label>
<input class="form-group__element" id="given_name" maxlength="50" name="given_name" pattern="^[A-Za-z-\s]+$" required="" type="text"/>
<p class="js-error form-error"></p>
</div>
<div class="form-group">
<label class="form-group__label" for="family_name">Last name *</label>
<input class="form-group__element" id="family_name" maxlength="50" name="family_name" pattern="[A-Za-z-\s]+$" required="" type="text"/>
<p class="js-error form-error"></p>
</div>
</div>
<div class="form-group-multiple form-group-multiple--with-button">
<div class="form-group is-disabled js-change-email-input">
<label class="form-group__label" for="email">Email address *</label>
<input autocomplete="off" class="form-group__element" disabled="" id="email" maxlength="50" name="email" type="email"/>
<p class="js-error form-error"></p>
<p class="js-email-exists form-error form-error--email">Email address not available.</p>
</div>
<div class="form-group form-group--button">
<button class="form-btn form-btn--outlined js-change-email" novalidate="" type="button">Change Email</button>
</div>
</div>
<div class="form-group-multiple form-group-multiple--with-button js-account-password">
<div class="form-group is-disabled js-change-password-input">
<label class="form-group__label" for="password">Password *</label>
<input autocomplete="off" class="form-group__element" disabled="" id="password" name="password" placeholder="******" type="password"/>
<p class="js-error form-error"></p>
</div>
<div class="form-group form-group--button">
<button class="form-btn form-btn--outlined js-change-password" novalidate="" type="button">Change Password</button>
</div>
</div>
<div class="form-block form-block">
<div class="form-block__label form-block__label--dob">Date of Birth</div>
<div class="form-group-multiple">
<div class="form-group">
<label class="form-group__label" for="day">Day *</label>
<input class="form-group__element" id="day" min="0" name="day" placeholder="dd" required="" type="number"/>
<p class="js-error form-error"></p>
</div>
<div class="form-group">
<label class="form-group__label" for="month">Month *</label>
<input class="form-group__element" id="month" min="0" name="month" placeholder="mm" required="" type="number"/>
<p class="js-error form-error"></p>
</div>
<div class="form-group">
<label class="form-group__label" for="year">Year *</label>
<input class="form-group__element" id="year" min="0" name="year" placeholder="yyyy" required="" type="number"/>
<p class="js-error form-error"></p>
</div>
</div>
<p class="js-date-error form-error form-error--date">The date of birth is not valid</p>
</div>
<div class="form-block" data-dropdown-type="SSO_COUNTRY" data-widget="form-dropdown">
<div class="form-block__label">Country of residence</div>
<div class="form-dropdown js-dropdown-wrapper"></div>
</div>
</fieldset>
</div>
<div class="user-account__tab" data-ui-tab="My Preferences">
<div class="js-account-prefs u-hide">
<fieldset>
<div class="form-block" data-dropdown-type="SSO_TEAM" data-widget="form-dropdown">
<div class="form-block__label">Your favourite team</div>
<div class="form-dropdown js-dropdown-wrapper"></div>
</div>
<div class="js-contact-prefs user-account__contact-prefs-wrapper">
<div class="user-account__alert">
<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-alert" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg>
<span>Sorry, but your contact preferences will take up to 24hrs to update</span>
</div>
<div class="user-account__contact-prefs">
<div class="form-block form-block--no-margin">
<div class="form-group form-group--checkbox">
<input class="form-group__element" id="allow-contacting" name="allow-contacting" type="checkbox"/>
<label class="form-group__label" for="allow-contacting">I'm happy for the ICC to contact me</label>
</div>
<p class="js-error form-error"></p>
</div>
<div class="form-block form-block--no-margin">
<div class="form-group form-group--checkbox">
<input class="form-group__element" id="allow-partner-contacting" name="allow-partner-contacting" type="checkbox"/>
<label class="form-group__label" for="allow-partner-contacting">I'm happy for the ICC's partners to contact me</label>
</div>
<p class="js-error form-error"></p>
</div>
</div>
</div>
</fieldset>
</div>
<div class="overlay__loader__small js-loader-prefs">
Hold on! Loading your preferences <div class="loader loader--small"></div>
</div>
</div>
<div class="user-account__buttons-wrapper">
<div class="user-account__account-actions js-buttons-wrapper">
<button class="form-btn form-btn--grey is-disabled js-cancel" disabled="">Cancel</button>
<button class="form-btn is-disabled js-submit" disabled="" type="submit">Save Changes</button>
<div class="loader js-loader u-hide"></div>
</div>
<button class="form-btn form-btn--grey js-account-signout u-show-tablet">Sign Out<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-sign-out" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg></button>
</div>
</form>
</div>
<div class="user-account__wrapper js-panel-account-password u-hide">
<form id="account-edit-password" name="account-edit-password" novalidate="">
<div class="user-account__tabs-wrapper">
<h1 class="overlay__title">
Edit your password
<span class="overlay__title__option"><a class="form-cta js-cancel-password" href="#">back</a></span>
</h1>
<div class="form-group form-group--password">
<div class="form-group__password-action js-toggle-password">Show</div>
<label class="form-group__label" for="current-password">Current Password *</label>
<input class="form-group__element" id="current-password" name="current-password" required="" type="password"/>
<p class="js-error form-error"></p>
<p class="js-current-pwd-error form-error form-error--email">Invalid current password</p>
</div>
<a class="form-cta form-cta--right" href="/forgot-password">Forgot password?</a>
<div class="form-block">
<div class="form-group form-group--password">
<div class="form-group__password-action js-toggle-password">Show</div>
<label class="form-group__label" for="new-password">New password *</label>
<input class="form-group__element" id="new-password" name="new-password" required="" type="password"/>
<div class="form-block__verify-password form-block__verify-password--slider js-verify-password">
Password must include...
<ul class="form-block__verify-list">
<li class="js-verify-length">8 or more characters</li>
<li class="js-verify-letters">At least one upper and lower case letter</li>
<li class="js-verify-number">At least one number or symbol</li>
</ul>
</div>
<p class="js-error form-error"></p>
<p class="js-new-pwd-error form-error form-error--email">The new password needs to be different than the current one.</p>
</div>
</div>
<div class="form-group form-group--password">
<div class="form-group__password-action js-toggle-password">Show</div>
<label class="form-group__label" for="confirm-password">Confirm new password *</label>
<input class="form-group__element" id="confirm-password" name="confirm-password" required="" type="password"/>
<p class="js-error form-error"></p>
<p class="js-confirm-pwd-error form-error form-error--email">The confirmation does not match your new password</p>
</div>
</div>
<div class="user-account__buttons-wrapper">
<div class="user-account__account-actions">
<button class="form-btn form-btn--grey js-cancel-password" type="button">Cancel</button>
<button class="form-btn is-disabled js-submit-password" disabled="" type="submit">Change Password</button>
<div class="loader js-password-loader u-hide"></div>
</div>
</div>
</form>
</div>
</section>
<div class="main-navigation__container js-will-glue">
<!-- header -->
<header class="main-navigation">
<section class="main-navigation__top-bar">
<nav class="site-tabs">
<ul class="site-tabs__list">
<li class="site-tabs__item theme theme-icc is-active">
<a class="site-tabs__link" href="https://icc-cricket.com">
ICC Cricket
</a>
</li>
<li class="site-tabs__item theme theme-t20wc">
<a class="site-tabs__link" href="https://t20worldcup.com" rel="noopener" target="_blank">
Men’s T20 World Cup 2022
</a>
</li>
<li class="site-tabs__item theme theme-wcwc">
<a class="site-tabs__link" href="https://www.cricketworldcup.com/" rel="noopener" target="_blank">
Women’s Cricket World Cup 2022
</a>
</li>
<li class="site-tabs__item theme theme-wtc">
<a class="site-tabs__link" href="https://www.icc-cricket.com/world-test-championship/overview" rel="noopener" target="_blank">
World Test Championship
</a>
</li>
</ul></nav>
<div class="sso-nav js-sso-display">
<div class="loader sso-nav__loader">
<div class="loader__ring">
<div></div>
<div></div>
<div></div>
<div></div>
</div>
</div>
</div>
</section>
<section class="main-navigation__wrapper">
<!-- desktop menu -->
<div class="main-navigation__header u-hide-desktop">
<a class="main-navigation__logo" href="/" title="label.returnToHomepage">
<span class="icn icn-logo-icc-nav"></span>
<span class="u-screen-reader">label.ICCHome</span>
</a>
<nav aria-label="Header Navigation" class="main-navigation__desktop-list js-desktop-nav" id="" role="navigation">
<header class="linked-list__header u-show-desktop">
<a class="linked-list__header-search" href="http://icc-cricket.com/search">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-search-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</a>
<span class="js-mobile-nav-btn">
<svg aria-hidden="true" class="icon linked-list__header-close-icn">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-cross" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</span>
</header>
<ul class="linked-list js-dynamic-list">
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
Scores
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
Scores
</button>
</header>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
Men's
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
Men's
</button>
</header>
<li class="linked-list__item">
<a class="linked-list__link" href="/mens-schedule/list">
Fixtures
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/live-cricket/mens-results">
Results
</a>
</li>
</ul>
</li>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
Women's
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
Women's
</button>
</header>
<li class="linked-list__item">
<a class="linked-list__link" href="/womens-schedule/list">
Fixtures
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/live-cricket/womens-results">
Results
</a>
</li>
</ul>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/live-cricket/live">
Live Scores
</a>
</li>
<li class="linked-list__item linked-list__item--wider u-hide-desktop">
</li>
<li class="linked-list__item linked-list__item--full-width u-hide-desktop">
<div class="main-navigation__social-container">
<nav class="social-follow">
<h6 class="social-follow__title">Follow Us</h6>
<a class="social-follow__item social-follow__item--facebook" href="https://www.facebook.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-facebook-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.facebook</span></a>
<a class="social-follow__item social-follow__item--twitter" href="https://twitter.com/ICC" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-twitter-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.twitter</span>
</a>
<a class="social-follow__item social-follow__item--instagram" href="https://www.instagram.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-instagram-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.instagram</span>
</a>
<a class="social-follow__item social-follow__item--youtube" href="https://www.youtube.com/user/CricketICC?cbrd=1" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-youtube-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.youtube</span>
</a>
</nav>
<svg aria-hidden="true" focusable="false" style="width:0;height:0;position:absolute;">
<lineargradient gradienttransform="rotate(45)" id="instagram" x2="1" y2="1">
<stop offset="0%" stop-color="#4c68d6"></stop>
<stop offset="33%" stop-color="#b22d98"></stop>
<stop offset="65%" stop-color="#e85a50"></stop>
<stop offset="100%" stop-color="#fbbb59"></stop>
</lineargradient>
</svg>
</div>
</li>
</ul>
</li>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
Rankings
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
Rankings
</button>
</header>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
Men's
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
Men's
</button>
</header>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/mens/overview">
Overview
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/mens/team-rankings">
Team Rankings
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/mens/player-rankings">
Players Rankings
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/mens/rankings-predictor/test">
Team Rankings Predictor
</a>
</li>
</ul>
</li>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
Women's
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
Women's
</button>
</header>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/womens/overview">
Overview
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/womens/team-rankings">
Team Rankings
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/womens/player-rankings">
Player Rankings
</a>
</li>
</ul>
</li>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
</header>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/mens/player-rankings/comparison">
Player Head to Head
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/about">
About Rankings
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/faqs">
Rankings FAQs
</a>
</li>
</ul>
</li>
<li class="linked-list__item linked-list__item--wider u-hide-desktop">
</li>
<li class="linked-list__item linked-list__item--full-width u-hide-desktop">
<div class="main-navigation__social-container">
<nav class="social-follow">
<h6 class="social-follow__title">Follow Us</h6>
<a class="social-follow__item social-follow__item--facebook" href="https://www.facebook.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-facebook-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.facebook</span></a>
<a class="social-follow__item social-follow__item--twitter" href="https://twitter.com/ICC" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-twitter-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.twitter</span>
</a>
<a class="social-follow__item social-follow__item--instagram" href="https://www.instagram.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-instagram-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.instagram</span>
</a>
<a class="social-follow__item social-follow__item--youtube" href="https://www.youtube.com/user/CricketICC?cbrd=1" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-youtube-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.youtube</span>
</a>
</nav>
<svg aria-hidden="true" focusable="false" style="width:0;height:0;position:absolute;">
<lineargradient gradienttransform="rotate(45)" id="instagram" x2="1" y2="1">
<stop offset="0%" stop-color="#4c68d6"></stop>
<stop offset="33%" stop-color="#b22d98"></stop>
<stop offset="65%" stop-color="#e85a50"></stop>
<stop offset="100%" stop-color="#fbbb59"></stop>
</lineargradient>
</svg>
</div>
</li>
</ul>
</li>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
Events
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
Events
</button>
</header>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
Men's Events
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
Men's Events
</button>
</header>
<li class="linked-list__item">
<a class="linked-list__link" href="https://www.t20worldcup.com">
ICC T20 World Cup
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/world-test-championship">
ICC World Test Championship
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/u19-world-cup/">
ICC U19 Cricket World Cup
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/cricket-world-cup-super-league/fixtures">
ICC CWC Super League
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/cricket-world-cup-challenge-league/news">
ICC CWC Challenge League
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/cricket-world-cup-league-two/news">
ICC CWC League 2
</a>
</li>
</ul>
</li>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
Women's Events
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
Women's Events
</button>
</header>
<li class="linked-list__item">
<a class="linked-list__link" href="https://womens.t20worldcup.com//">
ICC T20 World Cup
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="https://www.cricketworldcup.com/">
ICC Cricket World Cup
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/womens-u19-world-cup/">
ICC U19 T20 World Cup
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/womens-championship">
ICC Women's Championship
</a>
</li>
</ul>
</li>
<li class="linked-list__item linked-list__item--wider u-hide-desktop">
</li>
<li class="linked-list__item linked-list__item--full-width u-hide-desktop">
<div class="main-navigation__social-container">
<nav class="social-follow">
<h6 class="social-follow__title">Follow Us</h6>
<a class="social-follow__item social-follow__item--facebook" href="https://www.facebook.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-facebook-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.facebook</span></a>
<a class="social-follow__item social-follow__item--twitter" href="https://twitter.com/ICC" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-twitter-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.twitter</span>
</a>
<a class="social-follow__item social-follow__item--instagram" href="https://www.instagram.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-instagram-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.instagram</span>
</a>
<a class="social-follow__item social-follow__item--youtube" href="https://www.youtube.com/user/CricketICC?cbrd=1" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-youtube-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.youtube</span>
</a>
</nav>
<svg aria-hidden="true" focusable="false" style="width:0;height:0;position:absolute;">
<lineargradient gradienttransform="rotate(45)" id="instagram" x2="1" y2="1">
<stop offset="0%" stop-color="#4c68d6"></stop>
<stop offset="33%" stop-color="#b22d98"></stop>
<stop offset="65%" stop-color="#e85a50"></stop>
<stop offset="100%" stop-color="#fbbb59"></stop>
</lineargradient>
</svg>
</div>
</li>
</ul>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/news">
News
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/video">
Videos
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/teams">
Teams
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="https://icc.tv">
ICC.TV
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="https://www.icc-cricket.com/shop/">
Shop
</a>
</li>
<li class="linked-list__item no-border u-show-desktop">
<span class="linked-list__title">Explore ICC</span>
</li>
<li class="linked-list__item linked-list__item--promo u-show-desktop">
<section class="app-promo">
<div class="app-promo__top">
<span class="app-promo__icon icn icn-app-icon"></span>
<span class="app-promo__text">Download the official ICC App today</span>
</div>
<div class="app-promo__bottom">
<a class="app-promo__cta icn icn-apple-badge" href="https://itunes.apple.com/gb/app/icc-world-twenty20-india-2016/id956440606?mt=8" target="_blank"></a>
<a class="app-promo__cta icn icn-android-badge" href="https://play.google.com/store/apps/details?id=com.pl.cwc_2015&hl=en_GB" target="_blank"></a>
</div>
</section>
</li>
<li class="linked-list__item linked-list__item--social u-show-desktop">
<div class="main-navigation__social-container">
<nav class="social-follow">
<h6 class="social-follow__title">Follow Us</h6>
<a class="social-follow__item social-follow__item--facebook" href="https://www.facebook.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-facebook-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.facebook</span></a>
<a class="social-follow__item social-follow__item--twitter" href="https://twitter.com/ICC" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-twitter-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.twitter</span>
</a>
<a class="social-follow__item social-follow__item--instagram" href="https://www.instagram.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-instagram-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.instagram</span>
</a>
<a class="social-follow__item social-follow__item--youtube" href="https://www.youtube.com/user/CricketICC?cbrd=1" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-youtube-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.youtube</span>
</a>
</nav>
<svg aria-hidden="true" focusable="false" style="width:0;height:0;position:absolute;">
<lineargradient gradienttransform="rotate(45)" id="instagram" x2="1" y2="1">
<stop offset="0%" stop-color="#4c68d6"></stop>
<stop offset="33%" stop-color="#b22d98"></stop>
<stop offset="65%" stop-color="#e85a50"></stop>
<stop offset="100%" stop-color="#fbbb59"></stop>
</lineargradient>
</svg>
</div>
</li>
</ul>
</nav>
<a class="main-navigation__search" href="http://icc-cricket.com/search">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-search-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</a>
<button aria-controls="sidebar-menu" aria-label="Menu" class="hamburger js-sidebar-btn" type="button">
<span class="hamburger__line hamburger__line--top"></span>
<span class="hamburger__line hamburger__line--middle"></span>
<span class="hamburger__line hamburger__line--bottom"></span>
</button>
</div>
<!-- mobile menu -->
<div class="main-navigation__mobile u-show-desktop" data-widget="mobile-navigation">
<a class="main-navigation__logo" href="/" title="label.returnToHomepage">
<span class="icn icn-logo-icc-nav"></span>
<span class="u-screen-reader">label.ICCHome</span>
</a>
<div class="main-navigation__sub-menu">
<nav class="sub-menu">
<a class="sub-menu__link" href="https://www.icc-cricket.com/mens-schedule/list">
Scores
</a>
<a class="sub-menu__link" href="https://www.icc-cricket.com/rankings/mens/overview">
Rankings
</a>
<a class="sub-menu__link" href="https://www.icc-cricket.com/news">
News
</a>
<a class="sub-menu__link" href="https://welcome.icc.tv/">
ICC.tv
</a>
</nav>
</div>
<button aria-controls="mobile-menu" aria-label="Menu" class="hamburger js-mobile-nav-btn" type="button">
<span class="hamburger__line hamburger__line--top"></span>
<span class="hamburger__line hamburger__line--middle"></span>
<span class="hamburger__line hamburger__line--bottom"></span>
<span class="u-screen-reader">label.toggleMobileNavigation</span>
</button>
<nav aria-label="Header Navigation" class="main-navigation__mobile-list js-mobile-nav" id="mobile-menu" role="navigation">
<header class="linked-list__header u-show-desktop">
<a class="linked-list__header-search" href="http://icc-cricket.com/search">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-search-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</a>
<span class="js-mobile-nav-btn">
<svg aria-hidden="true" class="icon linked-list__header-close-icn">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-cross" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</span>
</header>
<ul class="linked-list js-dynamic-list">
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
Scores
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
Scores
</button>
</header>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
Men's
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
Men's
</button>
</header>
<li class="linked-list__item">
<a class="linked-list__link" href="/mens-schedule/list">
Fixtures
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/live-cricket/mens-results">
Results
</a>
</li>
</ul>
</li>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
Women's
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
Women's
</button>
</header>
<li class="linked-list__item">
<a class="linked-list__link" href="/womens-schedule/list">
Fixtures
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/live-cricket/womens-results">
Results
</a>
</li>
</ul>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/live-cricket/live">
Live Scores
</a>
</li>
<li class="linked-list__item linked-list__item--wider u-hide-desktop">
</li>
<li class="linked-list__item linked-list__item--full-width u-hide-desktop">
<div class="main-navigation__social-container">
<nav class="social-follow">
<h6 class="social-follow__title">Follow Us</h6>
<a class="social-follow__item social-follow__item--facebook" href="https://www.facebook.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-facebook-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.facebook</span></a>
<a class="social-follow__item social-follow__item--twitter" href="https://twitter.com/ICC" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-twitter-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.twitter</span>
</a>
<a class="social-follow__item social-follow__item--instagram" href="https://www.instagram.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-instagram-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.instagram</span>
</a>
<a class="social-follow__item social-follow__item--youtube" href="https://www.youtube.com/user/CricketICC?cbrd=1" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-youtube-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.youtube</span>
</a>
</nav>
<svg aria-hidden="true" focusable="false" style="width:0;height:0;position:absolute;">
<lineargradient gradienttransform="rotate(45)" id="instagram" x2="1" y2="1">
<stop offset="0%" stop-color="#4c68d6"></stop>
<stop offset="33%" stop-color="#b22d98"></stop>
<stop offset="65%" stop-color="#e85a50"></stop>
<stop offset="100%" stop-color="#fbbb59"></stop>
</lineargradient>
</svg>
</div>
</li>
</ul>
</li>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
Rankings
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
Rankings
</button>
</header>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
Men's
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
Men's
</button>
</header>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/mens/overview">
Overview
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/mens/team-rankings">
Team Rankings
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/mens/player-rankings">
Players Rankings
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/mens/rankings-predictor/test">
Team Rankings Predictor
</a>
</li>
</ul>
</li>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
Women's
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
Women's
</button>
</header>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/womens/overview">
Overview
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/womens/team-rankings">
Team Rankings
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/womens/player-rankings">
Player Rankings
</a>
</li>
</ul>
</li>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
</header>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/mens/player-rankings/comparison">
Player Head to Head
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/about">
About Rankings
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/faqs">
Rankings FAQs
</a>
</li>
</ul>
</li>
<li class="linked-list__item linked-list__item--wider u-hide-desktop">
</li>
<li class="linked-list__item linked-list__item--full-width u-hide-desktop">
<div class="main-navigation__social-container">
<nav class="social-follow">
<h6 class="social-follow__title">Follow Us</h6>
<a class="social-follow__item social-follow__item--facebook" href="https://www.facebook.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-facebook-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.facebook</span></a>
<a class="social-follow__item social-follow__item--twitter" href="https://twitter.com/ICC" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-twitter-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.twitter</span>
</a>
<a class="social-follow__item social-follow__item--instagram" href="https://www.instagram.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-instagram-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.instagram</span>
</a>
<a class="social-follow__item social-follow__item--youtube" href="https://www.youtube.com/user/CricketICC?cbrd=1" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-youtube-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.youtube</span>
</a>
</nav>
<svg aria-hidden="true" focusable="false" style="width:0;height:0;position:absolute;">
<lineargradient gradienttransform="rotate(45)" id="instagram" x2="1" y2="1">
<stop offset="0%" stop-color="#4c68d6"></stop>
<stop offset="33%" stop-color="#b22d98"></stop>
<stop offset="65%" stop-color="#e85a50"></stop>
<stop offset="100%" stop-color="#fbbb59"></stop>
</lineargradient>
</svg>
</div>
</li>
</ul>
</li>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
Events
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
Events
</button>
</header>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
Men's Events
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
Men's Events
</button>
</header>
<li class="linked-list__item">
<a class="linked-list__link" href="https://www.t20worldcup.com">
ICC T20 World Cup
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/world-test-championship">
ICC World Test Championship
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/u19-world-cup/">
ICC U19 Cricket World Cup
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/cricket-world-cup-super-league/fixtures">
ICC CWC Super League
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/cricket-world-cup-challenge-league/news">
ICC CWC Challenge League
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/cricket-world-cup-league-two/news">
ICC CWC League 2
</a>
</li>
</ul>
</li>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
Women's Events
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
Women's Events
</button>
</header>
<li class="linked-list__item">
<a class="linked-list__link" href="https://womens.t20worldcup.com//">
ICC T20 World Cup
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="https://www.cricketworldcup.com/">
ICC Cricket World Cup
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/womens-u19-world-cup/">
ICC U19 T20 World Cup
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/womens-championship">
ICC Women's Championship
</a>
</li>
</ul>
</li>
<li class="linked-list__item linked-list__item--wider u-hide-desktop">
</li>
<li class="linked-list__item linked-list__item--full-width u-hide-desktop">
<div class="main-navigation__social-container">
<nav class="social-follow">
<h6 class="social-follow__title">Follow Us</h6>
<a class="social-follow__item social-follow__item--facebook" href="https://www.facebook.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-facebook-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.facebook</span></a>
<a class="social-follow__item social-follow__item--twitter" href="https://twitter.com/ICC" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-twitter-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.twitter</span>
</a>
<a class="social-follow__item social-follow__item--instagram" href="https://www.instagram.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-instagram-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.instagram</span>
</a>
<a class="social-follow__item social-follow__item--youtube" href="https://www.youtube.com/user/CricketICC?cbrd=1" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-youtube-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.youtube</span>
</a>
</nav>
<svg aria-hidden="true" focusable="false" style="width:0;height:0;position:absolute;">
<lineargradient gradienttransform="rotate(45)" id="instagram" x2="1" y2="1">
<stop offset="0%" stop-color="#4c68d6"></stop>
<stop offset="33%" stop-color="#b22d98"></stop>
<stop offset="65%" stop-color="#e85a50"></stop>
<stop offset="100%" stop-color="#fbbb59"></stop>
</lineargradient>
</svg>
</div>
</li>
</ul>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/news">
News
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/video">
Videos
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/teams">
Teams
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="https://icc.tv">
ICC.TV
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="https://www.icc-cricket.com/shop/">
Shop
</a>
</li>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
More
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
More
</button>
</header>
<li class="linked-list__item">
<a class="linked-list__link" href="https://fancraze.com/">
Crictos
<svg aria-hidden="true" class="icon external-link">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-external-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/awards/overview">
ICC Awards
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/hall-of-fame">
Hall of Fame
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="https://www.criiio.com/">
criiio
<svg aria-hidden="true" class="icon external-link">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-external-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/100percentcricket">
100% Cricket
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/mobile">
Official ICC App
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="https://www.icc-cricket.com/shop/">
shop
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/about">
About ICC
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/media-releases">
Media Releases
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/photos">
Photos
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/news/318971">
Commercial Opportunities
</a>
</li>
<li class="linked-list__item linked-list__item--wider u-hide-desktop">
</li>
<li class="linked-list__item linked-list__item--full-width u-hide-desktop">
<div class="main-navigation__social-container">
<nav class="social-follow">
<h6 class="social-follow__title">Follow Us</h6>
<a class="social-follow__item social-follow__item--facebook" href="https://www.facebook.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-facebook-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.facebook</span></a>
<a class="social-follow__item social-follow__item--twitter" href="https://twitter.com/ICC" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-twitter-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.twitter</span>
</a>
<a class="social-follow__item social-follow__item--instagram" href="https://www.instagram.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-instagram-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.instagram</span>
</a>
<a class="social-follow__item social-follow__item--youtube" href="https://www.youtube.com/user/CricketICC?cbrd=1" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-youtube-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.youtube</span>
</a>
</nav>
<svg aria-hidden="true" focusable="false" style="width:0;height:0;position:absolute;">
<lineargradient gradienttransform="rotate(45)" id="instagram" x2="1" y2="1">
<stop offset="0%" stop-color="#4c68d6"></stop>
<stop offset="33%" stop-color="#b22d98"></stop>
<stop offset="65%" stop-color="#e85a50"></stop>
<stop offset="100%" stop-color="#fbbb59"></stop>
</lineargradient>
</svg>
</div>
</li>
</ul>
</li>
<li class="linked-list__item no-border u-show-desktop">
<span class="linked-list__title">Explore ICC</span>
</li>
<li class="linked-list__item no-border theme theme-t20wc">
<a class="linked-list__link" href="https://t20worldcup.com">
T20 World Cup
<svg aria-hidden="true" class="icon external-link">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-external-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</a>
</li>
<li class="linked-list__item no-border theme theme-wcwc">
<a class="linked-list__link" href="https://cricketworldcup.com">
Womens Cricket World Cup
<svg aria-hidden="true" class="icon external-link">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-external-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</a>
</li>
<li class="linked-list__item linked-list__item--promo u-show-desktop">
<section class="app-promo">
<div class="app-promo__top">
<span class="app-promo__icon icn icn-app-icon"></span>
<span class="app-promo__text">Download the official ICC App today</span>
</div>
<div class="app-promo__bottom">
<a class="app-promo__cta icn icn-apple-badge" href="https://itunes.apple.com/gb/app/icc-world-twenty20-india-2016/id956440606?mt=8" target="_blank"></a>
<a class="app-promo__cta icn icn-android-badge" href="https://play.google.com/store/apps/details?id=com.pl.cwc_2015&hl=en_GB" target="_blank"></a>
</div>
</section>
</li>
<li class="linked-list__item linked-list__item--social u-show-desktop">
<div class="main-navigation__social-container">
<nav class="social-follow">
<h6 class="social-follow__title">Follow Us</h6>
<a class="social-follow__item social-follow__item--facebook" href="https://www.facebook.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-facebook-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.facebook</span></a>
<a class="social-follow__item social-follow__item--twitter" href="https://twitter.com/ICC" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-twitter-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.twitter</span>
</a>
<a class="social-follow__item social-follow__item--instagram" href="https://www.instagram.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-instagram-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.instagram</span>
</a>
<a class="social-follow__item social-follow__item--youtube" href="https://www.youtube.com/user/CricketICC?cbrd=1" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-youtube-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.youtube</span>
</a>
</nav>
<svg aria-hidden="true" focusable="false" style="width:0;height:0;position:absolute;">
<lineargradient gradienttransform="rotate(45)" id="instagram" x2="1" y2="1">
<stop offset="0%" stop-color="#4c68d6"></stop>
<stop offset="33%" stop-color="#b22d98"></stop>
<stop offset="65%" stop-color="#e85a50"></stop>
<stop offset="100%" stop-color="#fbbb59"></stop>
</lineargradient>
</svg>
</div>
</li>
</ul>
</nav>
</div>
</section>
<!-- sidebar menu -->
<div class="sidebar-nav js-navigation-sidebar u-hide-desktop" data-widget="sidebar-navigation">
<header class="sidebar-nav__header">
<span class="sidebar-nav__title">
More
</span>
<span class="sidebar-nav__close js-sidebar-btn">
<svg aria-hidden="true" class="icon sidebar-nav__close-icn">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-cross" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</span>
</header>
<div class="sidebar-nav__menu" tabindex="0">
<ul>
<li class="sidebar-nav__item" data-label="Crictos">
<a class="sidebar-nav__link sidebar-nav__link--in-sidebar-nav" href="https://fancraze.com/">
Crictos
<svg aria-hidden="true" class="icon external-link">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-external-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</a>
</li>
<li class="sidebar-nav__item" data-label="ICC Awards">
<a class="sidebar-nav__link sidebar-nav__link--in-sidebar-nav" href="/awards/overview">
ICC Awards
</a>
</li>
<li class="sidebar-nav__item" data-label="Hall of Fame">
<a class="sidebar-nav__link sidebar-nav__link--in-sidebar-nav" href="/hall-of-fame">
Hall of Fame
</a>
</li>
<li class="sidebar-nav__item" data-label="criiio">
<a class="sidebar-nav__link sidebar-nav__link--in-sidebar-nav" href="https://www.criiio.com/">
criiio
<svg aria-hidden="true" class="icon external-link">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-external-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</a>
</li>
<li class="sidebar-nav__item" data-label="100% Cricket">
<a class="sidebar-nav__link sidebar-nav__link--in-sidebar-nav" href="/100percentcricket">
100% Cricket
</a>
</li>
<li class="sidebar-nav__item" data-label="Official ICC App">
<a class="sidebar-nav__link sidebar-nav__link--in-sidebar-nav" href="/mobile">
Official ICC App
</a>
</li>
<li class="sidebar-nav__item" data-label="shop">
<a class="sidebar-nav__link sidebar-nav__link--in-sidebar-nav" href="https://www.icc-cricket.com/shop/">
shop
</a>
</li>
<li class="sidebar-nav__item" data-label="About ICC">
<a class="sidebar-nav__link sidebar-nav__link--in-sidebar-nav" href="/about">
About ICC
</a>
</li>
<li class="sidebar-nav__item" data-label="Media Releases">
<a class="sidebar-nav__link sidebar-nav__link--in-sidebar-nav" href="/media-releases">
Media Releases
</a>
</li>
<li class="sidebar-nav__item" data-label="Photos">
<a class="sidebar-nav__link sidebar-nav__link--in-sidebar-nav" href="/photos">
Photos
</a>
</li>
<li class="sidebar-nav__item" data-label="Commercial Opportunities">
<a class="sidebar-nav__link sidebar-nav__link--in-sidebar-nav" href="/news/318971">
Commercial Opportunities
</a>
</li>
</ul>
</div>
</div>
</header>
</div>
<main class="js-body-content" id="main-content" tabindex="0">
<button class="scroll-to-top" data-script="icc_scroll-to-top" data-widget="scroll-to-top">
<svg class="scroll-to-top__icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-up-arrow" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<div aria-hidden="true" class="scroll-to-top__mask">
<svg class="scroll-to-top__icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-up-arrow" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</div>
<span class="u-screen-reader">Scroll to Top</span>
</button>
<header class="page-header page-header--rankings">
<div class="wrapper">
<div class="col-12">
<div class="page-header__banner">
<a class="page-logo" data-tracking-url="https://track.adform.net/adfserve/?bn=20093364;srctype=4;ord=%%ADFRND%%" data-widget="impression-tracker" href="http://track.adform.net/C/?bn=20093364" target="_blank">
<span class="icn icn-logo-mrf-rankings"></span>
</a>
</div>
<div class="share share-- share--vertical" data-widget="share">
<div class="share__container">
<div class="share__btn js-share-btn">
<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-share" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg>
<div class="share__title">Share</div>
</div>
<ul class="share__list">
<li class="share__item share__item--facebook js-social-option" data-social-service="facebook" role="button" tabindex="0">
<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-facebook" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg>
</li>
<li class="share__item share__item--twitter js-social-option" data-social-service="twitter" role="button" tabindex="0">
<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-twitter" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg>
</li>
<li class="share__item share__item--messenger u-show-tablet js-social-option" data-social-service="facebookMessenger" role="buttn" tabindex="0">
<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-facebook-messenger" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg>
</li>
<li class="share__item share__item--whatsapp u-show-tablet js-social-option" data-social-service="whatsapp" role="button" tabindex="0">
<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-whatsapp" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg>
</li>
<li class="share__item share__item--url u-hide-tablet js-copy-button" role="button" tabindex="0">
<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-url" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg>
<div class="share__copy-message js-copy-message">URL Copied</div>
</li>
</ul>
</div>
</div>
</div>
</div>
</header>
<div class="l-sticky-side-nav">
<div class="l-sticky-side-nav__nav">
<div class="rankings-menu" data-script="icc_rankings-menu" data-widget="rankings-menu">
<div class="drop-down-tablet js-drop-down">
<div class="drop-down__clickzone js-drop-down-trigger" role="button" tabindex="0"></div>
<div class="drop-down__label">
Women's
</div>
<div class="drop-down__current">
Team Rankings
<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-caret-down" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg>
</div>
<div class="drop-down__dropdown-list js-drop-down-options">
<div class="rankings-menu__tab-container u-hide-tablet">
<nav class="content-tabs">
<ul class="block-list-2 u-no-font-size" role="tablist">
<li class="u-no-padding u-no-margin">
<a class="content-tabs__tab" href="/rankings/mens/overview">Men's</a>
</li>
<li class="u-no-padding u-no-margin">
<a class="content-tabs__tab content-tabs__tab--active" href="/rankings/womens/overview">Women's</a>
</li>
</ul>
</nav>
</div>
<div class="tab-content">
<h3 class="rankings-menu__title">Men's</h3>
<ul class="rankings-menu__list">
<li class="rankings-menu__item">
<a class="rankings-menu__link" href="/rankings/mens/overview">Overview<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg></a>
</li>
<li class="rankings-menu__item">
<a class="rankings-menu__link" href="/rankings/mens/team-rankings">Team Rankings<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg></a>
</li>
<li class="rankings-menu__item">
<a class="rankings-menu__link" href="/rankings/mens/player-rankings">Player Rankings<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg></a>
</li>
<li class="rankings-menu__item">
<a class="rankings-menu__link" href="/rankings/mens/player-rankings/comparison">Player Comparison<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg></a>
</li>
<li class="rankings-menu__item">
<a class="rankings-menu__link" href="/rankings/mens/rankings-predictor/">Team Rankings Predictor<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg></a>
</li>
<li class="rankings-menu__item">
<a class="rankings-menu__link" href="/rankings/about">About the Rankings<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg></a>
</li>
<li class="rankings-menu__item">
<a class="rankings-menu__link" href="/rankings/faqs">Player Rankings FAQs<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg></a>
</li>
</ul>
</div>
<div class="active tab-content">
<h3 class="rankings-menu__title">Women's</h3>
<ul class="rankings-menu__list">
<li class="rankings-menu__item rankings-menu__item--user-selection js-team-btn">
<a class="rankings-menu__link js-fav-team-link" href="#">Select your team</a>
<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg>
<div class="rankings-menu__notch js-notch"></div>
<svg class="rankings-menu__notch-icon icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-star" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg>
<li class="rankings-menu__item">
<a class="rankings-menu__link" href="/rankings/womens/overview">Overview<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg></a>
</li>
<li class="rankings-menu__item">
<a class="rankings-menu__link" href="/rankings/womens/team-rankings">Team Rankings<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg></a>
</li>
<li class="rankings-menu__item">
<a class="rankings-menu__link" href="/rankings/womens/player-rankings">Player Rankings<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg></a>
</li>
<li class="rankings-menu__item">
<a class="rankings-menu__link" href="/rankings/about">About the Rankings<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg></a>
</li>
<li class="rankings-menu__item">
<a class="rankings-menu__link" href="/rankings/faqs">Player Rankings FAQs<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg></a>
</li>
<li class="rankings-menu__item">
<a class="rankings-menu__link" href="/rankings/womens-t20i-faq">T20I Team Rankings FAQs<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg></a>
</li>
</li></ul>
</div>
</div>
</div>
</div>
<div class="rankings-menu" data-script="icc_rankings-menu" data-widget="rankings-menu">
<div class="drop-down-tablet js-drop-down">
<div class="drop-down__clickzone js-drop-down-trigger" role="button" tabindex="0"></div>
<div class="drop-down__label">
Women's
</div>
<div class="drop-down__current">
Team Rankings
<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-caret-down" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg>
</div>
<div class="drop-down__dropdown-list js-drop-down-options">
<div class="rankings-menu__tab-container u-hide-tablet">
<nav class="content-tabs">
<ul class="block-list-2 u-no-font-size" role="tablist">
<li class="u-no-padding u-no-margin">
<a class="content-tabs__tab" href="/rankings/mens/overview">Men's</a>
</li>
<li class="u-no-padding u-no-margin">
<a class="content-tabs__tab content-tabs__tab--active" href="/rankings/womens/overview">Women's</a>
</li>
</ul>
</nav>
</div>
<div class="tab-content">
<h3 class="rankings-menu__title">Men's</h3>
<ul class="rankings-menu__list">
<li class="rankings-menu__item">
<a class="rankings-menu__link" href="/rankings/mens/overview">Overview<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg></a>
</li>
<li class="rankings-menu__item">
<a class="rankings-menu__link" href="/rankings/mens/team-rankings">Team Rankings<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg></a>
</li>
<li class="rankings-menu__item">
<a class="rankings-menu__link" href="/rankings/mens/player-rankings">Player Rankings<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg></a>
</li>
<li class="rankings-menu__item">
<a class="rankings-menu__link" href="/rankings/mens/player-rankings/comparison">Player Comparison<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg></a>
</li>
<li class="rankings-menu__item">
<a class="rankings-menu__link" href="/rankings/mens/rankings-predictor/">Team Rankings Predictor<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg></a>
</li>
<li class="rankings-menu__item">
<a class="rankings-menu__link" href="/rankings/about">About the Rankings<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg></a>
</li>
<li class="rankings-menu__item">
<a class="rankings-menu__link" href="/rankings/faqs">Player Rankings FAQs<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg></a>
</li>
</ul>
</div>
<div class="active tab-content">
<h3 class="rankings-menu__title">Women's</h3>
<ul class="rankings-menu__list">
<li class="rankings-menu__item rankings-menu__item--user-selection js-team-btn">
<a class="rankings-menu__link js-fav-team-link" href="#">Select your team</a>
<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg>
<div class="rankings-menu__notch js-notch"></div>
<svg class="rankings-menu__notch-icon icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-star" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg>
<li class="rankings-menu__item">
<a class="rankings-menu__link" href="/rankings/womens/overview">Overview<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg></a>
</li>
<li class="rankings-menu__item">
<a class="rankings-menu__link" href="/rankings/womens/team-rankings">Team Rankings<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg></a>
</li>
<li class="rankings-menu__item">
<a class="rankings-menu__link" href="/rankings/womens/player-rankings">Player Rankings<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg></a>
</li>
<li class="rankings-menu__item">
<a class="rankings-menu__link" href="/rankings/about">About the Rankings<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg></a>
</li>
<li class="rankings-menu__item">
<a class="rankings-menu__link" href="/rankings/faqs">Player Rankings FAQs<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg></a>
</li>
<li class="rankings-menu__item">
<a class="rankings-menu__link" href="/rankings/womens-t20i-faq">T20I Team Rankings FAQs<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg></a>
</li>
</li></ul>
</div>
</div>
</div>
</div>
</div>
<div class="l-sticky-side-nav__content">
<section class="ranking-format-menu">
<div class="wrapper wrapper--sticky">
<div class="col-12">
<div class="content-tabs">
<ul class="inline-list">
<li class="ranking-format-menu__item">
<a class="content-tabs__tab content-tabs__tab--active" href="odi">ODI</a>
</li>
<li class="ranking-format-menu__item">
<a class="content-tabs__tab" href="t20i">T20I</a>
</li>
</ul>
</div>
</div>
</div>
</section>
<div class="wrapper wrapper--sticky">
<div class="col-12">
<section class="widget rankings-widget" data-script="icc_rankings" data-widget="full-team-rankings">
<div class="rankings-block__title-container">
<div class="rankings-block__type t-wodi">wodi</div>
<h4>Women's ODI Rankings</h4>
</div>
<div class="rankings-block__meta-container">
<div class="rankings-table__last-updated">Last updated (GMT) - 25 Sep 2022</div>
<div class="rankings-table__last-updated">Developed by David Kendix</div>
</div>
<div class="rankings-block__container full rankings-table">
<table class="table">
<thead>
<tr class="table-head">
<th class="table-head__cell u-text-right">Pos</th>
<th class="table-head__cell rankings-table__team">
<span class="u-hide-mobile">Team</span>
<span class="u-show-mobile">T</span>
</th>
<th class="table-head__cell u-center-text">
<span class="u-hide-mobile">Matches</span>
<span class="u-show-mobile">M</span>
</th>
<th class="table-head__cell u-center-text">
<span class="u-hide-mobile">Points</span>
<span class="u-show-mobile">P</span>
</th>
<th class="table-head__cell u-text-right rating">
<span class="u-hide-mobile">Rating</span>
<span class="u-show-mobile">R</span>
</th>
</tr>
</thead>
<tbody>
<tr class="rankings-block__banner">
<td class="rankings-block__banner--pos">1</td>
<td class="rankings-block__banner--team-name">
<span class="flag-30 rankings-block__banner--flag AUS"></span>
<span class="u-hide-phablet">Australia</span>
<span class="u-show-phablet">AUS</span>
</td>
<td class="rankings-block__banner--matches">29</td>
<td class="rankings-block__banner--points">4,837</td>
<td class="rankings-block__banner--rating u-text-right">
167
<span class="circle-branding circle-branding--top"></span>
<span class="circle-branding circle-branding--bottom"></span>
</td>
</tr>
<tr class="table-body" data-team-id="25">
<td class="table-body__cell table-body__cell--position u-text-right">2</td>
<td class="table-body__cell rankings-table__team">
<span class="flag-15 table-body_logo SA"></span>
<span class="u-hide-phablet">South Africa</span>
<span class="u-show-phablet">SA</span>
</td>
<td class="table-body__cell u-center-text">35</td>
<td class="table-body__cell u-center-text">4,157</td>
<td class="table-body__cell u-text-right rating">119</td>
</tr>
<tr class="table-body" data-team-id="28">
<td class="table-body__cell table-body__cell--position u-text-right">3</td>
<td class="table-body__cell rankings-table__team">
<span class="flag-15 table-body_logo ENG"></span>
<span class="u-hide-phablet">England</span>
<span class="u-show-phablet">ENG</span>
</td>
<td class="table-body__cell u-center-text">36</td>
<td class="table-body__cell u-center-text">4,205</td>
<td class="table-body__cell u-text-right rating">117</td>
</tr>
<tr class="table-body" data-team-id="31">
<td class="table-body__cell table-body__cell--position u-text-right">4</td>
<td class="table-body__cell rankings-table__team">
<span class="flag-15 table-body_logo IND"></span>
<span class="u-hide-phablet">India</span>
<span class="u-show-phablet">IND</span>
</td>
<td class="table-body__cell u-center-text">35</td>
<td class="table-body__cell u-center-text">3,732</td>
<td class="table-body__cell u-text-right rating">107</td>
</tr>
<tr class="table-body" data-team-id="26">
<td class="table-body__cell table-body__cell--position u-text-right">5</td>
<td class="table-body__cell rankings-table__team">
<span class="flag-15 table-body_logo NZ"></span>
<span class="u-hide-phablet">New Zealand</span>
<span class="u-show-phablet">NZ</span>
</td>
<td class="table-body__cell u-center-text">33</td>
<td class="table-body__cell u-center-text">3,302</td>
<td class="table-body__cell u-text-right rating">100</td>
</tr>
<tr class="table-body" data-team-id="27">
<td class="table-body__cell table-body__cell--position u-text-right">6</td>
<td class="table-body__cell rankings-table__team">
<span class="flag-15 table-body_logo WI"></span>
<span class="u-hide-phablet">West Indies</span>
<span class="u-show-phablet">WI</span>
</td>
<td class="table-body__cell u-center-text">32</td>
<td class="table-body__cell u-center-text">2,864</td>
<td class="table-body__cell u-text-right rating">90</td>
</tr>
<tr class="table-body" data-team-id="170">
<td class="table-body__cell table-body__cell--position u-text-right">7</td>
<td class="table-body__cell rankings-table__team">
<span class="flag-15 table-body_logo BAN"></span>
<span class="u-hide-phablet">Bangladesh</span>
<span class="u-show-phablet">BAN</span>
</td>
<td class="table-body__cell u-center-text">12</td>
<td class="table-body__cell u-center-text">930</td>
<td class="table-body__cell u-text-right rating">78</td>
</tr>
<tr class="table-body" data-team-id="29">
<td class="table-body__cell table-body__cell--position u-text-right">8</td>
<td class="table-body__cell rankings-table__team">
<span class="flag-15 table-body_logo PAK"></span>
<span class="u-hide-phablet">Pakistan</span>
<span class="u-show-phablet">PAK</span>
</td>
<td class="table-body__cell u-center-text">30</td>
<td class="table-body__cell u-center-text">1,962</td>
<td class="table-body__cell u-text-right rating">65</td>
</tr>
<tr class="table-body" data-team-id="162">
<td class="table-body__cell table-body__cell--position u-text-right">9</td>
<td class="table-body__cell rankings-table__team">
<span class="flag-15 table-body_logo IRE"></span>
<span class="u-hide-phablet">Ireland</span>
<span class="u-show-phablet">IRE</span>
</td>
<td class="table-body__cell u-center-text">11</td>
<td class="table-body__cell u-center-text">516</td>
<td class="table-body__cell u-text-right rating">47</td>
</tr>
<tr class="table-body" data-team-id="24">
<td class="table-body__cell table-body__cell--position u-text-right">10</td>
<td class="table-body__cell rankings-table__team">
<span class="flag-15 table-body_logo SL"></span>
<span class="u-hide-phablet">Sri Lanka</span>
<span class="u-show-phablet">SL</span>
</td>
<td class="table-body__cell u-center-text">11</td>
<td class="table-body__cell u-center-text">495</td>
<td class="table-body__cell u-text-right rating">45</td>
</tr>
<tr class="table-body" data-team-id="165">
<td class="table-body__cell table-body__cell--position u-text-right">11</td>
<td class="table-body__cell rankings-table__team">
<span class="flag-15 table-body_logo ZIM"></span>
<span class="u-hide-phablet">Zimbabwe</span>
<span class="u-show-phablet">ZIM</span>
</td>
<td class="table-body__cell u-center-text">8</td>
<td class="table-body__cell u-center-text">0</td>
<td class="table-body__cell u-text-right rating">0</td>
</tr>
</tbody>
</table>
</div>
</section>
<div class="promo promo--full">
<div class="promo__image-container">
<picture class="promo__image">
<source media="(max-width: 500px)" srcset="https://resources.pulse.icc-cricket.com/ICC/photo/2017/01/31/cc28da71-3cef-4f36-814f-7a2d456a3a6e/Virat_Kohli_Mace.jpg, https://resources.pulse.icc-cricket.com/ICC/photo/2017/01/31/938172d1-7b2b-4742-abba-8f19c0a7e95c/Virat_Kohli_Mace.jpg 2x"/>
<source srcset="https://resources.pulse.icc-cricket.com/ICC/photo/2017/01/31/2cdbca5a-822a-411e-8447-ea198dbf3419/Virat_Kohli_Mace.jpg, https://resources.pulse.icc-cricket.com/ICC/photo/2017/01/31/fb65dc99-3f7d-4954-80ab-ed036d465246/Virat_Kohli_Mace.jpg 2x"/>
<img alt="Play the MRF Tyres ICC Rankings Predictor" class="poly-object-fit" src="https://resources.pulse.icc-cricket.com/ICC/photo/2017/01/31/2cdbca5a-822a-411e-8447-ea198dbf3419/Virat_Kohli_Mace.jpg">
</img></picture>
</div>
<div class="promo__text-container promo__text-container--with-image">
<h3 class="promo__title">Play the MRF Tyres ICC Rankings Predictor</h3>
<p class="promo__text">Predict the outcome of upcoming Test cricket fixtures and see how the MRF Tyres ICC Rankings change.</p>
<a class="promo__cta btn" href="/rankings/mens/rankings-predictor/test">Play Now</a>
</div>
</div>
</div>
</div>
</div>
</div>
</main>
<footer class="footer" role="contentinfo">
<section class="partners">
<div class="partners__top-level">
<section class="partners__container">
<div class="partners__list partners__list--large">
<div class="partners__item">
<a aria-label="Nissan" class="partners__link" href="http://track.adform.net/C/?bn=18235072" target="_blank" title="Nissan">
<img alt="Nissan" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/06/30/ceabcea6-36b3-40c5-ab00-7ad8b66ecd73/nissan-2.png?width=142&height=46"/>
</a>
</div>
<div class="partners__item">
<a aria-label="Oppo" class="partners__link" href="http://track.adform.net/C/?bn=18236015" target="_blank" title="Oppo">
<img alt="Oppo" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/06/30/ea209fd5-065d-47aa-8ba7-fe70a3bcf8aa/Frame-233.png?width=142&height=46"/>
</a>
</div>
<div class="partners__item">
<a aria-label="MRF Tyres" class="partners__link" href="http://track.adform.net/C/?bn=18235782" title="MRF Tyres">
<img alt="MRF Tyres" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/06/30/c1afea15-4875-4cba-9710-547729daa841/Frame-235.png?width=142&height=46"/>
</a>
</div>
<div class="partners__item">
<a aria-label="Booking" class="partners__link" href="https://www.booking.com/" target="_blank" title="Booking">
<img alt="Booking" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/06/30/8bb6e96d-2b69-4d8e-acc0-568602baba2d/Frame-234.png?width=142&height=46"/>
</a>
</div>
<div class="partners__item">
<a aria-label="BYJU" class="partners__link" href="https://byjus.com/" target="_blank" title="BYJU">
<img alt="BYJU" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/06/30/9b3ea6a2-25f4-478e-b8aa-0e1b7d3d0e2a/Frame-237.png?width=142&height=46"/>
</a>
</div>
<div class="partners__item">
<a aria-label="Emirates" class="partners__link" href="http://track.adform.net/C/?bn=18236184" title="Emirates">
<img alt="Emirates" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/06/30/d9fb726d-2cbd-41c8-9aaf-bd94f37a8e4a/Frame-236.png?width=142&height=46"/>
</a>
</div>
</div>
</section>
</div>
<div class="partners__block">
<section class="partners__container">
<div class="partners__list partners__list--medium">
<div class="partners__item">
<a aria-label="Bira 91" class="partners__link" href="https://www.bira91.com/" target="_blank" title="Bira 91">
<img alt="Bira 91" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/06/30/587180d3-1347-4152-93ab-318460743d55/Frame-239.png?width=95&height=31"/>
</a>
</div>
<div class="partners__item">
<a aria-label="Eatfit" class="partners__link" href="https://www.eatfit.in/" target="_blank" title="Eatfit">
<img alt="Eatfit" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/07/04/674c634d-7f3c-4dfc-989c-5d72fed70d79/eatfit.png?width=95&height=31"/>
</a>
</div>
<div class="partners__item">
<a aria-label="Coca Cola" class="partners__link" href="https://www.coca-colaindia.com/brands/thums-up" title="Coca Cola">
<img alt="Coca Cola" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/08/24/8f5e6ad2-0dfe-4e99-896c-20b034763dec/TU-Taste-The-Thunder-Logo.png?width=95&height=31"/>
</a>
</div>
<div class="partners__item">
<a aria-label="Upstox" class="partners__link" href="https://upstox.com/" target="_blank" title="Upstox">
<img alt="Upstox" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/06/30/70fab62f-38e2-47bb-8a3b-ffa437b1c6ac/Frame-240.png?width=95&height=31"/>
</a>
</div>
<div class="partners__item">
<a aria-label="PostPe" class="partners__link" href="https://ftx.com/" target="_blank" title="PostPe">
<img alt="PostPe" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/06/30/4c2e8d25-2744-4a26-9345-94cfafd132d3/Frame-243.png?width=95&height=31"/>
</a>
</div>
<div class="partners__item">
<a aria-label="FTX" class="partners__link" href="https://ftx.com/" target="_blank" title="FTX">
<img alt="FTX" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/06/30/8055a53b-e8d8-4622-9d0d-a833d86bff58/Frame-242.png?width=95&height=31"/>
</a>
</div>
<div class="partners__item">
<a aria-label="NIUM" class="partners__link" href="https://www.nium.com/" target="_blank" title="NIUM">
<img alt="NIUM" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/06/30/8eb1e98b-a9dc-4db8-84b0-4635582f96b0/nium.png?width=95&height=31"/>
</a>
</div>
</div>
</section>
<section class="partners__container">
<div class="partners__list partners__list--medium">
<div class="partners__item">
<a aria-label="Royal Stag" class="partners__link" href="https://www.pernod-ricard.com/en/brands/our-brands/royal-stag/" target="_blank" title="Royal Stag">
<img alt="Royal Stag" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/06/30/146eb588-7d36-4825-b06a-72a2533af1f0/Frame-250.png?width=95&height=31"/>
</a>
</div>
<div class="partners__item">
<a aria-label="Fantasy Cricket" class="partners__link" href="https://www.dream11.com/fantasy-cricket" target="_blank" title="Fantasy Cricket">
<img alt="Fantasy Cricket" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/06/30/d08b4b92-a224-4484-8269-22184d633d74/Frame-248.png?width=95&height=31"/>
</a>
</div>
<div class="partners__item">
<a aria-label="Jacobs Creek" class="partners__link" href="https://www.jacobscreek.com/en-gb" target="_blank" title="Jacobs Creek">
<img alt="Jacobs Creek" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/06/30/f44c1356-91b7-49c2-bb2a-8db9cd20133d/Jacobs-.png?width=95&height=31"/>
</a>
</div>
<div class="partners__item">
<a aria-label="FanCraze" class="partners__link" href="https://www.fancraze.com" title="FanCraze">
<img alt="FanCraze" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/06/30/51c3576a-0e91-4246-8d36-85fc5037cec6/Frame-249.png?width=95&height=31"/>
</a>
</div>
</div>
</section>
</div>
<div class="partners__block partners__block--inline">
<section class="partners__container">
<h3 class="partners__title">BROADCAST PARTNER</h3>
<div class="partners__list partners__list--large">
<div class="partners__item">
<a aria-label="Star Sports" class="partners__link" href="http://track.adform.net/C/?bn=18238489" target="_blank" title="Star Sports">
<img alt="Star Sports" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/06/30/6becb07e-9e85-4221-a4cf-43d1b58c5e46/star-sports.png?width=142&height=46"/>
</a>
</div>
</div>
</section>
<section class="partners__container">
<h3 class="partners__title">SOCIAL RESPONSIBILITY</h3>
<div class="partners__list partners__list--large">
<div class="partners__item">
<a aria-label="Cricket for Good" class="partners__link" href="https://www.icc-cricket.com/about/the-icc/cricket-for-good" target="_blank" title="Cricket for Good">
<img alt="Cricket for Good" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/06/30/66d0bd38-4492-4742-ae2f-a5a2f3ea7032/cricket4good.png?width=142&height=46"/>
</a>
</div>
</div>
</section>
</div>
</section>
<div class="footer__app-promo u-show-tablet">
<section class="app-promo">
<div class="app-promo__top">
<span class="app-promo__icon icn icn-app-icon"></span>
<span class="app-promo__text">Download the official ICC App today</span>
</div>
<div class="app-promo__bottom">
<a class="app-promo__cta icn icn-apple-badge" href="https://itunes.apple.com/gb/app/icc-world-twenty20-india-2016/id956440606?mt=8" target="_blank"></a>
<a class="app-promo__cta icn icn-android-badge" href="https://play.google.com/store/apps/details?id=com.pl.cwc_2015&hl=en_GB" target="_blank"></a>
</div>
</section>
</div>
<div class="footer__main">
<nav class="footer__links">
<a class="footer__link" href="http://www.icc-cricket.com/about/the-icc/legal-notices/website-terms-of-use">
Legal Notice
</a>
<a class="footer__link" href="http://www.icc-cricket.com/about/the-icc/legal-notices/privacy-policy">
Privacy Policy
</a>
</nav>
<div class="footer__social">
<nav class="social-follow">
<h6 class="social-follow__title">Follow Us</h6>
<a class="social-follow__item social-follow__item--facebook" href="https://www.facebook.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-facebook-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.facebook</span></a>
<a class="social-follow__item social-follow__item--twitter" href="https://twitter.com/ICC" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-twitter-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.twitter</span>
</a>
<a class="social-follow__item social-follow__item--instagram" href="https://www.instagram.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-instagram-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.instagram</span>
</a>
<a class="social-follow__item social-follow__item--youtube" href="https://www.youtube.com/user/CricketICC?cbrd=1" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-youtube-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.youtube</span>
</a>
</nav>
<svg aria-hidden="true" focusable="false" style="width:0;height:0;position:absolute;">
<lineargradient gradienttransform="rotate(45)" id="instagram" x2="1" y2="1">
<stop offset="0%" stop-color="#4c68d6"></stop>
<stop offset="33%" stop-color="#b22d98"></stop>
<stop offset="65%" stop-color="#e85a50"></stop>
<stop offset="100%" stop-color="#fbbb59"></stop>
</lineargradient>
</svg>
</div>
</div>
<div class="footer__corporate">
<span class="footer__copyright">2022 © International Cricket Council FZ LLC</span>
</div>
</footer>
<script src="/resources/prod/v8.28.1/scripts/vendors.min.js"></script>
<script src="/resources/prod/v8.28.1/scripts/client.min.js"></script>
<script src="https://sso.fanaccount.icc-cricket.com/auth/js/keycloak.js"></script>
<!--[if IE]> -->
<script type="text/javascript">
svg4everybody();
</script>
<!-- <![endif]-->
</body>
</html>
Top_team=soup.find_all('span',class_="u-hide-phablet")[0:10]
Top_team
[<span class="u-hide-phablet">Australia</span>, <span class="u-hide-phablet">South Africa</span>, <span class="u-hide-phablet">England</span>, <span class="u-hide-phablet">India</span>, <span class="u-hide-phablet">New Zealand</span>, <span class="u-hide-phablet">West Indies</span>, <span class="u-hide-phablet">Bangladesh</span>, <span class="u-hide-phablet">Pakistan</span>, <span class="u-hide-phablet">Ireland</span>, <span class="u-hide-phablet">Sri Lanka</span>]
Match=soup.find_all('td',class_="rankings-block__banner--matches")
Match
point=soup.find_all('td',class_="rankings-block__banner--points")
point
Matches_Points=soup.find_all('td',class_="table-body__cell u-center-text")
Matches_Points
print(Match+point+Matches_Points)
print()
[<td class="rankings-block__banner--matches">29</td>, <td class="rankings-block__banner--points">4,837</td>, <td class="table-body__cell u-center-text">35</td>, <td class="table-body__cell u-center-text">4,157</td>, <td class="table-body__cell u-center-text">36</td>, <td class="table-body__cell u-center-text">4,205</td>, <td class="table-body__cell u-center-text">35</td>, <td class="table-body__cell u-center-text">3,732</td>, <td class="table-body__cell u-center-text">33</td>, <td class="table-body__cell u-center-text">3,302</td>, <td class="table-body__cell u-center-text">32</td>, <td class="table-body__cell u-center-text">2,864</td>, <td class="table-body__cell u-center-text">12</td>, <td class="table-body__cell u-center-text">930</td>, <td class="table-body__cell u-center-text">30</td>, <td class="table-body__cell u-center-text">1,962</td>, <td class="table-body__cell u-center-text">11</td>, <td class="table-body__cell u-center-text">516</td>, <td class="table-body__cell u-center-text">11</td>, <td class="table-body__cell u-center-text">495</td>, <td class="table-body__cell u-center-text">8</td>, <td class="table-body__cell u-center-text">0</td>]
Rating=soup.find_all('td',class_='rankings-block__banner--rating u-text-right')
Rating
Ratings=soup.find_all('td',class_='table-body__cell u-text-right rating')
Ratings
print(Rating+Ratings)
print()
[<td class="rankings-block__banner--rating u-text-right">
167
<span class="circle-branding circle-branding--top"></span>
<span class="circle-branding circle-branding--bottom"></span>
</td>, <td class="table-body__cell u-text-right rating">119</td>, <td class="table-body__cell u-text-right rating">117</td>, <td class="table-body__cell u-text-right rating">107</td>, <td class="table-body__cell u-text-right rating">100</td>, <td class="table-body__cell u-text-right rating">90</td>, <td class="table-body__cell u-text-right rating">78</td>, <td class="table-body__cell u-text-right rating">65</td>, <td class="table-body__cell u-text-right rating">47</td>, <td class="table-body__cell u-text-right rating">45</td>, <td class="table-body__cell u-text-right rating">0</td>]
b) Top 10 women’s ODI Batting players along with the records of their team and rating.
url=requests.get("https://www.icc-cricket.com/rankings/womens/player-rankings/odi/batting")
url
<Response [200]>
soup=BeautifulSoup(url.text,'html.parser')
soup
<!DOCTYPE html>
<html lang="en">
<head>
<meta content="ICC Women's ODI Batting | Player Rankings | ICC" name="twitter:title"/>
<meta content="website" property="og:type"/>
<meta content="summary_large_image" property="twitter:card"/>
<meta content="Official ICC Cricket website - live matches, scores, news, highlights, commentary, rankings, videos and fixtures from the International Cricket Council." name="description"/>
<meta content="@icc" property="twitter:site"/>
<meta content="Official ICC Cricket website - live matches, scores, news, highlights, commentary, rankings, videos and fixtures from the International Cricket Council." name="twitter:description"/>
<meta content="https://www.icc-cricket.com/resources/ver/i/elements/default-thumbnail.jpg" name="twitter:image"/>
<meta content="ICC Women's ODI Batting | Player Rankings | ICC" property="og:title"/>
<meta content="https://www.icc-cricket.com/resources/ver/i/elements/default-thumbnail.jpg" property="og:image"/>
<title>ICC Women's ODI Batting | Player Rankings | ICC</title>
<meta content="Official ICC Cricket website - live matches, scores, news, highlights, commentary, rankings, videos and fixtures from the International Cricket Council." property="og:description"/>
<!-- Designed and built by Pulselive - www.pulselive.com -->
<script>
var dataLayer = [{
'user_language':'English',
'web_domain':'www.icc-cricket.com',
'page_type':'/rankings/womens/player-rankings/odi/batting'
}];
</script>
<!-- Google Tag Manager -->
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-T7DPH24');</script>
<!-- End Google Tag Manager -->
<script async="" src="https://securepubads.g.doubleclick.net/tag/js/gpt.js"></script>
<meta charset="utf-8"/>
<meta content="width=device-width, initial-scale=1" name="viewport"/>
<meta content="app-id=956440606" name="apple-itunes-app">
<link href="/resources/prod/v8.28.1/manifest.json" rel="manifest"/>
<link href="/resources/prod/v8.28.1/i/elements/favicon.ico" rel="shortcut icon">
<link href="https://plus.google.com/+ICC" rel="publisher"/>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebPage",
"headline": "",
"url": "https://www.icc-cricket.com/rankings/womens/player-rankings/odi/batting",
"creator": ["ICC"]
}
</script>
<title>International Cricket Council</title>
<!-- google platform library -->
<script async="" defer="" src="https://apis.google.com/js/api:client.js?onload=startApp"></script>
<script>
var startApp = function() {
gapi.load('auth2', function(){
// Retrieve the singleton for the GoogleAuth library and set up the client.
auth2 = gapi.auth2.init({
client_id: '844310787835-1rirg6e5plp2jou6v701br43iuo0lkcu.apps.googleusercontent.com'
// Request scopes in addition to 'profile' and 'email'
//scope: 'additional_scope'
});
});
};
</script>
<link href="https://fonts.googleapis.com/css?family=Hind+Siliguri:300,400,500,600" rel="stylesheet"/>
<!-- Polyfill service provided by the FT - https://github.com/Financial-Times/polyfill-service -->
<script src="https://cdn.polyfill.io/v2/polyfill.min.js?features=default,fetch"></script>
<link href="/resources/prod/v8.28.1/styles/screen.css" rel="stylesheet">
<script>
window.RESOURCE_VERSION = 'prod/v8.28.1';
</script>
</link></link></meta></head>
<body>
<!-- Google Tag Manager (noscript) -->
<noscript><iframe height="0" src="https://www.googletagmanager.com/ns.html?id=GTM-T7DPH24" style="display:none;visibility:hidden" width="0"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
<!--
Start of Floodlight Tag: Please do not removeActivity name of this tag: ICC Website - VisitationURL of the webpage where the tag is expected to be placed: This tag must be placed between the <body> and </body> tags, as close as possible to the opening tag. Creation Date: 10/01/2019
-->
<iframe frameborder="0" height="1" src="https://9282652.fls.doubleclick.net/activityi;src=9282652;type=iccre0;cat=iccwe0;u1=[user_language];u2=[user_country];u3=[page_type];u4=[web_domain];dc_lat=;dc_rdid=;tag_for_child_directed_treatment=;tfua=;npa=;ord=[SessionID]?" style="display:none" width="1"></iframe>
<!-- End of Floodlight Tag: Please do not remove -->
<script id="parsely-cfg" src="//cdn.parsely.com/keys/icc-cricket.com/p.js"></script>
<script>
window.fbAsyncInit = function() {
FB.init({
appId : 159513024983374,
autoLogAppEvents : true,
xfbml : true,
version : 'v3.0'
});
};
(function(d, s, id){
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) {return;}
js = d.createElement(s); js.id = id;
js.src = "https://connect.facebook.net/en_US/sdk.js";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));
</script>
<div class="user-account-overlay js-user-account-overlay"></div>
<section class="user-account js-user-account" data-script="sso_user-account" data-widget="user-account">
<div class="user-account__wrapper js-panel-account u-hide">
<div class="user-account__header">
<div class="user-account__close js-account-slider-close-btn" role="button">
<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-close" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg>
</div>
<div class="user-account__user-wrapper">
<div class="user-account__image">
<img alt="User Image" class="u-hide js-account-user-img" src="#"/>
</div>
<div class="user-account__user-info">
<p class="user-account__user-info__text js-account-user">Name Lastname</p>
<p class="user-account__user-info__profile js-profile-completion-info u-hide">
<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-alert" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg>
Profile <span class="js-profile-completion-percentage"></span>% Complete
</p>
</div>
</div>
<div class="user-account__tabs-nav js-tabs-wrapper"></div>
</div>
<div class="account-message js-account-message"></div>
<form autocomplete="off" id="user-account" name="user-account">
<div class="user-account__tab" data-ui-tab="My Account">
<div class="user-account__social-wrapper js-social-wrapper u-hide"></div>
<fieldset>
<div class="form-group-multiple">
<div class="form-group">
<label class="form-group__label" for="given_name">First name *</label>
<input class="form-group__element" id="given_name" maxlength="50" name="given_name" pattern="^[A-Za-z-\s]+$" required="" type="text"/>
<p class="js-error form-error"></p>
</div>
<div class="form-group">
<label class="form-group__label" for="family_name">Last name *</label>
<input class="form-group__element" id="family_name" maxlength="50" name="family_name" pattern="[A-Za-z-\s]+$" required="" type="text"/>
<p class="js-error form-error"></p>
</div>
</div>
<div class="form-group-multiple form-group-multiple--with-button">
<div class="form-group is-disabled js-change-email-input">
<label class="form-group__label" for="email">Email address *</label>
<input autocomplete="off" class="form-group__element" disabled="" id="email" maxlength="50" name="email" type="email"/>
<p class="js-error form-error"></p>
<p class="js-email-exists form-error form-error--email">Email address not available.</p>
</div>
<div class="form-group form-group--button">
<button class="form-btn form-btn--outlined js-change-email" novalidate="" type="button">Change Email</button>
</div>
</div>
<div class="form-group-multiple form-group-multiple--with-button js-account-password">
<div class="form-group is-disabled js-change-password-input">
<label class="form-group__label" for="password">Password *</label>
<input autocomplete="off" class="form-group__element" disabled="" id="password" name="password" placeholder="******" type="password"/>
<p class="js-error form-error"></p>
</div>
<div class="form-group form-group--button">
<button class="form-btn form-btn--outlined js-change-password" novalidate="" type="button">Change Password</button>
</div>
</div>
<div class="form-block form-block">
<div class="form-block__label form-block__label--dob">Date of Birth</div>
<div class="form-group-multiple">
<div class="form-group">
<label class="form-group__label" for="day">Day *</label>
<input class="form-group__element" id="day" min="0" name="day" placeholder="dd" required="" type="number"/>
<p class="js-error form-error"></p>
</div>
<div class="form-group">
<label class="form-group__label" for="month">Month *</label>
<input class="form-group__element" id="month" min="0" name="month" placeholder="mm" required="" type="number"/>
<p class="js-error form-error"></p>
</div>
<div class="form-group">
<label class="form-group__label" for="year">Year *</label>
<input class="form-group__element" id="year" min="0" name="year" placeholder="yyyy" required="" type="number"/>
<p class="js-error form-error"></p>
</div>
</div>
<p class="js-date-error form-error form-error--date">The date of birth is not valid</p>
</div>
<div class="form-block" data-dropdown-type="SSO_COUNTRY" data-widget="form-dropdown">
<div class="form-block__label">Country of residence</div>
<div class="form-dropdown js-dropdown-wrapper"></div>
</div>
</fieldset>
</div>
<div class="user-account__tab" data-ui-tab="My Preferences">
<div class="js-account-prefs u-hide">
<fieldset>
<div class="form-block" data-dropdown-type="SSO_TEAM" data-widget="form-dropdown">
<div class="form-block__label">Your favourite team</div>
<div class="form-dropdown js-dropdown-wrapper"></div>
</div>
<div class="js-contact-prefs user-account__contact-prefs-wrapper">
<div class="user-account__alert">
<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-alert" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg>
<span>Sorry, but your contact preferences will take up to 24hrs to update</span>
</div>
<div class="user-account__contact-prefs">
<div class="form-block form-block--no-margin">
<div class="form-group form-group--checkbox">
<input class="form-group__element" id="allow-contacting" name="allow-contacting" type="checkbox"/>
<label class="form-group__label" for="allow-contacting">I'm happy for the ICC to contact me</label>
</div>
<p class="js-error form-error"></p>
</div>
<div class="form-block form-block--no-margin">
<div class="form-group form-group--checkbox">
<input class="form-group__element" id="allow-partner-contacting" name="allow-partner-contacting" type="checkbox"/>
<label class="form-group__label" for="allow-partner-contacting">I'm happy for the ICC's partners to contact me</label>
</div>
<p class="js-error form-error"></p>
</div>
</div>
</div>
</fieldset>
</div>
<div class="overlay__loader__small js-loader-prefs">
Hold on! Loading your preferences <div class="loader loader--small"></div>
</div>
</div>
<div class="user-account__buttons-wrapper">
<div class="user-account__account-actions js-buttons-wrapper">
<button class="form-btn form-btn--grey is-disabled js-cancel" disabled="">Cancel</button>
<button class="form-btn is-disabled js-submit" disabled="" type="submit">Save Changes</button>
<div class="loader js-loader u-hide"></div>
</div>
<button class="form-btn form-btn--grey js-account-signout u-show-tablet">Sign Out<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-sign-out" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg></button>
</div>
</form>
</div>
<div class="user-account__wrapper js-panel-account-password u-hide">
<form id="account-edit-password" name="account-edit-password" novalidate="">
<div class="user-account__tabs-wrapper">
<h1 class="overlay__title">
Edit your password
<span class="overlay__title__option"><a class="form-cta js-cancel-password" href="#">back</a></span>
</h1>
<div class="form-group form-group--password">
<div class="form-group__password-action js-toggle-password">Show</div>
<label class="form-group__label" for="current-password">Current Password *</label>
<input class="form-group__element" id="current-password" name="current-password" required="" type="password"/>
<p class="js-error form-error"></p>
<p class="js-current-pwd-error form-error form-error--email">Invalid current password</p>
</div>
<a class="form-cta form-cta--right" href="/forgot-password">Forgot password?</a>
<div class="form-block">
<div class="form-group form-group--password">
<div class="form-group__password-action js-toggle-password">Show</div>
<label class="form-group__label" for="new-password">New password *</label>
<input class="form-group__element" id="new-password" name="new-password" required="" type="password"/>
<div class="form-block__verify-password form-block__verify-password--slider js-verify-password">
Password must include...
<ul class="form-block__verify-list">
<li class="js-verify-length">8 or more characters</li>
<li class="js-verify-letters">At least one upper and lower case letter</li>
<li class="js-verify-number">At least one number or symbol</li>
</ul>
</div>
<p class="js-error form-error"></p>
<p class="js-new-pwd-error form-error form-error--email">The new password needs to be different than the current one.</p>
</div>
</div>
<div class="form-group form-group--password">
<div class="form-group__password-action js-toggle-password">Show</div>
<label class="form-group__label" for="confirm-password">Confirm new password *</label>
<input class="form-group__element" id="confirm-password" name="confirm-password" required="" type="password"/>
<p class="js-error form-error"></p>
<p class="js-confirm-pwd-error form-error form-error--email">The confirmation does not match your new password</p>
</div>
</div>
<div class="user-account__buttons-wrapper">
<div class="user-account__account-actions">
<button class="form-btn form-btn--grey js-cancel-password" type="button">Cancel</button>
<button class="form-btn is-disabled js-submit-password" disabled="" type="submit">Change Password</button>
<div class="loader js-password-loader u-hide"></div>
</div>
</div>
</form>
</div>
</section>
<div class="main-navigation__container js-will-glue">
<!-- header -->
<header class="main-navigation">
<section class="main-navigation__top-bar">
<nav class="site-tabs">
<ul class="site-tabs__list">
<li class="site-tabs__item theme theme-icc is-active">
<a class="site-tabs__link" href="https://icc-cricket.com">
ICC Cricket
</a>
</li>
<li class="site-tabs__item theme theme-t20wc">
<a class="site-tabs__link" href="https://t20worldcup.com" rel="noopener" target="_blank">
Men’s T20 World Cup 2022
</a>
</li>
<li class="site-tabs__item theme theme-wcwc">
<a class="site-tabs__link" href="https://www.cricketworldcup.com/" rel="noopener" target="_blank">
Women’s Cricket World Cup 2022
</a>
</li>
<li class="site-tabs__item theme theme-wtc">
<a class="site-tabs__link" href="https://www.icc-cricket.com/world-test-championship/overview" rel="noopener" target="_blank">
World Test Championship
</a>
</li>
</ul></nav>
<div class="sso-nav js-sso-display">
<div class="loader sso-nav__loader">
<div class="loader__ring">
<div></div>
<div></div>
<div></div>
<div></div>
</div>
</div>
</div>
</section>
<section class="main-navigation__wrapper">
<!-- desktop menu -->
<div class="main-navigation__header u-hide-desktop">
<a class="main-navigation__logo" href="/" title="label.returnToHomepage">
<span class="icn icn-logo-icc-nav"></span>
<span class="u-screen-reader">label.ICCHome</span>
</a>
<nav aria-label="Header Navigation" class="main-navigation__desktop-list js-desktop-nav" id="" role="navigation">
<header class="linked-list__header u-show-desktop">
<a class="linked-list__header-search" href="http://icc-cricket.com/search">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-search-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</a>
<span class="js-mobile-nav-btn">
<svg aria-hidden="true" class="icon linked-list__header-close-icn">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-cross" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</span>
</header>
<ul class="linked-list js-dynamic-list">
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
Scores
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
Scores
</button>
</header>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
Men's
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
Men's
</button>
</header>
<li class="linked-list__item">
<a class="linked-list__link" href="/mens-schedule/list">
Fixtures
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/live-cricket/mens-results">
Results
</a>
</li>
</ul>
</li>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
Women's
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
Women's
</button>
</header>
<li class="linked-list__item">
<a class="linked-list__link" href="/womens-schedule/list">
Fixtures
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/live-cricket/womens-results">
Results
</a>
</li>
</ul>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/live-cricket/live">
Live Scores
</a>
</li>
<li class="linked-list__item linked-list__item--wider u-hide-desktop">
</li>
<li class="linked-list__item linked-list__item--full-width u-hide-desktop">
<div class="main-navigation__social-container">
<nav class="social-follow">
<h6 class="social-follow__title">Follow Us</h6>
<a class="social-follow__item social-follow__item--facebook" href="https://www.facebook.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-facebook-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.facebook</span></a>
<a class="social-follow__item social-follow__item--twitter" href="https://twitter.com/ICC" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-twitter-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.twitter</span>
</a>
<a class="social-follow__item social-follow__item--instagram" href="https://www.instagram.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-instagram-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.instagram</span>
</a>
<a class="social-follow__item social-follow__item--youtube" href="https://www.youtube.com/user/CricketICC?cbrd=1" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-youtube-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.youtube</span>
</a>
</nav>
<svg aria-hidden="true" focusable="false" style="width:0;height:0;position:absolute;">
<lineargradient gradienttransform="rotate(45)" id="instagram" x2="1" y2="1">
<stop offset="0%" stop-color="#4c68d6"></stop>
<stop offset="33%" stop-color="#b22d98"></stop>
<stop offset="65%" stop-color="#e85a50"></stop>
<stop offset="100%" stop-color="#fbbb59"></stop>
</lineargradient>
</svg>
</div>
</li>
</ul>
</li>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
Rankings
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
Rankings
</button>
</header>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
Men's
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
Men's
</button>
</header>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/mens/overview">
Overview
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/mens/team-rankings">
Team Rankings
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/mens/player-rankings">
Players Rankings
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/mens/rankings-predictor/test">
Team Rankings Predictor
</a>
</li>
</ul>
</li>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
Women's
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
Women's
</button>
</header>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/womens/overview">
Overview
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/womens/team-rankings">
Team Rankings
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/womens/player-rankings">
Player Rankings
</a>
</li>
</ul>
</li>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
</header>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/mens/player-rankings/comparison">
Player Head to Head
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/about">
About Rankings
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/faqs">
Rankings FAQs
</a>
</li>
</ul>
</li>
<li class="linked-list__item linked-list__item--wider u-hide-desktop">
</li>
<li class="linked-list__item linked-list__item--full-width u-hide-desktop">
<div class="main-navigation__social-container">
<nav class="social-follow">
<h6 class="social-follow__title">Follow Us</h6>
<a class="social-follow__item social-follow__item--facebook" href="https://www.facebook.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-facebook-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.facebook</span></a>
<a class="social-follow__item social-follow__item--twitter" href="https://twitter.com/ICC" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-twitter-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.twitter</span>
</a>
<a class="social-follow__item social-follow__item--instagram" href="https://www.instagram.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-instagram-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.instagram</span>
</a>
<a class="social-follow__item social-follow__item--youtube" href="https://www.youtube.com/user/CricketICC?cbrd=1" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-youtube-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.youtube</span>
</a>
</nav>
<svg aria-hidden="true" focusable="false" style="width:0;height:0;position:absolute;">
<lineargradient gradienttransform="rotate(45)" id="instagram" x2="1" y2="1">
<stop offset="0%" stop-color="#4c68d6"></stop>
<stop offset="33%" stop-color="#b22d98"></stop>
<stop offset="65%" stop-color="#e85a50"></stop>
<stop offset="100%" stop-color="#fbbb59"></stop>
</lineargradient>
</svg>
</div>
</li>
</ul>
</li>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
Events
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
Events
</button>
</header>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
Men's Events
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
Men's Events
</button>
</header>
<li class="linked-list__item">
<a class="linked-list__link" href="https://www.t20worldcup.com">
ICC T20 World Cup
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/world-test-championship">
ICC World Test Championship
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/u19-world-cup/">
ICC U19 Cricket World Cup
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/cricket-world-cup-super-league/fixtures">
ICC CWC Super League
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/cricket-world-cup-challenge-league/news">
ICC CWC Challenge League
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/cricket-world-cup-league-two/news">
ICC CWC League 2
</a>
</li>
</ul>
</li>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
Women's Events
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
Women's Events
</button>
</header>
<li class="linked-list__item">
<a class="linked-list__link" href="https://womens.t20worldcup.com//">
ICC T20 World Cup
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="https://www.cricketworldcup.com/">
ICC Cricket World Cup
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/womens-u19-world-cup/">
ICC U19 T20 World Cup
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/womens-championship">
ICC Women's Championship
</a>
</li>
</ul>
</li>
<li class="linked-list__item linked-list__item--wider u-hide-desktop">
</li>
<li class="linked-list__item linked-list__item--full-width u-hide-desktop">
<div class="main-navigation__social-container">
<nav class="social-follow">
<h6 class="social-follow__title">Follow Us</h6>
<a class="social-follow__item social-follow__item--facebook" href="https://www.facebook.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-facebook-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.facebook</span></a>
<a class="social-follow__item social-follow__item--twitter" href="https://twitter.com/ICC" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-twitter-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.twitter</span>
</a>
<a class="social-follow__item social-follow__item--instagram" href="https://www.instagram.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-instagram-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.instagram</span>
</a>
<a class="social-follow__item social-follow__item--youtube" href="https://www.youtube.com/user/CricketICC?cbrd=1" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-youtube-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.youtube</span>
</a>
</nav>
<svg aria-hidden="true" focusable="false" style="width:0;height:0;position:absolute;">
<lineargradient gradienttransform="rotate(45)" id="instagram" x2="1" y2="1">
<stop offset="0%" stop-color="#4c68d6"></stop>
<stop offset="33%" stop-color="#b22d98"></stop>
<stop offset="65%" stop-color="#e85a50"></stop>
<stop offset="100%" stop-color="#fbbb59"></stop>
</lineargradient>
</svg>
</div>
</li>
</ul>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/news">
News
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/video">
Videos
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/teams">
Teams
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="https://icc.tv">
ICC.TV
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="https://www.icc-cricket.com/shop/">
Shop
</a>
</li>
<li class="linked-list__item no-border u-show-desktop">
<span class="linked-list__title">Explore ICC</span>
</li>
<li class="linked-list__item linked-list__item--promo u-show-desktop">
<section class="app-promo">
<div class="app-promo__top">
<span class="app-promo__icon icn icn-app-icon"></span>
<span class="app-promo__text">Download the official ICC App today</span>
</div>
<div class="app-promo__bottom">
<a class="app-promo__cta icn icn-apple-badge" href="https://itunes.apple.com/gb/app/icc-world-twenty20-india-2016/id956440606?mt=8" target="_blank"></a>
<a class="app-promo__cta icn icn-android-badge" href="https://play.google.com/store/apps/details?id=com.pl.cwc_2015&hl=en_GB" target="_blank"></a>
</div>
</section>
</li>
<li class="linked-list__item linked-list__item--social u-show-desktop">
<div class="main-navigation__social-container">
<nav class="social-follow">
<h6 class="social-follow__title">Follow Us</h6>
<a class="social-follow__item social-follow__item--facebook" href="https://www.facebook.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-facebook-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.facebook</span></a>
<a class="social-follow__item social-follow__item--twitter" href="https://twitter.com/ICC" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-twitter-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.twitter</span>
</a>
<a class="social-follow__item social-follow__item--instagram" href="https://www.instagram.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-instagram-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.instagram</span>
</a>
<a class="social-follow__item social-follow__item--youtube" href="https://www.youtube.com/user/CricketICC?cbrd=1" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-youtube-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.youtube</span>
</a>
</nav>
<svg aria-hidden="true" focusable="false" style="width:0;height:0;position:absolute;">
<lineargradient gradienttransform="rotate(45)" id="instagram" x2="1" y2="1">
<stop offset="0%" stop-color="#4c68d6"></stop>
<stop offset="33%" stop-color="#b22d98"></stop>
<stop offset="65%" stop-color="#e85a50"></stop>
<stop offset="100%" stop-color="#fbbb59"></stop>
</lineargradient>
</svg>
</div>
</li>
</ul>
</nav>
<a class="main-navigation__search" href="http://icc-cricket.com/search">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-search-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</a>
<button aria-controls="sidebar-menu" aria-label="Menu" class="hamburger js-sidebar-btn" type="button">
<span class="hamburger__line hamburger__line--top"></span>
<span class="hamburger__line hamburger__line--middle"></span>
<span class="hamburger__line hamburger__line--bottom"></span>
</button>
</div>
<!-- mobile menu -->
<div class="main-navigation__mobile u-show-desktop" data-widget="mobile-navigation">
<a class="main-navigation__logo" href="/" title="label.returnToHomepage">
<span class="icn icn-logo-icc-nav"></span>
<span class="u-screen-reader">label.ICCHome</span>
</a>
<div class="main-navigation__sub-menu">
<nav class="sub-menu">
<a class="sub-menu__link" href="https://www.icc-cricket.com/mens-schedule/list">
Scores
</a>
<a class="sub-menu__link" href="https://www.icc-cricket.com/rankings/mens/overview">
Rankings
</a>
<a class="sub-menu__link" href="https://www.icc-cricket.com/news">
News
</a>
<a class="sub-menu__link" href="https://welcome.icc.tv/">
ICC.tv
</a>
</nav>
</div>
<button aria-controls="mobile-menu" aria-label="Menu" class="hamburger js-mobile-nav-btn" type="button">
<span class="hamburger__line hamburger__line--top"></span>
<span class="hamburger__line hamburger__line--middle"></span>
<span class="hamburger__line hamburger__line--bottom"></span>
<span class="u-screen-reader">label.toggleMobileNavigation</span>
</button>
<nav aria-label="Header Navigation" class="main-navigation__mobile-list js-mobile-nav" id="mobile-menu" role="navigation">
<header class="linked-list__header u-show-desktop">
<a class="linked-list__header-search" href="http://icc-cricket.com/search">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-search-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</a>
<span class="js-mobile-nav-btn">
<svg aria-hidden="true" class="icon linked-list__header-close-icn">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-cross" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</span>
</header>
<ul class="linked-list js-dynamic-list">
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
Scores
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
Scores
</button>
</header>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
Men's
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
Men's
</button>
</header>
<li class="linked-list__item">
<a class="linked-list__link" href="/mens-schedule/list">
Fixtures
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/live-cricket/mens-results">
Results
</a>
</li>
</ul>
</li>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
Women's
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
Women's
</button>
</header>
<li class="linked-list__item">
<a class="linked-list__link" href="/womens-schedule/list">
Fixtures
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/live-cricket/womens-results">
Results
</a>
</li>
</ul>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/live-cricket/live">
Live Scores
</a>
</li>
<li class="linked-list__item linked-list__item--wider u-hide-desktop">
</li>
<li class="linked-list__item linked-list__item--full-width u-hide-desktop">
<div class="main-navigation__social-container">
<nav class="social-follow">
<h6 class="social-follow__title">Follow Us</h6>
<a class="social-follow__item social-follow__item--facebook" href="https://www.facebook.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-facebook-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.facebook</span></a>
<a class="social-follow__item social-follow__item--twitter" href="https://twitter.com/ICC" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-twitter-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.twitter</span>
</a>
<a class="social-follow__item social-follow__item--instagram" href="https://www.instagram.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-instagram-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.instagram</span>
</a>
<a class="social-follow__item social-follow__item--youtube" href="https://www.youtube.com/user/CricketICC?cbrd=1" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-youtube-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.youtube</span>
</a>
</nav>
<svg aria-hidden="true" focusable="false" style="width:0;height:0;position:absolute;">
<lineargradient gradienttransform="rotate(45)" id="instagram" x2="1" y2="1">
<stop offset="0%" stop-color="#4c68d6"></stop>
<stop offset="33%" stop-color="#b22d98"></stop>
<stop offset="65%" stop-color="#e85a50"></stop>
<stop offset="100%" stop-color="#fbbb59"></stop>
</lineargradient>
</svg>
</div>
</li>
</ul>
</li>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
Rankings
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
Rankings
</button>
</header>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
Men's
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
Men's
</button>
</header>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/mens/overview">
Overview
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/mens/team-rankings">
Team Rankings
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/mens/player-rankings">
Players Rankings
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/mens/rankings-predictor/test">
Team Rankings Predictor
</a>
</li>
</ul>
</li>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
Women's
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
Women's
</button>
</header>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/womens/overview">
Overview
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/womens/team-rankings">
Team Rankings
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/womens/player-rankings">
Player Rankings
</a>
</li>
</ul>
</li>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
</header>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/mens/player-rankings/comparison">
Player Head to Head
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/about">
About Rankings
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/faqs">
Rankings FAQs
</a>
</li>
</ul>
</li>
<li class="linked-list__item linked-list__item--wider u-hide-desktop">
</li>
<li class="linked-list__item linked-list__item--full-width u-hide-desktop">
<div class="main-navigation__social-container">
<nav class="social-follow">
<h6 class="social-follow__title">Follow Us</h6>
<a class="social-follow__item social-follow__item--facebook" href="https://www.facebook.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-facebook-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.facebook</span></a>
<a class="social-follow__item social-follow__item--twitter" href="https://twitter.com/ICC" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-twitter-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.twitter</span>
</a>
<a class="social-follow__item social-follow__item--instagram" href="https://www.instagram.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-instagram-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.instagram</span>
</a>
<a class="social-follow__item social-follow__item--youtube" href="https://www.youtube.com/user/CricketICC?cbrd=1" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-youtube-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.youtube</span>
</a>
</nav>
<svg aria-hidden="true" focusable="false" style="width:0;height:0;position:absolute;">
<lineargradient gradienttransform="rotate(45)" id="instagram" x2="1" y2="1">
<stop offset="0%" stop-color="#4c68d6"></stop>
<stop offset="33%" stop-color="#b22d98"></stop>
<stop offset="65%" stop-color="#e85a50"></stop>
<stop offset="100%" stop-color="#fbbb59"></stop>
</lineargradient>
</svg>
</div>
</li>
</ul>
</li>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
Events
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
Events
</button>
</header>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
Men's Events
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
Men's Events
</button>
</header>
<li class="linked-list__item">
<a class="linked-list__link" href="https://www.t20worldcup.com">
ICC T20 World Cup
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/world-test-championship">
ICC World Test Championship
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/u19-world-cup/">
ICC U19 Cricket World Cup
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/cricket-world-cup-super-league/fixtures">
ICC CWC Super League
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/cricket-world-cup-challenge-league/news">
ICC CWC Challenge League
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/cricket-world-cup-league-two/news">
ICC CWC League 2
</a>
</li>
</ul>
</li>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
Women's Events
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
Women's Events
</button>
</header>
<li class="linked-list__item">
<a class="linked-list__link" href="https://womens.t20worldcup.com//">
ICC T20 World Cup
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="https://www.cricketworldcup.com/">
ICC Cricket World Cup
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/womens-u19-world-cup/">
ICC U19 T20 World Cup
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/womens-championship">
ICC Women's Championship
</a>
</li>
</ul>
</li>
<li class="linked-list__item linked-list__item--wider u-hide-desktop">
</li>
<li class="linked-list__item linked-list__item--full-width u-hide-desktop">
<div class="main-navigation__social-container">
<nav class="social-follow">
<h6 class="social-follow__title">Follow Us</h6>
<a class="social-follow__item social-follow__item--facebook" href="https://www.facebook.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-facebook-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.facebook</span></a>
<a class="social-follow__item social-follow__item--twitter" href="https://twitter.com/ICC" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-twitter-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.twitter</span>
</a>
<a class="social-follow__item social-follow__item--instagram" href="https://www.instagram.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-instagram-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.instagram</span>
</a>
<a class="social-follow__item social-follow__item--youtube" href="https://www.youtube.com/user/CricketICC?cbrd=1" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-youtube-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.youtube</span>
</a>
</nav>
<svg aria-hidden="true" focusable="false" style="width:0;height:0;position:absolute;">
<lineargradient gradienttransform="rotate(45)" id="instagram" x2="1" y2="1">
<stop offset="0%" stop-color="#4c68d6"></stop>
<stop offset="33%" stop-color="#b22d98"></stop>
<stop offset="65%" stop-color="#e85a50"></stop>
<stop offset="100%" stop-color="#fbbb59"></stop>
</lineargradient>
</svg>
</div>
</li>
</ul>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/news">
News
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/video">
Videos
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/teams">
Teams
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="https://icc.tv">
ICC.TV
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="https://www.icc-cricket.com/shop/">
Shop
</a>
</li>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
More
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
More
</button>
</header>
<li class="linked-list__item">
<a class="linked-list__link" href="https://fancraze.com/">
Crictos
<svg aria-hidden="true" class="icon external-link">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-external-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/awards/overview">
ICC Awards
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/hall-of-fame">
Hall of Fame
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="https://www.criiio.com/">
criiio
<svg aria-hidden="true" class="icon external-link">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-external-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/100percentcricket">
100% Cricket
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/mobile">
Official ICC App
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="https://www.icc-cricket.com/shop/">
shop
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/about">
About ICC
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/media-releases">
Media Releases
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/photos">
Photos
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/news/318971">
Commercial Opportunities
</a>
</li>
<li class="linked-list__item linked-list__item--wider u-hide-desktop">
</li>
<li class="linked-list__item linked-list__item--full-width u-hide-desktop">
<div class="main-navigation__social-container">
<nav class="social-follow">
<h6 class="social-follow__title">Follow Us</h6>
<a class="social-follow__item social-follow__item--facebook" href="https://www.facebook.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-facebook-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.facebook</span></a>
<a class="social-follow__item social-follow__item--twitter" href="https://twitter.com/ICC" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-twitter-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.twitter</span>
</a>
<a class="social-follow__item social-follow__item--instagram" href="https://www.instagram.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-instagram-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.instagram</span>
</a>
<a class="social-follow__item social-follow__item--youtube" href="https://www.youtube.com/user/CricketICC?cbrd=1" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-youtube-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.youtube</span>
</a>
</nav>
<svg aria-hidden="true" focusable="false" style="width:0;height:0;position:absolute;">
<lineargradient gradienttransform="rotate(45)" id="instagram" x2="1" y2="1">
<stop offset="0%" stop-color="#4c68d6"></stop>
<stop offset="33%" stop-color="#b22d98"></stop>
<stop offset="65%" stop-color="#e85a50"></stop>
<stop offset="100%" stop-color="#fbbb59"></stop>
</lineargradient>
</svg>
</div>
</li>
</ul>
</li>
<li class="linked-list__item no-border u-show-desktop">
<span class="linked-list__title">Explore ICC</span>
</li>
<li class="linked-list__item no-border theme theme-t20wc">
<a class="linked-list__link" href="https://t20worldcup.com">
T20 World Cup
<svg aria-hidden="true" class="icon external-link">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-external-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</a>
</li>
<li class="linked-list__item no-border theme theme-wcwc">
<a class="linked-list__link" href="https://cricketworldcup.com">
Womens Cricket World Cup
<svg aria-hidden="true" class="icon external-link">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-external-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</a>
</li>
<li class="linked-list__item linked-list__item--promo u-show-desktop">
<section class="app-promo">
<div class="app-promo__top">
<span class="app-promo__icon icn icn-app-icon"></span>
<span class="app-promo__text">Download the official ICC App today</span>
</div>
<div class="app-promo__bottom">
<a class="app-promo__cta icn icn-apple-badge" href="https://itunes.apple.com/gb/app/icc-world-twenty20-india-2016/id956440606?mt=8" target="_blank"></a>
<a class="app-promo__cta icn icn-android-badge" href="https://play.google.com/store/apps/details?id=com.pl.cwc_2015&hl=en_GB" target="_blank"></a>
</div>
</section>
</li>
<li class="linked-list__item linked-list__item--social u-show-desktop">
<div class="main-navigation__social-container">
<nav class="social-follow">
<h6 class="social-follow__title">Follow Us</h6>
<a class="social-follow__item social-follow__item--facebook" href="https://www.facebook.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-facebook-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.facebook</span></a>
<a class="social-follow__item social-follow__item--twitter" href="https://twitter.com/ICC" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-twitter-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.twitter</span>
</a>
<a class="social-follow__item social-follow__item--instagram" href="https://www.instagram.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-instagram-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.instagram</span>
</a>
<a class="social-follow__item social-follow__item--youtube" href="https://www.youtube.com/user/CricketICC?cbrd=1" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-youtube-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.youtube</span>
</a>
</nav>
<svg aria-hidden="true" focusable="false" style="width:0;height:0;position:absolute;">
<lineargradient gradienttransform="rotate(45)" id="instagram" x2="1" y2="1">
<stop offset="0%" stop-color="#4c68d6"></stop>
<stop offset="33%" stop-color="#b22d98"></stop>
<stop offset="65%" stop-color="#e85a50"></stop>
<stop offset="100%" stop-color="#fbbb59"></stop>
</lineargradient>
</svg>
</div>
</li>
</ul>
</nav>
</div>
</section>
<!-- sidebar menu -->
<div class="sidebar-nav js-navigation-sidebar u-hide-desktop" data-widget="sidebar-navigation">
<header class="sidebar-nav__header">
<span class="sidebar-nav__title">
More
</span>
<span class="sidebar-nav__close js-sidebar-btn">
<svg aria-hidden="true" class="icon sidebar-nav__close-icn">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-cross" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</span>
</header>
<div class="sidebar-nav__menu" tabindex="0">
<ul>
<li class="sidebar-nav__item" data-label="Crictos">
<a class="sidebar-nav__link sidebar-nav__link--in-sidebar-nav" href="https://fancraze.com/">
Crictos
<svg aria-hidden="true" class="icon external-link">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-external-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</a>
</li>
<li class="sidebar-nav__item" data-label="ICC Awards">
<a class="sidebar-nav__link sidebar-nav__link--in-sidebar-nav" href="/awards/overview">
ICC Awards
</a>
</li>
<li class="sidebar-nav__item" data-label="Hall of Fame">
<a class="sidebar-nav__link sidebar-nav__link--in-sidebar-nav" href="/hall-of-fame">
Hall of Fame
</a>
</li>
<li class="sidebar-nav__item" data-label="criiio">
<a class="sidebar-nav__link sidebar-nav__link--in-sidebar-nav" href="https://www.criiio.com/">
criiio
<svg aria-hidden="true" class="icon external-link">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-external-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</a>
</li>
<li class="sidebar-nav__item" data-label="100% Cricket">
<a class="sidebar-nav__link sidebar-nav__link--in-sidebar-nav" href="/100percentcricket">
100% Cricket
</a>
</li>
<li class="sidebar-nav__item" data-label="Official ICC App">
<a class="sidebar-nav__link sidebar-nav__link--in-sidebar-nav" href="/mobile">
Official ICC App
</a>
</li>
<li class="sidebar-nav__item" data-label="shop">
<a class="sidebar-nav__link sidebar-nav__link--in-sidebar-nav" href="https://www.icc-cricket.com/shop/">
shop
</a>
</li>
<li class="sidebar-nav__item" data-label="About ICC">
<a class="sidebar-nav__link sidebar-nav__link--in-sidebar-nav" href="/about">
About ICC
</a>
</li>
<li class="sidebar-nav__item" data-label="Media Releases">
<a class="sidebar-nav__link sidebar-nav__link--in-sidebar-nav" href="/media-releases">
Media Releases
</a>
</li>
<li class="sidebar-nav__item" data-label="Photos">
<a class="sidebar-nav__link sidebar-nav__link--in-sidebar-nav" href="/photos">
Photos
</a>
</li>
<li class="sidebar-nav__item" data-label="Commercial Opportunities">
<a class="sidebar-nav__link sidebar-nav__link--in-sidebar-nav" href="/news/318971">
Commercial Opportunities
</a>
</li>
</ul>
</div>
</div>
</header>
</div>
<main class="js-body-content" id="main-content" tabindex="0">
<button class="scroll-to-top" data-script="icc_scroll-to-top" data-widget="scroll-to-top">
<svg class="scroll-to-top__icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-up-arrow" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<div aria-hidden="true" class="scroll-to-top__mask">
<svg class="scroll-to-top__icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-up-arrow" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</div>
<span class="u-screen-reader">Scroll to Top</span>
</button>
<header class="page-header page-header--rankings">
<div class="wrapper">
<div class="col-12">
<div class="page-header__banner">
<a class="page-logo" data-tracking-url="https://track.adform.net/adfserve/?bn=20093364;srctype=4;ord=%%ADFRND%%" data-widget="impression-tracker" href="http://track.adform.net/C/?bn=20093364" target="_blank">
<span class="icn icn-logo-mrf-rankings"></span>
</a>
</div>
<div class="share share-- share--vertical" data-widget="share">
<div class="share__container">
<div class="share__btn js-share-btn">
<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-share" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg>
<div class="share__title">Share</div>
</div>
<ul class="share__list">
<li class="share__item share__item--facebook js-social-option" data-social-service="facebook" role="button" tabindex="0">
<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-facebook" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg>
</li>
<li class="share__item share__item--twitter js-social-option" data-social-service="twitter" role="button" tabindex="0">
<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-twitter" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg>
</li>
<li class="share__item share__item--messenger u-show-tablet js-social-option" data-social-service="facebookMessenger" role="buttn" tabindex="0">
<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-facebook-messenger" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg>
</li>
<li class="share__item share__item--whatsapp u-show-tablet js-social-option" data-social-service="whatsapp" role="button" tabindex="0">
<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-whatsapp" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg>
</li>
<li class="share__item share__item--url u-hide-tablet js-copy-button" role="button" tabindex="0">
<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-url" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg>
<div class="share__copy-message js-copy-message">URL Copied</div>
</li>
</ul>
</div>
</div>
</div>
</div>
</header>
<div class="l-sticky-side-nav">
<div class="l-sticky-side-nav__nav">
<div class="rankings-menu" data-script="icc_rankings-menu" data-widget="rankings-menu">
<div class="drop-down-tablet js-drop-down">
<div class="drop-down__clickzone js-drop-down-trigger" role="button" tabindex="0"></div>
<div class="drop-down__label">
Women's
</div>
<div class="drop-down__current">
Player Rankings
<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-caret-down" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg>
</div>
<div class="drop-down__dropdown-list js-drop-down-options">
<div class="rankings-menu__tab-container u-hide-tablet">
<nav class="content-tabs">
<ul class="block-list-2 u-no-font-size" role="tablist">
<li class="u-no-padding u-no-margin">
<a class="content-tabs__tab" href="/rankings/mens/overview">Men's</a>
</li>
<li class="u-no-padding u-no-margin">
<a class="content-tabs__tab content-tabs__tab--active" href="/rankings/womens/overview">Women's</a>
</li>
</ul>
</nav>
</div>
<div class="tab-content">
<h3 class="rankings-menu__title">Men's</h3>
<ul class="rankings-menu__list">
<li class="rankings-menu__item">
<a class="rankings-menu__link" href="/rankings/mens/overview">Overview<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg></a>
</li>
<li class="rankings-menu__item">
<a class="rankings-menu__link" href="/rankings/mens/team-rankings">Team Rankings<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg></a>
</li>
<li class="rankings-menu__item">
<a class="rankings-menu__link" href="/rankings/mens/player-rankings">Player Rankings<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg></a>
</li>
<li class="rankings-menu__item">
<a class="rankings-menu__link" href="/rankings/mens/player-rankings/comparison">Player Comparison<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg></a>
</li>
<li class="rankings-menu__item">
<a class="rankings-menu__link" href="/rankings/mens/rankings-predictor/">Team Rankings Predictor<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg></a>
</li>
<li class="rankings-menu__item">
<a class="rankings-menu__link" href="/rankings/about">About the Rankings<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg></a>
</li>
<li class="rankings-menu__item">
<a class="rankings-menu__link" href="/rankings/faqs">Player Rankings FAQs<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg></a>
</li>
</ul>
</div>
<div class="active tab-content">
<h3 class="rankings-menu__title">Women's</h3>
<ul class="rankings-menu__list">
<li class="rankings-menu__item rankings-menu__item--user-selection js-team-btn">
<a class="rankings-menu__link js-fav-team-link" href="#">Select your team</a>
<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg>
<div class="rankings-menu__notch js-notch"></div>
<svg class="rankings-menu__notch-icon icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-star" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg>
<li class="rankings-menu__item">
<a class="rankings-menu__link" href="/rankings/womens/overview">Overview<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg></a>
</li>
<li class="rankings-menu__item">
<a class="rankings-menu__link" href="/rankings/womens/team-rankings">Team Rankings<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg></a>
</li>
<li class="rankings-menu__item">
<a class="rankings-menu__link" href="/rankings/womens/player-rankings">Player Rankings<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg></a>
</li>
<li class="rankings-menu__item">
<a class="rankings-menu__link" href="/rankings/about">About the Rankings<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg></a>
</li>
<li class="rankings-menu__item">
<a class="rankings-menu__link" href="/rankings/faqs">Player Rankings FAQs<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg></a>
</li>
<li class="rankings-menu__item">
<a class="rankings-menu__link" href="/rankings/womens-t20i-faq">T20I Team Rankings FAQs<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg></a>
</li>
</li></ul>
</div>
</div>
</div>
</div>
</div>
<div class="l-sticky-side-nav__content">
<section class="ranking-format-menu">
<div class="wrapper wrapper--sticky">
<div class="col-12">
<div class="content-tabs">
<ul class="inline-list">
<li class="ranking-format-menu__item">
<a class="content-tabs__tab content-tabs__tab--active" href="../odi">ODI</a>
</li>
<li class="ranking-format-menu__item">
<a class="content-tabs__tab" href="../t20i">T20i</a>
</li>
</ul>
</div>
</div>
</div>
</section>
<div class="wrapper wrapper--sticky">
<div class="col-12">
<section class="widget rankings-widget player-rankings-full-table" data-filter="RANKINGS_YEAR,RANKINGS_MONTH,RANKINGS_DAY" data-format="wodi" data-script="icc_rankings" data-widget="player-rankings-filtered">
<div class="rankings-filters">
<h5 class="rankings-filters__title">Look back through the MRF Tyres Rankings Archive using the date selector below:</h5>
<div class="rankings-filters__content">
<div class="rankings-filters__options" data-content-filter=""></div>
<div class="rankings-filters__btns">
<button class="rankings-filters__filter-button js-rankings-filter-button disabled">Apply</button>
<button class="rankings-filters__reset js-rankings-filter-reset u-hide">Reset</button>
</div>
</div>
</div>
<div class="rankings-block__title-container">
<div class="rankings-block__type t-wodi">wodi</div>
<h4>Women's ODI Batting Rankings</h4>
<div class="share share-- share--vertical share--small" data-widget="share">
<div class="share__container">
<div class="share__btn js-share-btn">
<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-share" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg>
<div class="share__title">Share</div>
</div>
<ul class="share__list">
<li class="share__item share__item--facebook js-social-option" data-social-service="facebook" role="button" tabindex="0">
<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-facebook" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg>
</li>
<li class="share__item share__item--twitter js-social-option" data-social-service="twitter" role="button" tabindex="0">
<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-twitter" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg>
</li>
<li class="share__item share__item--messenger u-show-tablet js-social-option" data-social-service="facebookMessenger" role="buttn" tabindex="0">
<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-facebook-messenger" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg>
</li>
<li class="share__item share__item--whatsapp u-show-tablet js-social-option" data-social-service="whatsapp" role="button" tabindex="0">
<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-whatsapp" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg>
</li>
<li class="share__item share__item--url u-hide-tablet js-copy-button" role="button" tabindex="0">
<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-url" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg>
<div class="share__copy-message js-copy-message">URL Copied</div>
</li>
</ul>
</div>
</div>
</div>
<div class="rankings-block__meta-container">
<div class="rankings-block__last-updated">Last Updated - 18. September 2022</div>
</div>
<div ,="" class="rankings-block__container full" data-cricket-role="batting" data-cricket-scope="wodi" data-full="true" data-page-size="100" data-player-rankings-card="" data-title="Women's ODI Batting Rankings">
<table class="table rankings-table">
<thead>
<tr class="table-head">
<th class="table-head__cell u-text-right">Pos</th>
<th class="table-head__cell">Player</th>
<th class="table-head__cell">Team</th>
<th class="table-head__cell table-head__cell--rating">Rating</th>
<th class="table-head__cell u-text-right u-hide-phablet">Career Best Rating</th>
</tr>
</thead>
<tr class="rankings-block__banner">
<td class="rankings-block__position">
<div class="rankings-block__pos-container">
<span class="rankings-block__pos-number">
1
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="rankings-block__top-player-container">
<div class="u-flex-center u-text-left">
<div class="rankings-block__player-image-container rankings-block__player-image-container--large">
<a href="/rankings/womens/player-rankings/466">
<img alt="Player Image" class="rankings-block__player-image image-missing" data-error="true" data-player="466" data-size="130x150" data-widget="player-image" src="//resources.pulse.icc-cricket.com/players/130x150/Photo-Missing.png"/>
</a>
</div>
<div>
<a href="/rankings/womens/player-rankings/466"><div class="rankings-block__banner--name-large">Alyssa Healy</div></a>
</div>
</div>
</td>
<td>
<div class="rankings-block__banner--nationality">
<div class="flag-15 AUS"></div>
<span class="rankings-block__banner--nation"></span>AUS
</div>
</td>
<td class="u-text-left">
<div class="rankings-block__banner--rating">785</div>
</td>
<td class="u-text-right u-hide-phablet u-overflow-hidden">
<div class="rankings-block__career-best">
<span class="rankings-block__career-best-text">
785 v England, 03/04/2022
</span>
<span class="circle-branding circle-branding--full-table circle-branding--top"></span>
<span class="circle-branding circle-branding--full-table circle-branding--bottom"></span>
</div>
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
2
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/1817">Beth Mooney</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo AUS"></span>
<span class="table-body__logo-text">AUS</span>
</td>
<td class="table-body__cell rating">749</td>
<td class="table-body__cell u-text-right u-hide-phablet">
748 v England, 03/04/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
3
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/1800">Natalie Sciver</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo ENG"></span>
<span class="table-body__logo-text">ENG</span>
</td>
<td class="table-body__cell rating">740</td>
<td class="table-body__cell u-text-right u-hide-phablet">
755 v South Africa, 15/07/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
4
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/3176">Laura Wolvaardt</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo SA"></span>
<span class="table-body__logo-text">SA</span>
</td>
<td class="table-body__cell rating">732</td>
<td class="table-body__cell u-text-right u-hide-phablet">
741 v Australia, 22/03/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
5
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/469">Meg Lanning</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo AUS"></span>
<span class="table-body__logo-text">AUS</span>
</td>
<td class="table-body__cell rating">710</td>
<td class="table-body__cell u-text-right u-hide-phablet">
834 v New Zealand, 24/02/2016
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
6
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/465">Rachael Haynes</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo AUS"></span>
<span class="table-body__logo-text">AUS</span>
</td>
<td class="table-body__cell rating">701</td>
<td class="table-body__cell u-text-right u-hide-phablet">
713 v West Indies, 15/03/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
7
</span>
<div class="ranking-pos up">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-up" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(3)</span>
<span class="ranking-pos__tooltip">This player has moved up in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/1809">Smriti Mandhana</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo IND"></span>
<span class="table-body__logo-text">IND</span>
</td>
<td class="table-body__cell rating">698</td>
<td class="table-body__cell u-text-right u-hide-phablet">
797 v England, 28/02/2019
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
8
</span>
<div class="ranking-pos down">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-down" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(1)</span>
<span class="ranking-pos__tooltip">This player has moved down in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/487">Amy Satterthwaite</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo NZ"></span>
<span class="table-body__logo-text">NZ</span>
</td>
<td class="table-body__cell rating">681</td>
<td class="table-body__cell u-text-right u-hide-phablet">
756 v Australia, 02/03/2017
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
9
</span>
<div class="ranking-pos up">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-up" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(4)</span>
<span class="ranking-pos__tooltip">This player has moved up in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/559">Harmanpreet Kaur</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo IND"></span>
<span class="table-body__logo-text">IND</span>
</td>
<td class="table-body__cell rating">662</td>
<td class="table-body__cell u-text-right u-hide-phablet">
679 v South Africa, 28/11/2014
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
10
</span>
<div class="ranking-pos down">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-down" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(1)</span>
<span class="ranking-pos__tooltip">This player has moved down in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/600">Chamari Athapaththu</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo SL"></span>
<span class="table-body__logo-text">SL</span>
</td>
<td class="table-body__cell rating">655</td>
<td class="table-body__cell u-text-right u-hide-phablet">
691 v South Africa, 14/02/2019
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
11
</span>
<div class="ranking-pos down">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-down" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(3)</span>
<span class="ranking-pos__tooltip">This player has moved down in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/545">Tammy Beaumont</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo ENG"></span>
<span class="table-body__logo-text">ENG</span>
</td>
<td class="table-body__cell rating">645</td>
<td class="table-body__cell u-text-right u-hide-phablet">
791 v India, 27/06/2021
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
12
</span>
<div class="ranking-pos down">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-down" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(1)</span>
<span class="ranking-pos__tooltip">This player has moved down in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/471">Ellyse Perry</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo AUS"></span>
<span class="table-body__logo-text">AUS</span>
</td>
<td class="table-body__cell rating">642</td>
<td class="table-body__cell u-text-right u-hide-phablet">
766 v West Indies, 11/09/2019
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
13
</span>
<div class="ranking-pos down">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-down" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(1)</span>
<span class="ranking-pos__tooltip">This player has moved down in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/577">Deandra Dottin</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo WI"></span>
<span class="table-body__logo-text">WI</span>
</td>
<td class="table-body__cell rating">626</td>
<td class="table-body__cell u-text-right u-hide-phablet">
650 v New Zealand, 06/10/2013
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
14
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/573">Stafanie Taylor</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo WI"></span>
<span class="table-body__logo-text">WI</span>
</td>
<td class="table-body__cell rating">618</td>
<td class="table-body__cell u-text-right u-hide-phablet">
766 v Pakistan, 07/07/2021
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
15
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/3756">Amelia Kerr</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo NZ"></span>
<span class="table-body__logo-text">NZ</span>
</td>
<td class="table-body__cell rating">598</td>
<td class="table-body__cell u-text-right u-hide-phablet">
606 v India, 10/03/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
16
</span>
<div class="ranking-pos up">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-up" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(1)</span>
<span class="ranking-pos__tooltip">This player has moved up in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/478">Sophie Devine</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo NZ"></span>
<span class="table-body__logo-text">NZ</span>
</td>
<td class="table-body__cell rating">591</td>
<td class="table-body__cell u-text-right u-hide-phablet">
678 v Australia, 03/03/2019
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
17
</span>
<div class="ranking-pos down">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-down" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(1)</span>
<span class="ranking-pos__tooltip">This player has moved down in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/552">Heather Knight</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo ENG"></span>
<span class="table-body__logo-text">ENG</span>
</td>
<td class="table-body__cell rating">585</td>
<td class="table-body__cell u-text-right u-hide-phablet">
693 v West Indies, 06/06/2019
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
18
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/424">Marizanne Kapp</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo SA"></span>
<span class="table-body__logo-text">SA</span>
</td>
<td class="table-body__cell rating">585</td>
<td class="table-body__cell u-text-right u-hide-phablet">
585 v England, 18/07/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
19
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/474">Suzie Bates</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo NZ"></span>
<span class="table-body__logo-text">NZ</span>
</td>
<td class="table-body__cell rating">569</td>
<td class="table-body__cell u-text-right u-hide-phablet">
775 v Australia, 24/02/2016
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
20
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/1013">Chloe-Lesleigh Tryon</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo SA"></span>
<span class="table-body__logo-text">SA</span>
</td>
<td class="table-body__cell rating">557</td>
<td class="table-body__cell u-text-right u-hide-phablet">
557 v England, 18/07/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
21
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/3126">Hayley Matthews</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo WI"></span>
<span class="table-body__logo-text">WI</span>
</td>
<td class="table-body__cell rating">555</td>
<td class="table-body__cell u-text-right u-hide-phablet">
591 v India, 12/03/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
22
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/417">Mignon du Preez</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo SA"></span>
<span class="table-body__logo-text">SA</span>
</td>
<td class="table-body__cell rating">548</td>
<td class="table-body__cell u-text-right u-hide-phablet">
654 v West Indies, 28/01/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
23
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/557">Danielle Wyatt</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo ENG"></span>
<span class="table-body__logo-text">ENG</span>
</td>
<td class="table-body__cell rating">535</td>
<td class="table-body__cell u-text-right u-hide-phablet">
535 v India, 18/09/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
24
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/4128">Ashleigh Gardner</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo AUS"></span>
<span class="table-body__logo-text">AUS</span>
</td>
<td class="table-body__cell rating">507</td>
<td class="table-body__cell u-text-right u-hide-phablet">
524 v New Zealand, 13/03/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
25
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/629">Bismah Maroof</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo PAK"></span>
<span class="table-body__logo-text">PAK</span>
</td>
<td class="table-body__cell rating">506</td>
<td class="table-body__cell u-text-right u-hide-phablet">
570 v New Zealand, 13/11/2016
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
26
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/428">Sune Luus</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo SA"></span>
<span class="table-body__logo-text">SA</span>
</td>
<td class="table-body__cell rating">496</td>
<td class="table-body__cell u-text-right u-hide-phablet">
546 v Ireland, 17/06/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
27
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/3129">Gaby Lewis</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo IRE"></span>
<span class="table-body__logo-text">IRE</span>
</td>
<td class="table-body__cell rating">494</td>
<td class="table-body__cell u-text-right u-hide-phablet">
494 v Netherlands, 26/08/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
28
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/1824">Fargana Hoque</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo BAN"></span>
<span class="table-body__logo-text">BAN</span>
</td>
<td class="table-body__cell rating">493</td>
<td class="table-body__cell u-text-right u-hide-phablet">
531 v West Indies, 18/03/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
29
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/3703">Sophia Dunkley</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo ENG"></span>
<span class="table-body__logo-text">ENG</span>
</td>
<td class="table-body__cell rating">482</td>
<td class="table-body__cell u-text-right u-hide-phablet">
482 v India, 18/09/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
30
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/3210">Aliya Riaz</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo PAK"></span>
<span class="table-body__logo-text">PAK</span>
</td>
<td class="table-body__cell rating">474</td>
<td class="table-body__cell u-text-right u-hide-phablet">
527 v Australia, 08/03/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
31
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/1790">Maddie Green</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo NZ"></span>
<span class="table-body__logo-text">NZ</span>
</td>
<td class="table-body__cell rating">474</td>
<td class="table-body__cell u-text-right u-hide-phablet">
480 v England, 20/03/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
32
</span>
<div class="ranking-pos up">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-up" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(1)</span>
<span class="ranking-pos__tooltip">This player has moved up in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/3192">Deepti Sharma</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo IND"></span>
<span class="table-body__logo-text">IND</span>
</td>
<td class="table-body__cell rating">462</td>
<td class="table-body__cell u-text-right u-hide-phablet">
622 v South Africa, 09/10/2019
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
33
</span>
<div class="ranking-pos up">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-up" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(1)</span>
<span class="ranking-pos__tooltip">This player has moved up in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/1767">Laura Delany</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo IRE"></span>
<span class="table-body__logo-text">IRE</span>
</td>
<td class="table-body__cell rating">455</td>
<td class="table-body__cell u-text-right u-hide-phablet">
455 v Netherlands, 26/08/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
34
</span>
<div class="ranking-pos down">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-down" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(2)</span>
<span class="ranking-pos__tooltip">This player has moved down in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/806">Amy Jones</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo ENG"></span>
<span class="table-body__logo-text">ENG</span>
</td>
<td class="table-body__cell rating">447</td>
<td class="table-body__cell u-text-right u-hide-phablet">
564 v West Indies, 13/06/2019
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
35
</span>
<div class="ranking-pos up">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-up" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(1)</span>
<span class="ranking-pos__tooltip">This player has moved up in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/">Tahlia McGrath</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo AUS"></span>
<span class="table-body__logo-text">AUS</span>
</td>
<td class="table-body__cell rating">445</td>
<td class="table-body__cell u-text-right u-hide-phablet">
455 v South Africa, 22/03/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
36
</span>
<div class="ranking-pos up">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-up" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(1)</span>
<span class="ranking-pos__tooltip">This player has moved up in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/1008">Sidra Ameen</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo PAK"></span>
<span class="table-body__logo-text">PAK</span>
</td>
<td class="table-body__cell rating">445</td>
<td class="table-body__cell u-text-right u-hide-phablet">
443 v Sri Lanka, 03/06/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
37
</span>
<div class="ranking-pos up">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-up" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(8)</span>
<span class="ranking-pos__tooltip">This player has moved up in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/">Yastika Bhatia</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo IND"></span>
<span class="table-body__logo-text">IND</span>
</td>
<td class="table-body__cell rating">438</td>
<td class="table-body__cell u-text-right u-hide-phablet">
438 v England, 18/09/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
38
</span>
<div class="ranking-pos down">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-down" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(3)</span>
<span class="ranking-pos__tooltip">This player has moved down in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/5824">Shafali Verma</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo IND"></span>
<span class="table-body__logo-text">IND</span>
</td>
<td class="table-body__cell rating">432</td>
<td class="table-body__cell u-text-right u-hide-phablet">
447 v Sri Lanka, 07/07/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
39
</span>
<div class="ranking-pos down">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-down" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(1)</span>
<span class="ranking-pos__tooltip">This player has moved down in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/635">Nahida Khan</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo PAK"></span>
<span class="table-body__logo-text">PAK</span>
</td>
<td class="table-body__cell rating">423</td>
<td class="table-body__cell u-text-right u-hide-phablet">
603 v England, 14/12/2019
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
40
</span>
<div class="ranking-pos down">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-down" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(1)</span>
<span class="ranking-pos__tooltip">This player has moved down in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/482">Katey Martin</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo NZ"></span>
<span class="table-body__logo-text">NZ</span>
</td>
<td class="table-body__cell rating">420</td>
<td class="table-body__cell u-text-right u-hide-phablet">
483 v Australia, 05/03/2017
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
41
</span>
<div class="ranking-pos down">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-down" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(1)</span>
<span class="ranking-pos__tooltip">This player has moved down in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/1830">Rumana Ahmed</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo BAN"></span>
<span class="table-body__logo-text">BAN</span>
</td>
<td class="table-body__cell rating">419</td>
<td class="table-body__cell u-text-right u-hide-phablet">
484 v South Africa, 05/03/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
42
</span>
<div class="ranking-pos down">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-down" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(1)</span>
<span class="ranking-pos__tooltip">This player has moved down in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/636">Nida Dar</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo PAK"></span>
<span class="table-body__logo-text">PAK</span>
</td>
<td class="table-body__cell rating">411</td>
<td class="table-body__cell u-text-right u-hide-phablet">
426 v Sri Lanka, 03/06/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
43
</span>
<div class="ranking-pos down">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-down" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(1)</span>
<span class="ranking-pos__tooltip">This player has moved down in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/568">Poonam Raut</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo IND"></span>
<span class="table-body__logo-text">IND</span>
</td>
<td class="table-body__cell rating">405</td>
<td class="table-body__cell u-text-right u-hide-phablet">
606 v South Africa, 14/03/2021
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
44
</span>
<div class="ranking-pos down">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-down" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(1)</span>
<span class="ranking-pos__tooltip">This player has moved down in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/3202">Harshitha Madavi</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo SL"></span>
<span class="table-body__logo-text">SL</span>
</td>
<td class="table-body__cell rating">402</td>
<td class="table-body__cell u-text-right u-hide-phablet">
416 v India, 01/07/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
45
</span>
<div class="ranking-pos down">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-down" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(1)</span>
<span class="ranking-pos__tooltip">This player has moved down in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/5311">Umaima Sohail</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo PAK"></span>
<span class="table-body__logo-text">PAK</span>
</td>
<td class="table-body__cell rating">396</td>
<td class="table-body__cell u-text-right u-hide-phablet">
408 v West Indies, 14/11/2021
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
46
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/4049">Lara Goodall</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo SA"></span>
<span class="table-body__logo-text">SA</span>
</td>
<td class="table-body__cell rating">394</td>
<td class="table-body__cell u-text-right u-hide-phablet">
400 v Ireland, 17/06/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
47
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/597">Nilakshi Silva</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo SL"></span>
<span class="table-body__logo-text">SL</span>
</td>
<td class="table-body__cell rating">384</td>
<td class="table-body__cell u-text-right u-hide-phablet">
384 v India, 07/07/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
48
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/631">Javeria Khan</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo PAK"></span>
<span class="table-body__logo-text">PAK</span>
</td>
<td class="table-body__cell rating">382</td>
<td class="table-body__cell u-text-right u-hide-phablet">
573 v South Africa, 15/03/2015
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
49
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/">Leah Paul</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo IRE"></span>
<span class="table-body__logo-text">IRE</span>
</td>
<td class="table-body__cell rating">377</td>
<td class="table-body__cell u-text-right u-hide-phablet">
377 v Netherlands, 26/08/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
50
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/574">Shemaine Campbelle</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo WI"></span>
<span class="table-body__logo-text">WI</span>
</td>
<td class="table-body__cell rating">377</td>
<td class="table-body__cell u-text-right u-hide-phablet">
404 v Bangladesh, 18/03/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
51
</span>
<div class="ranking-pos up">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-up" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(1)</span>
<span class="ranking-pos__tooltip">This player has moved up in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/430">Dane van Niekerk</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo SA"></span>
<span class="table-body__logo-text">SA</span>
</td>
<td class="table-body__cell rating">363</td>
<td class="table-body__cell u-text-right u-hide-phablet">
677 v Sri Lanka, 11/02/2019
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
52
</span>
<div class="ranking-pos down">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-down" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(1)</span>
<span class="ranking-pos__tooltip">This player has moved down in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/547">Katherine Brunt</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo ENG"></span>
<span class="table-body__logo-text">ENG</span>
</td>
<td class="table-body__cell rating">363</td>
<td class="table-body__cell u-text-right u-hide-phablet">
439 v Australia, 03/02/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
53
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/5052">Pooja Vastrakar</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo IND"></span>
<span class="table-body__logo-text">IND</span>
</td>
<td class="table-body__cell rating">361</td>
<td class="table-body__cell u-text-right u-hide-phablet">
361 v England, 18/09/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
54
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/">Brooke Halliday</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo NZ"></span>
<span class="table-body__logo-text">NZ</span>
</td>
<td class="table-body__cell rating">346</td>
<td class="table-body__cell u-text-right u-hide-phablet">
449 v England, 26/09/2021
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
55
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/3207">Muneeba Ali</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo PAK"></span>
<span class="table-body__logo-text">PAK</span>
</td>
<td class="table-body__cell rating">346</td>
<td class="table-body__cell u-text-right u-hide-phablet">
348 v Sri Lanka, 03/06/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
56
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/">Amy Hunter</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo IRE"></span>
<span class="table-body__logo-text">IRE</span>
</td>
<td class="table-body__cell rating">343</td>
<td class="table-body__cell u-text-right u-hide-phablet">
343 v Netherlands, 26/08/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
57
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/468">Jess Jonassen</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo AUS"></span>
<span class="table-body__logo-text">AUS</span>
</td>
<td class="table-body__cell rating">340</td>
<td class="table-body__cell u-text-right u-hide-phablet">
410 v West Indies, 11/09/2019
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
58
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/3204">Nigar Sultana</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo BAN"></span>
<span class="table-body__logo-text">BAN</span>
</td>
<td class="table-body__cell rating">339</td>
<td class="table-body__cell u-text-right u-hide-phablet">
338 v West Indies, 18/03/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
59
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/1832">Sharmin Supta</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo BAN"></span>
<span class="table-body__logo-text">BAN</span>
</td>
<td class="table-body__cell rating">331</td>
<td class="table-body__cell u-text-right u-hide-phablet">
330 v England, 27/03/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
60
</span>
<div class="ranking-pos up">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-up" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(1)</span>
<span class="ranking-pos__tooltip">This player has moved up in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/1818">Salma Khatun</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo BAN"></span>
<span class="table-body__logo-text">BAN</span>
</td>
<td class="table-body__cell rating">323</td>
<td class="table-body__cell u-text-right u-hide-phablet">
366 v South Africa, 22/09/2013
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
61
</span>
<div class="ranking-pos down">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-down" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(1)</span>
<span class="ranking-pos__tooltip">This player has moved down in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/3172">Lauren Winfield</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo ENG"></span>
<span class="table-body__logo-text">ENG</span>
</td>
<td class="table-body__cell rating">321</td>
<td class="table-body__cell u-text-right u-hide-phablet">
422 v Australia, 06/02/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
62
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/562">Jhulan Goswami</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo IND"></span>
<span class="table-body__logo-text">IND</span>
</td>
<td class="table-body__cell rating">319</td>
<td class="table-body__cell u-text-right u-hide-phablet">
430 v New Zealand, 28/06/2015
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
63
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/4325">Chedean Nation</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo WI"></span>
<span class="table-body__logo-text">WI</span>
</td>
<td class="table-body__cell rating">316</td>
<td class="table-body__cell u-text-right u-hide-phablet">
385 v England, 09/03/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
64
</span>
<div class="ranking-pos up">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-up" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(3)</span>
<span class="ranking-pos__tooltip">This player has moved up in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/">Emma Lamb</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo ENG"></span>
<span class="table-body__logo-text">ENG</span>
</td>
<td class="table-body__cell rating">314</td>
<td class="table-body__cell u-text-right u-hide-phablet">
314 v India, 18/09/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
65
</span>
<div class="ranking-pos down">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-down" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(1)</span>
<span class="ranking-pos__tooltip">This player has moved down in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/418">Trisha Chetty</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo SA"></span>
<span class="table-body__logo-text">SA</span>
</td>
<td class="table-body__cell rating">314</td>
<td class="table-body__cell u-text-right u-hide-phablet">
585 v Ireland, 09/08/2016
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
66
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/1836">Andrie Steyn</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo SA"></span>
<span class="table-body__logo-text">SA</span>
</td>
<td class="table-body__cell rating">311</td>
<td class="table-body__cell u-text-right u-hide-phablet">
378 v Ireland, 19/05/2017
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
67
</span>
<div class="ranking-pos down">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-down" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(2)</span>
<span class="ranking-pos__tooltip">This player has moved down in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/">Richa Ghosh</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo IND"></span>
<span class="table-body__logo-text">IND</span>
</td>
<td class="table-body__cell rating">308</td>
<td class="table-body__cell u-text-right u-hide-phablet">
376 v England, 16/03/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
68
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/1827">Lata Mondal</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo BAN"></span>
<span class="table-body__logo-text">BAN</span>
</td>
<td class="table-body__cell rating">301</td>
<td class="table-body__cell u-text-right u-hide-phablet">
352 v India, 10/04/2013
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
69
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/608">Prasadani Weerakkody</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo SL"></span>
<span class="table-body__logo-text">SL</span>
</td>
<td class="table-body__cell rating">298</td>
<td class="table-body__cell u-text-right u-hide-phablet">
453 v Pakistan, 15/02/2017
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
70
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/5007">Lauren Down</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo NZ"></span>
<span class="table-body__logo-text">NZ</span>
</td>
<td class="table-body__cell rating">294</td>
<td class="table-body__cell u-text-right u-hide-phablet">
339 v India, 24/02/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
71
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/484">Katie Perkins</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo NZ"></span>
<span class="table-body__logo-text">NZ</span>
</td>
<td class="table-body__cell rating">293</td>
<td class="table-body__cell u-text-right u-hide-phablet">
503 v South Africa, 25/01/2020
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
72
</span>
<div class="ranking-pos up">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-up" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(4)</span>
<span class="ranking-pos__tooltip">This player has moved up in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/3337">Sophie Ecclestone</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo ENG"></span>
<span class="table-body__logo-text">ENG</span>
</td>
<td class="table-body__cell rating">291</td>
<td class="table-body__cell u-text-right u-hide-phablet">
291 v India, 18/09/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
73
</span>
<div class="ranking-pos down">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-down" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(1)</span>
<span class="ranking-pos__tooltip">This player has moved down in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/">Orla Prendergast</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo IRE"></span>
<span class="table-body__logo-text">IRE</span>
</td>
<td class="table-body__cell rating">275</td>
<td class="table-body__cell u-text-right u-hide-phablet">
275 v Netherlands, 26/08/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
74
</span>
<div class="ranking-pos down">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-down" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(1)</span>
<span class="ranking-pos__tooltip">This player has moved down in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/892">Nicola Carey</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo AUS"></span>
<span class="table-body__logo-text">AUS</span>
</td>
<td class="table-body__cell rating">274</td>
<td class="table-body__cell u-text-right u-hide-phablet">
317 v India, 26/09/2021
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
75
</span>
<div class="ranking-pos down">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-down" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(1)</span>
<span class="ranking-pos__tooltip">This player has moved down in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/1765">Hasini Perera</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo SL"></span>
<span class="table-body__logo-text">SL</span>
</td>
<td class="table-body__cell rating">267</td>
<td class="table-body__cell u-text-right u-hide-phablet">
267 v India, 07/07/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
76
</span>
<div class="ranking-pos down">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-down" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(1)</span>
<span class="ranking-pos__tooltip">This player has moved down in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/5292">Kavisha Dilhari</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo SL"></span>
<span class="table-body__logo-text">SL</span>
</td>
<td class="table-body__cell rating">266</td>
<td class="table-body__cell u-text-right u-hide-phablet">
301 v Pakistan, 05/06/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
77
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/579">Kycia Knight</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo WI"></span>
<span class="table-body__logo-text">WI</span>
</td>
<td class="table-body__cell rating">263</td>
<td class="table-body__cell u-text-right u-hide-phablet">
404 v Sri Lanka, 18/05/2015
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
78
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/1779">Mary Waldron</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo IRE"></span>
<span class="table-body__logo-text">IRE</span>
</td>
<td class="table-body__cell rating">255</td>
<td class="table-body__cell u-text-right u-hide-phablet">
260 v Netherlands, 22/08/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
79
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/5316">Murshida Khatun</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo BAN"></span>
<span class="table-body__logo-text">BAN</span>
</td>
<td class="table-body__cell rating">252</td>
<td class="table-body__cell u-text-right u-hide-phablet">
308 v Zimbabwe, 15/11/2021
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
80
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/1820">Shamima Sultana</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo BAN"></span>
<span class="table-body__logo-text">BAN</span>
</td>
<td class="table-body__cell rating">248</td>
<td class="table-body__cell u-text-right u-hide-phablet">
248 v England, 27/03/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
81
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/">Annabel Sutherland</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo AUS"></span>
<span class="table-body__logo-text">AUS</span>
</td>
<td class="table-body__cell rating">246</td>
<td class="table-body__cell u-text-right u-hide-phablet">
246 v West Indies, 30/03/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
82
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/20497">Mary-Anne Musonda</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo ZIM"></span>
<span class="table-body__logo-text">ZIM</span>
</td>
<td class="table-body__cell rating">244</td>
<td class="table-body__cell u-text-right u-hide-phablet">
290 v Ireland, 11/10/2021
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
83
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/">Georgina Dempsey</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo IRE"></span>
<span class="table-body__logo-text">IRE</span>
</td>
<td class="table-body__cell rating">239</td>
<td class="table-body__cell u-text-right u-hide-phablet">
239 v Netherlands, 26/08/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
84
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/">Jess Kerr</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo NZ"></span>
<span class="table-body__logo-text">NZ</span>
</td>
<td class="table-body__cell rating">238</td>
<td class="table-body__cell u-text-right u-hide-phablet">
242 v England, 20/03/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
85
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/1798">Kate Cross</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo ENG"></span>
<span class="table-body__logo-text">ENG</span>
</td>
<td class="table-body__cell rating">237</td>
<td class="table-body__cell u-text-right u-hide-phablet">
252 v Australia, 03/02/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
86
</span>
<div class="ranking-pos up">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-up" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount"></span>
<span class="ranking-pos__tooltip">This player has moved up in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/">Charlotte Dean</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo ENG"></span>
<span class="table-body__logo-text">ENG</span>
</td>
<td class="table-body__cell rating">236</td>
<td class="table-body__cell u-text-right u-hide-phablet">
236 v India, 18/09/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
87
</span>
<div class="ranking-pos down">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-down" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(1)</span>
<span class="ranking-pos__tooltip">This player has moved down in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/1813">Shikha Pandey</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo IND"></span>
<span class="table-body__logo-text">IND</span>
</td>
<td class="table-body__cell rating">233</td>
<td class="table-body__cell u-text-right u-hide-phablet">
383 v South Africa, 14/10/2019
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
88
</span>
<div class="ranking-pos down">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-down" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(1)</span>
<span class="ranking-pos__tooltip">This player has moved down in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/3205">Ritu Moni</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo BAN"></span>
<span class="table-body__logo-text">BAN</span>
</td>
<td class="table-body__cell rating">230</td>
<td class="table-body__cell u-text-right u-hide-phablet">
258 v South Africa, 05/03/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
89
</span>
<div class="ranking-pos down">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-down" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(1)</span>
<span class="ranking-pos__tooltip">This player has moved down in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/5119">Tazmin Brits</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo SA"></span>
<span class="table-body__logo-text">SA</span>
</td>
<td class="table-body__cell rating">224</td>
<td class="table-body__cell u-text-right u-hide-phablet">
291 v West Indies, 06/02/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
90
</span>
<div class="ranking-pos down">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-down" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(1)</span>
<span class="ranking-pos__tooltip">This player has moved down in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/1017">Kyshona Knight</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo WI"></span>
<span class="table-body__logo-text">WI</span>
</td>
<td class="table-body__cell rating">224</td>
<td class="table-body__cell u-text-right u-hide-phablet">
379 v Pakistan, 18/07/2021
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
91
</span>
<div class="ranking-pos down">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-down" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(1)</span>
<span class="ranking-pos__tooltip">This player has moved down in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/">Josephine Nkomo</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo ZIM"></span>
<span class="table-body__logo-text">ZIM</span>
</td>
<td class="table-body__cell rating">222</td>
<td class="table-body__cell u-text-right u-hide-phablet">
267 v Ireland, 11/10/2021
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
92
</span>
<div class="ranking-pos down">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-down" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(1)</span>
<span class="ranking-pos__tooltip">This player has moved down in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/3168">Rajeshwari Gayakwad</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo IND"></span>
<span class="table-body__logo-text">IND</span>
</td>
<td class="table-body__cell rating">221</td>
<td class="table-body__cell u-text-right u-hide-phablet">
229 v South Africa, 14/03/2021
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
93
</span>
<div class="ranking-pos down">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-down" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(1)</span>
<span class="ranking-pos__tooltip">This player has moved down in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/5051">Jemimah Rodriques</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo IND"></span>
<span class="table-body__logo-text">IND</span>
</td>
<td class="table-body__cell rating">214</td>
<td class="table-body__cell u-text-right u-hide-phablet">
411 v West Indies, 06/11/2019
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
94
</span>
<div class="ranking-pos down">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-down" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(1)</span>
<span class="ranking-pos__tooltip">This player has moved down in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/13526">Sophie MacMahon</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo IRE"></span>
<span class="table-body__logo-text">IRE</span>
</td>
<td class="table-body__cell rating">213</td>
<td class="table-body__cell u-text-right u-hide-phablet">
225 v South Africa, 14/06/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
95
</span>
<div class="ranking-pos down">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-down" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(1)</span>
<span class="ranking-pos__tooltip">This player has moved down in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/1005">Lea Tahuhu</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo NZ"></span>
<span class="table-body__logo-text">NZ</span>
</td>
<td class="table-body__cell rating">213</td>
<td class="table-body__cell u-text-right u-hide-phablet">
269 v England, 21/09/2021
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
96
</span>
<div class="ranking-pos up">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-up" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(4)</span>
<span class="ranking-pos__tooltip">This player has moved up in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/">Meghna Singh</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo IND"></span>
<span class="table-body__logo-text">IND</span>
</td>
<td class="table-body__cell rating">212</td>
<td class="table-body__cell u-text-right u-hide-phablet">
212 v England, 18/09/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
97
</span>
<div class="ranking-pos down">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-down" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(2)</span>
<span class="ranking-pos__tooltip">This player has moved down in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/1792">Hayley Jensen</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo NZ"></span>
<span class="table-body__logo-text">NZ</span>
</td>
<td class="table-body__cell rating">212</td>
<td class="table-body__cell u-text-right u-hide-phablet">
271 v England, 23/02/2021
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
98
</span>
<div class="ranking-pos down">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-down" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(2)</span>
<span class="ranking-pos__tooltip">This player has moved down in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/">Sneh Rana</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo IND"></span>
<span class="table-body__logo-text">IND</span>
</td>
<td class="table-body__cell rating">211</td>
<td class="table-body__cell u-text-right u-hide-phablet">
216 v South Africa, 27/03/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
99
</span>
<div class="ranking-pos down">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-down" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(2)</span>
<span class="ranking-pos__tooltip">This player has moved down in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/">Frederique Overdijk</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo NED"></span>
<span class="table-body__logo-text">NED</span>
</td>
<td class="table-body__cell rating">210</td>
<td class="table-body__cell u-text-right u-hide-phablet">
210 v Ireland, 26/08/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
100
</span>
<div class="ranking-pos down">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-down" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(1)</span>
<span class="ranking-pos__tooltip">This player has moved down in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/3264">Anushka Sanjeewani</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo SL"></span>
<span class="table-body__logo-text">SL</span>
</td>
<td class="table-body__cell rating">209</td>
<td class="table-body__cell u-text-right u-hide-phablet">
222 v Australia, 07/10/2019
</td>
</tr>
</table>
</div>
</section>
</div>
</div>
</div>
</div>
</main>
<footer class="footer" role="contentinfo">
<section class="partners">
<div class="partners__top-level">
<section class="partners__container">
<div class="partners__list partners__list--large">
<div class="partners__item">
<a aria-label="Nissan" class="partners__link" href="http://track.adform.net/C/?bn=18235072" target="_blank" title="Nissan">
<img alt="Nissan" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/06/30/ceabcea6-36b3-40c5-ab00-7ad8b66ecd73/nissan-2.png?width=142&height=46">
</img></a>
</div>
<div class="partners__item">
<a aria-label="Oppo" class="partners__link" href="http://track.adform.net/C/?bn=18236015" target="_blank" title="Oppo">
<img alt="Oppo" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/06/30/ea209fd5-065d-47aa-8ba7-fe70a3bcf8aa/Frame-233.png?width=142&height=46">
</img></a>
</div>
<div class="partners__item">
<a aria-label="MRF Tyres" class="partners__link" href="http://track.adform.net/C/?bn=18235782" title="MRF Tyres">
<img alt="MRF Tyres" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/06/30/c1afea15-4875-4cba-9710-547729daa841/Frame-235.png?width=142&height=46"/>
</a>
</div>
<div class="partners__item">
<a aria-label="Booking" class="partners__link" href="https://www.booking.com/" target="_blank" title="Booking">
<img alt="Booking" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/06/30/8bb6e96d-2b69-4d8e-acc0-568602baba2d/Frame-234.png?width=142&height=46"/>
</a>
</div>
<div class="partners__item">
<a aria-label="BYJU" class="partners__link" href="https://byjus.com/" target="_blank" title="BYJU">
<img alt="BYJU" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/06/30/9b3ea6a2-25f4-478e-b8aa-0e1b7d3d0e2a/Frame-237.png?width=142&height=46"/>
</a>
</div>
<div class="partners__item">
<a aria-label="Emirates" class="partners__link" href="http://track.adform.net/C/?bn=18236184" title="Emirates">
<img alt="Emirates" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/06/30/d9fb726d-2cbd-41c8-9aaf-bd94f37a8e4a/Frame-236.png?width=142&height=46"/>
</a>
</div>
</div>
</section>
</div>
<div class="partners__block">
<section class="partners__container">
<div class="partners__list partners__list--medium">
<div class="partners__item">
<a aria-label="Bira 91" class="partners__link" href="https://www.bira91.com/" target="_blank" title="Bira 91">
<img alt="Bira 91" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/06/30/587180d3-1347-4152-93ab-318460743d55/Frame-239.png?width=95&height=31"/>
</a>
</div>
<div class="partners__item">
<a aria-label="Eatfit" class="partners__link" href="https://www.eatfit.in/" target="_blank" title="Eatfit">
<img alt="Eatfit" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/07/04/674c634d-7f3c-4dfc-989c-5d72fed70d79/eatfit.png?width=95&height=31"/>
</a>
</div>
<div class="partners__item">
<a aria-label="Coca Cola" class="partners__link" href="https://www.coca-colaindia.com/brands/thums-up" title="Coca Cola">
<img alt="Coca Cola" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/08/24/8f5e6ad2-0dfe-4e99-896c-20b034763dec/TU-Taste-The-Thunder-Logo.png?width=95&height=31"/>
</a>
</div>
<div class="partners__item">
<a aria-label="Upstox" class="partners__link" href="https://upstox.com/" target="_blank" title="Upstox">
<img alt="Upstox" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/06/30/70fab62f-38e2-47bb-8a3b-ffa437b1c6ac/Frame-240.png?width=95&height=31"/>
</a>
</div>
<div class="partners__item">
<a aria-label="PostPe" class="partners__link" href="https://ftx.com/" target="_blank" title="PostPe">
<img alt="PostPe" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/06/30/4c2e8d25-2744-4a26-9345-94cfafd132d3/Frame-243.png?width=95&height=31"/>
</a>
</div>
<div class="partners__item">
<a aria-label="FTX" class="partners__link" href="https://ftx.com/" target="_blank" title="FTX">
<img alt="FTX" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/06/30/8055a53b-e8d8-4622-9d0d-a833d86bff58/Frame-242.png?width=95&height=31"/>
</a>
</div>
<div class="partners__item">
<a aria-label="NIUM" class="partners__link" href="https://www.nium.com/" target="_blank" title="NIUM">
<img alt="NIUM" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/06/30/8eb1e98b-a9dc-4db8-84b0-4635582f96b0/nium.png?width=95&height=31"/>
</a>
</div>
</div>
</section>
<section class="partners__container">
<div class="partners__list partners__list--medium">
<div class="partners__item">
<a aria-label="Royal Stag" class="partners__link" href="https://www.pernod-ricard.com/en/brands/our-brands/royal-stag/" target="_blank" title="Royal Stag">
<img alt="Royal Stag" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/06/30/146eb588-7d36-4825-b06a-72a2533af1f0/Frame-250.png?width=95&height=31"/>
</a>
</div>
<div class="partners__item">
<a aria-label="Fantasy Cricket" class="partners__link" href="https://www.dream11.com/fantasy-cricket" target="_blank" title="Fantasy Cricket">
<img alt="Fantasy Cricket" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/06/30/d08b4b92-a224-4484-8269-22184d633d74/Frame-248.png?width=95&height=31"/>
</a>
</div>
<div class="partners__item">
<a aria-label="Jacobs Creek" class="partners__link" href="https://www.jacobscreek.com/en-gb" target="_blank" title="Jacobs Creek">
<img alt="Jacobs Creek" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/06/30/f44c1356-91b7-49c2-bb2a-8db9cd20133d/Jacobs-.png?width=95&height=31"/>
</a>
</div>
<div class="partners__item">
<a aria-label="FanCraze" class="partners__link" href="https://www.fancraze.com" title="FanCraze">
<img alt="FanCraze" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/06/30/51c3576a-0e91-4246-8d36-85fc5037cec6/Frame-249.png?width=95&height=31"/>
</a>
</div>
</div>
</section>
</div>
<div class="partners__block partners__block--inline">
<section class="partners__container">
<h3 class="partners__title">BROADCAST PARTNER</h3>
<div class="partners__list partners__list--large">
<div class="partners__item">
<a aria-label="Star Sports" class="partners__link" href="http://track.adform.net/C/?bn=18238489" target="_blank" title="Star Sports">
<img alt="Star Sports" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/06/30/6becb07e-9e85-4221-a4cf-43d1b58c5e46/star-sports.png?width=142&height=46"/>
</a>
</div>
</div>
</section>
<section class="partners__container">
<h3 class="partners__title">SOCIAL RESPONSIBILITY</h3>
<div class="partners__list partners__list--large">
<div class="partners__item">
<a aria-label="Cricket for Good" class="partners__link" href="https://www.icc-cricket.com/about/the-icc/cricket-for-good" target="_blank" title="Cricket for Good">
<img alt="Cricket for Good" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/06/30/66d0bd38-4492-4742-ae2f-a5a2f3ea7032/cricket4good.png?width=142&height=46"/>
</a>
</div>
</div>
</section>
</div>
</section>
<div class="footer__app-promo u-show-tablet">
<section class="app-promo">
<div class="app-promo__top">
<span class="app-promo__icon icn icn-app-icon"></span>
<span class="app-promo__text">Download the official ICC App today</span>
</div>
<div class="app-promo__bottom">
<a class="app-promo__cta icn icn-apple-badge" href="https://itunes.apple.com/gb/app/icc-world-twenty20-india-2016/id956440606?mt=8" target="_blank"></a>
<a class="app-promo__cta icn icn-android-badge" href="https://play.google.com/store/apps/details?id=com.pl.cwc_2015&hl=en_GB" target="_blank"></a>
</div>
</section>
</div>
<div class="footer__main">
<nav class="footer__links">
<a class="footer__link" href="http://www.icc-cricket.com/about/the-icc/legal-notices/website-terms-of-use">
Legal Notice
</a>
<a class="footer__link" href="http://www.icc-cricket.com/about/the-icc/legal-notices/privacy-policy">
Privacy Policy
</a>
</nav>
<div class="footer__social">
<nav class="social-follow">
<h6 class="social-follow__title">Follow Us</h6>
<a class="social-follow__item social-follow__item--facebook" href="https://www.facebook.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-facebook-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.facebook</span></a>
<a class="social-follow__item social-follow__item--twitter" href="https://twitter.com/ICC" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-twitter-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.twitter</span>
</a>
<a class="social-follow__item social-follow__item--instagram" href="https://www.instagram.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-instagram-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.instagram</span>
</a>
<a class="social-follow__item social-follow__item--youtube" href="https://www.youtube.com/user/CricketICC?cbrd=1" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-youtube-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.youtube</span>
</a>
</nav>
<svg aria-hidden="true" focusable="false" style="width:0;height:0;position:absolute;">
<lineargradient gradienttransform="rotate(45)" id="instagram" x2="1" y2="1">
<stop offset="0%" stop-color="#4c68d6"></stop>
<stop offset="33%" stop-color="#b22d98"></stop>
<stop offset="65%" stop-color="#e85a50"></stop>
<stop offset="100%" stop-color="#fbbb59"></stop>
</lineargradient>
</svg>
</div>
</div>
<div class="footer__corporate">
<span class="footer__copyright">2022 © International Cricket Council FZ LLC</span>
</div>
</footer>
<script src="/resources/prod/v8.28.1/scripts/vendors.min.js"></script>
<script src="/resources/prod/v8.28.1/scripts/client.min.js"></script>
<script src="https://sso.fanaccount.icc-cricket.com/auth/js/keycloak.js"></script>
<!--[if IE]> -->
<script type="text/javascript">
svg4everybody();
</script>
<!-- <![endif]-->
</body>
</html>
B_player=soup.find_all('div',class_="rankings-block__banner--name-large")
B_player
B_players=soup.find_all('td',class_="table-body__cell rankings-table__name name")[0:9]
B_players
print(B_player+B_players)
print()
[<div class="rankings-block__banner--name-large">Alyssa Healy</div>, <td class="table-body__cell rankings-table__name name"> <a href="/rankings/womens/player-rankings/1817">Beth Mooney</a> </td>, <td class="table-body__cell rankings-table__name name"> <a href="/rankings/womens/player-rankings/1800">Natalie Sciver</a> </td>, <td class="table-body__cell rankings-table__name name"> <a href="/rankings/womens/player-rankings/3176">Laura Wolvaardt</a> </td>, <td class="table-body__cell rankings-table__name name"> <a href="/rankings/womens/player-rankings/469">Meg Lanning</a> </td>, <td class="table-body__cell rankings-table__name name"> <a href="/rankings/womens/player-rankings/465">Rachael Haynes</a> </td>, <td class="table-body__cell rankings-table__name name"> <a href="/rankings/womens/player-rankings/1809">Smriti Mandhana</a> </td>, <td class="table-body__cell rankings-table__name name"> <a href="/rankings/womens/player-rankings/487">Amy Satterthwaite</a> </td>, <td class="table-body__cell rankings-table__name name"> <a href="/rankings/womens/player-rankings/559">Harmanpreet Kaur</a> </td>, <td class="table-body__cell rankings-table__name name"> <a href="/rankings/womens/player-rankings/600">Chamari Athapaththu</a> </td>]
B_Team=soup.find_all('div',class_="rankings-block__banner--nationality")
B_Team
B_Teams=soup.find_all("span",class_="table-body__logo-text")[0:9]
B_Teams
print(B_Team+B_Teams)
print()
[<div class="rankings-block__banner--nationality"> <div class="flag-15 AUS"></div> <span class="rankings-block__banner--nation"></span>AUS </div>, <span class="table-body__logo-text">AUS</span>, <span class="table-body__logo-text">ENG</span>, <span class="table-body__logo-text">SA</span>, <span class="table-body__logo-text">AUS</span>, <span class="table-body__logo-text">AUS</span>, <span class="table-body__logo-text">IND</span>, <span class="table-body__logo-text">NZ</span>, <span class="table-body__logo-text">IND</span>, <span class="table-body__logo-text">SL</span>]
Rating=soup.find_all('div',class_="rankings-block__banner--rating")
Rating
Ratings=soup.find_all('td',class_="table-body__cell rating")[0:9]
Ratings
print(Rating+Ratings)
print()
[<div class="rankings-block__banner--rating">785</div>, <td class="table-body__cell rating">749</td>, <td class="table-body__cell rating">740</td>, <td class="table-body__cell rating">732</td>, <td class="table-body__cell rating">710</td>, <td class="table-body__cell rating">701</td>, <td class="table-body__cell rating">698</td>, <td class="table-body__cell rating">681</td>, <td class="table-body__cell rating">662</td>, <td class="table-body__cell rating">655</td>]
c) Top 10 women’s ODI all-rounder along with the records of their team and rating
url=requests.get("https://www.icc-cricket.com/rankings/womens/player-rankings/odi/all-rounder")
url
<Response [200]>
soup=BeautifulSoup(url.text,'html.parser')
soup
<!DOCTYPE html>
<html lang="en">
<head>
<meta content="ICC Women's ODI All Rounder | Player Rankings | ICC" name="twitter:title"/>
<meta content="website" property="og:type"/>
<meta content="summary_large_image" property="twitter:card"/>
<meta content="Official ICC Cricket website - live matches, scores, news, highlights, commentary, rankings, videos and fixtures from the International Cricket Council." name="description"/>
<meta content="@icc" property="twitter:site"/>
<meta content="Official ICC Cricket website - live matches, scores, news, highlights, commentary, rankings, videos and fixtures from the International Cricket Council." name="twitter:description"/>
<meta content="https://www.icc-cricket.com/resources/ver/i/elements/default-thumbnail.jpg" name="twitter:image"/>
<meta content="ICC Women's ODI All Rounder | Player Rankings | ICC" property="og:title"/>
<meta content="https://www.icc-cricket.com/resources/ver/i/elements/default-thumbnail.jpg" property="og:image"/>
<title>ICC Women's ODI All Rounder | Player Rankings | ICC</title>
<meta content="Official ICC Cricket website - live matches, scores, news, highlights, commentary, rankings, videos and fixtures from the International Cricket Council." property="og:description"/>
<!-- Designed and built by Pulselive - www.pulselive.com -->
<script>
var dataLayer = [{
'user_language':'English',
'web_domain':'www.icc-cricket.com',
'page_type':'/rankings/womens/player-rankings/odi/all-rounder'
}];
</script>
<!-- Google Tag Manager -->
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-T7DPH24');</script>
<!-- End Google Tag Manager -->
<script async="" src="https://securepubads.g.doubleclick.net/tag/js/gpt.js"></script>
<meta charset="utf-8"/>
<meta content="width=device-width, initial-scale=1" name="viewport"/>
<meta content="app-id=956440606" name="apple-itunes-app">
<link href="/resources/prod/v8.28.1/manifest.json" rel="manifest"/>
<link href="/resources/prod/v8.28.1/i/elements/favicon.ico" rel="shortcut icon">
<link href="https://plus.google.com/+ICC" rel="publisher"/>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebPage",
"headline": "",
"url": "https://www.icc-cricket.com/rankings/womens/player-rankings/odi/all-rounder",
"creator": ["ICC"]
}
</script>
<title>International Cricket Council</title>
<!-- google platform library -->
<script async="" defer="" src="https://apis.google.com/js/api:client.js?onload=startApp"></script>
<script>
var startApp = function() {
gapi.load('auth2', function(){
// Retrieve the singleton for the GoogleAuth library and set up the client.
auth2 = gapi.auth2.init({
client_id: '844310787835-1rirg6e5plp2jou6v701br43iuo0lkcu.apps.googleusercontent.com'
// Request scopes in addition to 'profile' and 'email'
//scope: 'additional_scope'
});
});
};
</script>
<link href="https://fonts.googleapis.com/css?family=Hind+Siliguri:300,400,500,600" rel="stylesheet"/>
<!-- Polyfill service provided by the FT - https://github.com/Financial-Times/polyfill-service -->
<script src="https://cdn.polyfill.io/v2/polyfill.min.js?features=default,fetch"></script>
<link href="/resources/prod/v8.28.1/styles/screen.css" rel="stylesheet">
<script>
window.RESOURCE_VERSION = 'prod/v8.28.1';
</script>
</link></link></meta></head>
<body>
<!-- Google Tag Manager (noscript) -->
<noscript><iframe height="0" src="https://www.googletagmanager.com/ns.html?id=GTM-T7DPH24" style="display:none;visibility:hidden" width="0"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
<!--
Start of Floodlight Tag: Please do not removeActivity name of this tag: ICC Website - VisitationURL of the webpage where the tag is expected to be placed: This tag must be placed between the <body> and </body> tags, as close as possible to the opening tag. Creation Date: 10/01/2019
-->
<iframe frameborder="0" height="1" src="https://9282652.fls.doubleclick.net/activityi;src=9282652;type=iccre0;cat=iccwe0;u1=[user_language];u2=[user_country];u3=[page_type];u4=[web_domain];dc_lat=;dc_rdid=;tag_for_child_directed_treatment=;tfua=;npa=;ord=[SessionID]?" style="display:none" width="1"></iframe>
<!-- End of Floodlight Tag: Please do not remove -->
<script id="parsely-cfg" src="//cdn.parsely.com/keys/icc-cricket.com/p.js"></script>
<script>
window.fbAsyncInit = function() {
FB.init({
appId : 159513024983374,
autoLogAppEvents : true,
xfbml : true,
version : 'v3.0'
});
};
(function(d, s, id){
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) {return;}
js = d.createElement(s); js.id = id;
js.src = "https://connect.facebook.net/en_US/sdk.js";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));
</script>
<div class="user-account-overlay js-user-account-overlay"></div>
<section class="user-account js-user-account" data-script="sso_user-account" data-widget="user-account">
<div class="user-account__wrapper js-panel-account u-hide">
<div class="user-account__header">
<div class="user-account__close js-account-slider-close-btn" role="button">
<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-close" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg>
</div>
<div class="user-account__user-wrapper">
<div class="user-account__image">
<img alt="User Image" class="u-hide js-account-user-img" src="#"/>
</div>
<div class="user-account__user-info">
<p class="user-account__user-info__text js-account-user">Name Lastname</p>
<p class="user-account__user-info__profile js-profile-completion-info u-hide">
<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-alert" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg>
Profile <span class="js-profile-completion-percentage"></span>% Complete
</p>
</div>
</div>
<div class="user-account__tabs-nav js-tabs-wrapper"></div>
</div>
<div class="account-message js-account-message"></div>
<form autocomplete="off" id="user-account" name="user-account">
<div class="user-account__tab" data-ui-tab="My Account">
<div class="user-account__social-wrapper js-social-wrapper u-hide"></div>
<fieldset>
<div class="form-group-multiple">
<div class="form-group">
<label class="form-group__label" for="given_name">First name *</label>
<input class="form-group__element" id="given_name" maxlength="50" name="given_name" pattern="^[A-Za-z-\s]+$" required="" type="text"/>
<p class="js-error form-error"></p>
</div>
<div class="form-group">
<label class="form-group__label" for="family_name">Last name *</label>
<input class="form-group__element" id="family_name" maxlength="50" name="family_name" pattern="[A-Za-z-\s]+$" required="" type="text"/>
<p class="js-error form-error"></p>
</div>
</div>
<div class="form-group-multiple form-group-multiple--with-button">
<div class="form-group is-disabled js-change-email-input">
<label class="form-group__label" for="email">Email address *</label>
<input autocomplete="off" class="form-group__element" disabled="" id="email" maxlength="50" name="email" type="email"/>
<p class="js-error form-error"></p>
<p class="js-email-exists form-error form-error--email">Email address not available.</p>
</div>
<div class="form-group form-group--button">
<button class="form-btn form-btn--outlined js-change-email" novalidate="" type="button">Change Email</button>
</div>
</div>
<div class="form-group-multiple form-group-multiple--with-button js-account-password">
<div class="form-group is-disabled js-change-password-input">
<label class="form-group__label" for="password">Password *</label>
<input autocomplete="off" class="form-group__element" disabled="" id="password" name="password" placeholder="******" type="password"/>
<p class="js-error form-error"></p>
</div>
<div class="form-group form-group--button">
<button class="form-btn form-btn--outlined js-change-password" novalidate="" type="button">Change Password</button>
</div>
</div>
<div class="form-block form-block">
<div class="form-block__label form-block__label--dob">Date of Birth</div>
<div class="form-group-multiple">
<div class="form-group">
<label class="form-group__label" for="day">Day *</label>
<input class="form-group__element" id="day" min="0" name="day" placeholder="dd" required="" type="number"/>
<p class="js-error form-error"></p>
</div>
<div class="form-group">
<label class="form-group__label" for="month">Month *</label>
<input class="form-group__element" id="month" min="0" name="month" placeholder="mm" required="" type="number"/>
<p class="js-error form-error"></p>
</div>
<div class="form-group">
<label class="form-group__label" for="year">Year *</label>
<input class="form-group__element" id="year" min="0" name="year" placeholder="yyyy" required="" type="number"/>
<p class="js-error form-error"></p>
</div>
</div>
<p class="js-date-error form-error form-error--date">The date of birth is not valid</p>
</div>
<div class="form-block" data-dropdown-type="SSO_COUNTRY" data-widget="form-dropdown">
<div class="form-block__label">Country of residence</div>
<div class="form-dropdown js-dropdown-wrapper"></div>
</div>
</fieldset>
</div>
<div class="user-account__tab" data-ui-tab="My Preferences">
<div class="js-account-prefs u-hide">
<fieldset>
<div class="form-block" data-dropdown-type="SSO_TEAM" data-widget="form-dropdown">
<div class="form-block__label">Your favourite team</div>
<div class="form-dropdown js-dropdown-wrapper"></div>
</div>
<div class="js-contact-prefs user-account__contact-prefs-wrapper">
<div class="user-account__alert">
<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-alert" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg>
<span>Sorry, but your contact preferences will take up to 24hrs to update</span>
</div>
<div class="user-account__contact-prefs">
<div class="form-block form-block--no-margin">
<div class="form-group form-group--checkbox">
<input class="form-group__element" id="allow-contacting" name="allow-contacting" type="checkbox"/>
<label class="form-group__label" for="allow-contacting">I'm happy for the ICC to contact me</label>
</div>
<p class="js-error form-error"></p>
</div>
<div class="form-block form-block--no-margin">
<div class="form-group form-group--checkbox">
<input class="form-group__element" id="allow-partner-contacting" name="allow-partner-contacting" type="checkbox"/>
<label class="form-group__label" for="allow-partner-contacting">I'm happy for the ICC's partners to contact me</label>
</div>
<p class="js-error form-error"></p>
</div>
</div>
</div>
</fieldset>
</div>
<div class="overlay__loader__small js-loader-prefs">
Hold on! Loading your preferences <div class="loader loader--small"></div>
</div>
</div>
<div class="user-account__buttons-wrapper">
<div class="user-account__account-actions js-buttons-wrapper">
<button class="form-btn form-btn--grey is-disabled js-cancel" disabled="">Cancel</button>
<button class="form-btn is-disabled js-submit" disabled="" type="submit">Save Changes</button>
<div class="loader js-loader u-hide"></div>
</div>
<button class="form-btn form-btn--grey js-account-signout u-show-tablet">Sign Out<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-sign-out" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg></button>
</div>
</form>
</div>
<div class="user-account__wrapper js-panel-account-password u-hide">
<form id="account-edit-password" name="account-edit-password" novalidate="">
<div class="user-account__tabs-wrapper">
<h1 class="overlay__title">
Edit your password
<span class="overlay__title__option"><a class="form-cta js-cancel-password" href="#">back</a></span>
</h1>
<div class="form-group form-group--password">
<div class="form-group__password-action js-toggle-password">Show</div>
<label class="form-group__label" for="current-password">Current Password *</label>
<input class="form-group__element" id="current-password" name="current-password" required="" type="password"/>
<p class="js-error form-error"></p>
<p class="js-current-pwd-error form-error form-error--email">Invalid current password</p>
</div>
<a class="form-cta form-cta--right" href="/forgot-password">Forgot password?</a>
<div class="form-block">
<div class="form-group form-group--password">
<div class="form-group__password-action js-toggle-password">Show</div>
<label class="form-group__label" for="new-password">New password *</label>
<input class="form-group__element" id="new-password" name="new-password" required="" type="password"/>
<div class="form-block__verify-password form-block__verify-password--slider js-verify-password">
Password must include...
<ul class="form-block__verify-list">
<li class="js-verify-length">8 or more characters</li>
<li class="js-verify-letters">At least one upper and lower case letter</li>
<li class="js-verify-number">At least one number or symbol</li>
</ul>
</div>
<p class="js-error form-error"></p>
<p class="js-new-pwd-error form-error form-error--email">The new password needs to be different than the current one.</p>
</div>
</div>
<div class="form-group form-group--password">
<div class="form-group__password-action js-toggle-password">Show</div>
<label class="form-group__label" for="confirm-password">Confirm new password *</label>
<input class="form-group__element" id="confirm-password" name="confirm-password" required="" type="password"/>
<p class="js-error form-error"></p>
<p class="js-confirm-pwd-error form-error form-error--email">The confirmation does not match your new password</p>
</div>
</div>
<div class="user-account__buttons-wrapper">
<div class="user-account__account-actions">
<button class="form-btn form-btn--grey js-cancel-password" type="button">Cancel</button>
<button class="form-btn is-disabled js-submit-password" disabled="" type="submit">Change Password</button>
<div class="loader js-password-loader u-hide"></div>
</div>
</div>
</form>
</div>
</section>
<div class="main-navigation__container js-will-glue">
<!-- header -->
<header class="main-navigation">
<section class="main-navigation__top-bar">
<nav class="site-tabs">
<ul class="site-tabs__list">
<li class="site-tabs__item theme theme-icc is-active">
<a class="site-tabs__link" href="https://icc-cricket.com">
ICC Cricket
</a>
</li>
<li class="site-tabs__item theme theme-t20wc">
<a class="site-tabs__link" href="https://t20worldcup.com" rel="noopener" target="_blank">
Men’s T20 World Cup 2022
</a>
</li>
<li class="site-tabs__item theme theme-wcwc">
<a class="site-tabs__link" href="https://www.cricketworldcup.com/" rel="noopener" target="_blank">
Women’s Cricket World Cup 2022
</a>
</li>
<li class="site-tabs__item theme theme-wtc">
<a class="site-tabs__link" href="https://www.icc-cricket.com/world-test-championship/overview" rel="noopener" target="_blank">
World Test Championship
</a>
</li>
</ul></nav>
<div class="sso-nav js-sso-display">
<div class="loader sso-nav__loader">
<div class="loader__ring">
<div></div>
<div></div>
<div></div>
<div></div>
</div>
</div>
</div>
</section>
<section class="main-navigation__wrapper">
<!-- desktop menu -->
<div class="main-navigation__header u-hide-desktop">
<a class="main-navigation__logo" href="/" title="label.returnToHomepage">
<span class="icn icn-logo-icc-nav"></span>
<span class="u-screen-reader">label.ICCHome</span>
</a>
<nav aria-label="Header Navigation" class="main-navigation__desktop-list js-desktop-nav" id="" role="navigation">
<header class="linked-list__header u-show-desktop">
<a class="linked-list__header-search" href="http://icc-cricket.com/search">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-search-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</a>
<span class="js-mobile-nav-btn">
<svg aria-hidden="true" class="icon linked-list__header-close-icn">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-cross" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</span>
</header>
<ul class="linked-list js-dynamic-list">
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
Scores
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
Scores
</button>
</header>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
Men's
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
Men's
</button>
</header>
<li class="linked-list__item">
<a class="linked-list__link" href="/mens-schedule/list">
Fixtures
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/live-cricket/mens-results">
Results
</a>
</li>
</ul>
</li>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
Women's
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
Women's
</button>
</header>
<li class="linked-list__item">
<a class="linked-list__link" href="/womens-schedule/list">
Fixtures
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/live-cricket/womens-results">
Results
</a>
</li>
</ul>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/live-cricket/live">
Live Scores
</a>
</li>
<li class="linked-list__item linked-list__item--wider u-hide-desktop">
</li>
<li class="linked-list__item linked-list__item--full-width u-hide-desktop">
<div class="main-navigation__social-container">
<nav class="social-follow">
<h6 class="social-follow__title">Follow Us</h6>
<a class="social-follow__item social-follow__item--facebook" href="https://www.facebook.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-facebook-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.facebook</span></a>
<a class="social-follow__item social-follow__item--twitter" href="https://twitter.com/ICC" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-twitter-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.twitter</span>
</a>
<a class="social-follow__item social-follow__item--instagram" href="https://www.instagram.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-instagram-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.instagram</span>
</a>
<a class="social-follow__item social-follow__item--youtube" href="https://www.youtube.com/user/CricketICC?cbrd=1" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-youtube-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.youtube</span>
</a>
</nav>
<svg aria-hidden="true" focusable="false" style="width:0;height:0;position:absolute;">
<lineargradient gradienttransform="rotate(45)" id="instagram" x2="1" y2="1">
<stop offset="0%" stop-color="#4c68d6"></stop>
<stop offset="33%" stop-color="#b22d98"></stop>
<stop offset="65%" stop-color="#e85a50"></stop>
<stop offset="100%" stop-color="#fbbb59"></stop>
</lineargradient>
</svg>
</div>
</li>
</ul>
</li>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
Rankings
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
Rankings
</button>
</header>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
Men's
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
Men's
</button>
</header>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/mens/overview">
Overview
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/mens/team-rankings">
Team Rankings
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/mens/player-rankings">
Players Rankings
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/mens/rankings-predictor/test">
Team Rankings Predictor
</a>
</li>
</ul>
</li>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
Women's
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
Women's
</button>
</header>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/womens/overview">
Overview
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/womens/team-rankings">
Team Rankings
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/womens/player-rankings">
Player Rankings
</a>
</li>
</ul>
</li>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
</header>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/mens/player-rankings/comparison">
Player Head to Head
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/about">
About Rankings
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/faqs">
Rankings FAQs
</a>
</li>
</ul>
</li>
<li class="linked-list__item linked-list__item--wider u-hide-desktop">
</li>
<li class="linked-list__item linked-list__item--full-width u-hide-desktop">
<div class="main-navigation__social-container">
<nav class="social-follow">
<h6 class="social-follow__title">Follow Us</h6>
<a class="social-follow__item social-follow__item--facebook" href="https://www.facebook.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-facebook-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.facebook</span></a>
<a class="social-follow__item social-follow__item--twitter" href="https://twitter.com/ICC" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-twitter-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.twitter</span>
</a>
<a class="social-follow__item social-follow__item--instagram" href="https://www.instagram.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-instagram-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.instagram</span>
</a>
<a class="social-follow__item social-follow__item--youtube" href="https://www.youtube.com/user/CricketICC?cbrd=1" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-youtube-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.youtube</span>
</a>
</nav>
<svg aria-hidden="true" focusable="false" style="width:0;height:0;position:absolute;">
<lineargradient gradienttransform="rotate(45)" id="instagram" x2="1" y2="1">
<stop offset="0%" stop-color="#4c68d6"></stop>
<stop offset="33%" stop-color="#b22d98"></stop>
<stop offset="65%" stop-color="#e85a50"></stop>
<stop offset="100%" stop-color="#fbbb59"></stop>
</lineargradient>
</svg>
</div>
</li>
</ul>
</li>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
Events
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
Events
</button>
</header>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
Men's Events
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
Men's Events
</button>
</header>
<li class="linked-list__item">
<a class="linked-list__link" href="https://www.t20worldcup.com">
ICC T20 World Cup
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/world-test-championship">
ICC World Test Championship
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/u19-world-cup/">
ICC U19 Cricket World Cup
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/cricket-world-cup-super-league/fixtures">
ICC CWC Super League
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/cricket-world-cup-challenge-league/news">
ICC CWC Challenge League
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/cricket-world-cup-league-two/news">
ICC CWC League 2
</a>
</li>
</ul>
</li>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
Women's Events
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
Women's Events
</button>
</header>
<li class="linked-list__item">
<a class="linked-list__link" href="https://womens.t20worldcup.com//">
ICC T20 World Cup
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="https://www.cricketworldcup.com/">
ICC Cricket World Cup
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/womens-u19-world-cup/">
ICC U19 T20 World Cup
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/womens-championship">
ICC Women's Championship
</a>
</li>
</ul>
</li>
<li class="linked-list__item linked-list__item--wider u-hide-desktop">
</li>
<li class="linked-list__item linked-list__item--full-width u-hide-desktop">
<div class="main-navigation__social-container">
<nav class="social-follow">
<h6 class="social-follow__title">Follow Us</h6>
<a class="social-follow__item social-follow__item--facebook" href="https://www.facebook.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-facebook-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.facebook</span></a>
<a class="social-follow__item social-follow__item--twitter" href="https://twitter.com/ICC" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-twitter-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.twitter</span>
</a>
<a class="social-follow__item social-follow__item--instagram" href="https://www.instagram.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-instagram-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.instagram</span>
</a>
<a class="social-follow__item social-follow__item--youtube" href="https://www.youtube.com/user/CricketICC?cbrd=1" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-youtube-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.youtube</span>
</a>
</nav>
<svg aria-hidden="true" focusable="false" style="width:0;height:0;position:absolute;">
<lineargradient gradienttransform="rotate(45)" id="instagram" x2="1" y2="1">
<stop offset="0%" stop-color="#4c68d6"></stop>
<stop offset="33%" stop-color="#b22d98"></stop>
<stop offset="65%" stop-color="#e85a50"></stop>
<stop offset="100%" stop-color="#fbbb59"></stop>
</lineargradient>
</svg>
</div>
</li>
</ul>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/news">
News
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/video">
Videos
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/teams">
Teams
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="https://icc.tv">
ICC.TV
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="https://www.icc-cricket.com/shop/">
Shop
</a>
</li>
<li class="linked-list__item no-border u-show-desktop">
<span class="linked-list__title">Explore ICC</span>
</li>
<li class="linked-list__item linked-list__item--promo u-show-desktop">
<section class="app-promo">
<div class="app-promo__top">
<span class="app-promo__icon icn icn-app-icon"></span>
<span class="app-promo__text">Download the official ICC App today</span>
</div>
<div class="app-promo__bottom">
<a class="app-promo__cta icn icn-apple-badge" href="https://itunes.apple.com/gb/app/icc-world-twenty20-india-2016/id956440606?mt=8" target="_blank"></a>
<a class="app-promo__cta icn icn-android-badge" href="https://play.google.com/store/apps/details?id=com.pl.cwc_2015&hl=en_GB" target="_blank"></a>
</div>
</section>
</li>
<li class="linked-list__item linked-list__item--social u-show-desktop">
<div class="main-navigation__social-container">
<nav class="social-follow">
<h6 class="social-follow__title">Follow Us</h6>
<a class="social-follow__item social-follow__item--facebook" href="https://www.facebook.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-facebook-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.facebook</span></a>
<a class="social-follow__item social-follow__item--twitter" href="https://twitter.com/ICC" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-twitter-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.twitter</span>
</a>
<a class="social-follow__item social-follow__item--instagram" href="https://www.instagram.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-instagram-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.instagram</span>
</a>
<a class="social-follow__item social-follow__item--youtube" href="https://www.youtube.com/user/CricketICC?cbrd=1" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-youtube-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.youtube</span>
</a>
</nav>
<svg aria-hidden="true" focusable="false" style="width:0;height:0;position:absolute;">
<lineargradient gradienttransform="rotate(45)" id="instagram" x2="1" y2="1">
<stop offset="0%" stop-color="#4c68d6"></stop>
<stop offset="33%" stop-color="#b22d98"></stop>
<stop offset="65%" stop-color="#e85a50"></stop>
<stop offset="100%" stop-color="#fbbb59"></stop>
</lineargradient>
</svg>
</div>
</li>
</ul>
</nav>
<a class="main-navigation__search" href="http://icc-cricket.com/search">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-search-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</a>
<button aria-controls="sidebar-menu" aria-label="Menu" class="hamburger js-sidebar-btn" type="button">
<span class="hamburger__line hamburger__line--top"></span>
<span class="hamburger__line hamburger__line--middle"></span>
<span class="hamburger__line hamburger__line--bottom"></span>
</button>
</div>
<!-- mobile menu -->
<div class="main-navigation__mobile u-show-desktop" data-widget="mobile-navigation">
<a class="main-navigation__logo" href="/" title="label.returnToHomepage">
<span class="icn icn-logo-icc-nav"></span>
<span class="u-screen-reader">label.ICCHome</span>
</a>
<div class="main-navigation__sub-menu">
<nav class="sub-menu">
<a class="sub-menu__link" href="https://www.icc-cricket.com/mens-schedule/list">
Scores
</a>
<a class="sub-menu__link" href="https://www.icc-cricket.com/rankings/mens/overview">
Rankings
</a>
<a class="sub-menu__link" href="https://www.icc-cricket.com/news">
News
</a>
<a class="sub-menu__link" href="https://welcome.icc.tv/">
ICC.tv
</a>
</nav>
</div>
<button aria-controls="mobile-menu" aria-label="Menu" class="hamburger js-mobile-nav-btn" type="button">
<span class="hamburger__line hamburger__line--top"></span>
<span class="hamburger__line hamburger__line--middle"></span>
<span class="hamburger__line hamburger__line--bottom"></span>
<span class="u-screen-reader">label.toggleMobileNavigation</span>
</button>
<nav aria-label="Header Navigation" class="main-navigation__mobile-list js-mobile-nav" id="mobile-menu" role="navigation">
<header class="linked-list__header u-show-desktop">
<a class="linked-list__header-search" href="http://icc-cricket.com/search">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-search-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</a>
<span class="js-mobile-nav-btn">
<svg aria-hidden="true" class="icon linked-list__header-close-icn">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-cross" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</span>
</header>
<ul class="linked-list js-dynamic-list">
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
Scores
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
Scores
</button>
</header>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
Men's
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
Men's
</button>
</header>
<li class="linked-list__item">
<a class="linked-list__link" href="/mens-schedule/list">
Fixtures
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/live-cricket/mens-results">
Results
</a>
</li>
</ul>
</li>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
Women's
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
Women's
</button>
</header>
<li class="linked-list__item">
<a class="linked-list__link" href="/womens-schedule/list">
Fixtures
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/live-cricket/womens-results">
Results
</a>
</li>
</ul>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/live-cricket/live">
Live Scores
</a>
</li>
<li class="linked-list__item linked-list__item--wider u-hide-desktop">
</li>
<li class="linked-list__item linked-list__item--full-width u-hide-desktop">
<div class="main-navigation__social-container">
<nav class="social-follow">
<h6 class="social-follow__title">Follow Us</h6>
<a class="social-follow__item social-follow__item--facebook" href="https://www.facebook.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-facebook-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.facebook</span></a>
<a class="social-follow__item social-follow__item--twitter" href="https://twitter.com/ICC" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-twitter-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.twitter</span>
</a>
<a class="social-follow__item social-follow__item--instagram" href="https://www.instagram.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-instagram-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.instagram</span>
</a>
<a class="social-follow__item social-follow__item--youtube" href="https://www.youtube.com/user/CricketICC?cbrd=1" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-youtube-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.youtube</span>
</a>
</nav>
<svg aria-hidden="true" focusable="false" style="width:0;height:0;position:absolute;">
<lineargradient gradienttransform="rotate(45)" id="instagram" x2="1" y2="1">
<stop offset="0%" stop-color="#4c68d6"></stop>
<stop offset="33%" stop-color="#b22d98"></stop>
<stop offset="65%" stop-color="#e85a50"></stop>
<stop offset="100%" stop-color="#fbbb59"></stop>
</lineargradient>
</svg>
</div>
</li>
</ul>
</li>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
Rankings
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
Rankings
</button>
</header>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
Men's
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
Men's
</button>
</header>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/mens/overview">
Overview
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/mens/team-rankings">
Team Rankings
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/mens/player-rankings">
Players Rankings
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/mens/rankings-predictor/test">
Team Rankings Predictor
</a>
</li>
</ul>
</li>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
Women's
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
Women's
</button>
</header>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/womens/overview">
Overview
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/womens/team-rankings">
Team Rankings
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/womens/player-rankings">
Player Rankings
</a>
</li>
</ul>
</li>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
</header>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/mens/player-rankings/comparison">
Player Head to Head
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/about">
About Rankings
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/rankings/faqs">
Rankings FAQs
</a>
</li>
</ul>
</li>
<li class="linked-list__item linked-list__item--wider u-hide-desktop">
</li>
<li class="linked-list__item linked-list__item--full-width u-hide-desktop">
<div class="main-navigation__social-container">
<nav class="social-follow">
<h6 class="social-follow__title">Follow Us</h6>
<a class="social-follow__item social-follow__item--facebook" href="https://www.facebook.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-facebook-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.facebook</span></a>
<a class="social-follow__item social-follow__item--twitter" href="https://twitter.com/ICC" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-twitter-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.twitter</span>
</a>
<a class="social-follow__item social-follow__item--instagram" href="https://www.instagram.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-instagram-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.instagram</span>
</a>
<a class="social-follow__item social-follow__item--youtube" href="https://www.youtube.com/user/CricketICC?cbrd=1" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-youtube-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.youtube</span>
</a>
</nav>
<svg aria-hidden="true" focusable="false" style="width:0;height:0;position:absolute;">
<lineargradient gradienttransform="rotate(45)" id="instagram" x2="1" y2="1">
<stop offset="0%" stop-color="#4c68d6"></stop>
<stop offset="33%" stop-color="#b22d98"></stop>
<stop offset="65%" stop-color="#e85a50"></stop>
<stop offset="100%" stop-color="#fbbb59"></stop>
</lineargradient>
</svg>
</div>
</li>
</ul>
</li>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
Events
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
Events
</button>
</header>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
Men's Events
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
Men's Events
</button>
</header>
<li class="linked-list__item">
<a class="linked-list__link" href="https://www.t20worldcup.com">
ICC T20 World Cup
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/world-test-championship">
ICC World Test Championship
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/u19-world-cup/">
ICC U19 Cricket World Cup
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/cricket-world-cup-super-league/fixtures">
ICC CWC Super League
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/cricket-world-cup-challenge-league/news">
ICC CWC Challenge League
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/cricket-world-cup-league-two/news">
ICC CWC League 2
</a>
</li>
</ul>
</li>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
Women's Events
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
Women's Events
</button>
</header>
<li class="linked-list__item">
<a class="linked-list__link" href="https://womens.t20worldcup.com//">
ICC T20 World Cup
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="https://www.cricketworldcup.com/">
ICC Cricket World Cup
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/womens-u19-world-cup/">
ICC U19 T20 World Cup
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/womens-championship">
ICC Women's Championship
</a>
</li>
</ul>
</li>
<li class="linked-list__item linked-list__item--wider u-hide-desktop">
</li>
<li class="linked-list__item linked-list__item--full-width u-hide-desktop">
<div class="main-navigation__social-container">
<nav class="social-follow">
<h6 class="social-follow__title">Follow Us</h6>
<a class="social-follow__item social-follow__item--facebook" href="https://www.facebook.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-facebook-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.facebook</span></a>
<a class="social-follow__item social-follow__item--twitter" href="https://twitter.com/ICC" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-twitter-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.twitter</span>
</a>
<a class="social-follow__item social-follow__item--instagram" href="https://www.instagram.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-instagram-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.instagram</span>
</a>
<a class="social-follow__item social-follow__item--youtube" href="https://www.youtube.com/user/CricketICC?cbrd=1" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-youtube-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.youtube</span>
</a>
</nav>
<svg aria-hidden="true" focusable="false" style="width:0;height:0;position:absolute;">
<lineargradient gradienttransform="rotate(45)" id="instagram" x2="1" y2="1">
<stop offset="0%" stop-color="#4c68d6"></stop>
<stop offset="33%" stop-color="#b22d98"></stop>
<stop offset="65%" stop-color="#e85a50"></stop>
<stop offset="100%" stop-color="#fbbb59"></stop>
</lineargradient>
</svg>
</div>
</li>
</ul>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/news">
News
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/video">
Videos
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/teams">
Teams
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="https://icc.tv">
ICC.TV
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="https://www.icc-cricket.com/shop/">
Shop
</a>
</li>
<li class="linked-list__item has-children">
<button aria-haspopup="true" class="linked-list__dropdown-label js-dropdown-btn">
More
<svg aria-hidden="true" class="icon linked-list__dropdown-has-children">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</button>
<ul aria-expanded="false" aria-hidden="true" class="linked-list__dropdown" role="group">
<header class="linked-list__dropdown-header u-show-desktop">
<button aria-label="Return to previous menu level" class="linked-list__back-btn js-back-btn">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
More
</button>
</header>
<li class="linked-list__item">
<a class="linked-list__link" href="https://fancraze.com/">
Crictos
<svg aria-hidden="true" class="icon external-link">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-external-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/awards/overview">
ICC Awards
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/hall-of-fame">
Hall of Fame
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="https://www.criiio.com/">
criiio
<svg aria-hidden="true" class="icon external-link">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-external-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/100percentcricket">
100% Cricket
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/mobile">
Official ICC App
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="https://www.icc-cricket.com/shop/">
shop
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/about">
About ICC
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/media-releases">
Media Releases
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/photos">
Photos
</a>
</li>
<li class="linked-list__item">
<a class="linked-list__link" href="/news/318971">
Commercial Opportunities
</a>
</li>
<li class="linked-list__item linked-list__item--wider u-hide-desktop">
</li>
<li class="linked-list__item linked-list__item--full-width u-hide-desktop">
<div class="main-navigation__social-container">
<nav class="social-follow">
<h6 class="social-follow__title">Follow Us</h6>
<a class="social-follow__item social-follow__item--facebook" href="https://www.facebook.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-facebook-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.facebook</span></a>
<a class="social-follow__item social-follow__item--twitter" href="https://twitter.com/ICC" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-twitter-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.twitter</span>
</a>
<a class="social-follow__item social-follow__item--instagram" href="https://www.instagram.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-instagram-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.instagram</span>
</a>
<a class="social-follow__item social-follow__item--youtube" href="https://www.youtube.com/user/CricketICC?cbrd=1" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-youtube-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.youtube</span>
</a>
</nav>
<svg aria-hidden="true" focusable="false" style="width:0;height:0;position:absolute;">
<lineargradient gradienttransform="rotate(45)" id="instagram" x2="1" y2="1">
<stop offset="0%" stop-color="#4c68d6"></stop>
<stop offset="33%" stop-color="#b22d98"></stop>
<stop offset="65%" stop-color="#e85a50"></stop>
<stop offset="100%" stop-color="#fbbb59"></stop>
</lineargradient>
</svg>
</div>
</li>
</ul>
</li>
<li class="linked-list__item no-border u-show-desktop">
<span class="linked-list__title">Explore ICC</span>
</li>
<li class="linked-list__item no-border theme theme-t20wc">
<a class="linked-list__link" href="https://t20worldcup.com">
T20 World Cup
<svg aria-hidden="true" class="icon external-link">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-external-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</a>
</li>
<li class="linked-list__item no-border theme theme-wcwc">
<a class="linked-list__link" href="https://cricketworldcup.com">
Womens Cricket World Cup
<svg aria-hidden="true" class="icon external-link">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-external-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</a>
</li>
<li class="linked-list__item linked-list__item--promo u-show-desktop">
<section class="app-promo">
<div class="app-promo__top">
<span class="app-promo__icon icn icn-app-icon"></span>
<span class="app-promo__text">Download the official ICC App today</span>
</div>
<div class="app-promo__bottom">
<a class="app-promo__cta icn icn-apple-badge" href="https://itunes.apple.com/gb/app/icc-world-twenty20-india-2016/id956440606?mt=8" target="_blank"></a>
<a class="app-promo__cta icn icn-android-badge" href="https://play.google.com/store/apps/details?id=com.pl.cwc_2015&hl=en_GB" target="_blank"></a>
</div>
</section>
</li>
<li class="linked-list__item linked-list__item--social u-show-desktop">
<div class="main-navigation__social-container">
<nav class="social-follow">
<h6 class="social-follow__title">Follow Us</h6>
<a class="social-follow__item social-follow__item--facebook" href="https://www.facebook.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-facebook-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.facebook</span></a>
<a class="social-follow__item social-follow__item--twitter" href="https://twitter.com/ICC" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-twitter-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.twitter</span>
</a>
<a class="social-follow__item social-follow__item--instagram" href="https://www.instagram.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-instagram-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.instagram</span>
</a>
<a class="social-follow__item social-follow__item--youtube" href="https://www.youtube.com/user/CricketICC?cbrd=1" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-youtube-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.youtube</span>
</a>
</nav>
<svg aria-hidden="true" focusable="false" style="width:0;height:0;position:absolute;">
<lineargradient gradienttransform="rotate(45)" id="instagram" x2="1" y2="1">
<stop offset="0%" stop-color="#4c68d6"></stop>
<stop offset="33%" stop-color="#b22d98"></stop>
<stop offset="65%" stop-color="#e85a50"></stop>
<stop offset="100%" stop-color="#fbbb59"></stop>
</lineargradient>
</svg>
</div>
</li>
</ul>
</nav>
</div>
</section>
<!-- sidebar menu -->
<div class="sidebar-nav js-navigation-sidebar u-hide-desktop" data-widget="sidebar-navigation">
<header class="sidebar-nav__header">
<span class="sidebar-nav__title">
More
</span>
<span class="sidebar-nav__close js-sidebar-btn">
<svg aria-hidden="true" class="icon sidebar-nav__close-icn">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-cross" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</span>
</header>
<div class="sidebar-nav__menu" tabindex="0">
<ul>
<li class="sidebar-nav__item" data-label="Crictos">
<a class="sidebar-nav__link sidebar-nav__link--in-sidebar-nav" href="https://fancraze.com/">
Crictos
<svg aria-hidden="true" class="icon external-link">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-external-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</a>
</li>
<li class="sidebar-nav__item" data-label="ICC Awards">
<a class="sidebar-nav__link sidebar-nav__link--in-sidebar-nav" href="/awards/overview">
ICC Awards
</a>
</li>
<li class="sidebar-nav__item" data-label="Hall of Fame">
<a class="sidebar-nav__link sidebar-nav__link--in-sidebar-nav" href="/hall-of-fame">
Hall of Fame
</a>
</li>
<li class="sidebar-nav__item" data-label="criiio">
<a class="sidebar-nav__link sidebar-nav__link--in-sidebar-nav" href="https://www.criiio.com/">
criiio
<svg aria-hidden="true" class="icon external-link">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-external-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</a>
</li>
<li class="sidebar-nav__item" data-label="100% Cricket">
<a class="sidebar-nav__link sidebar-nav__link--in-sidebar-nav" href="/100percentcricket">
100% Cricket
</a>
</li>
<li class="sidebar-nav__item" data-label="Official ICC App">
<a class="sidebar-nav__link sidebar-nav__link--in-sidebar-nav" href="/mobile">
Official ICC App
</a>
</li>
<li class="sidebar-nav__item" data-label="shop">
<a class="sidebar-nav__link sidebar-nav__link--in-sidebar-nav" href="https://www.icc-cricket.com/shop/">
shop
</a>
</li>
<li class="sidebar-nav__item" data-label="About ICC">
<a class="sidebar-nav__link sidebar-nav__link--in-sidebar-nav" href="/about">
About ICC
</a>
</li>
<li class="sidebar-nav__item" data-label="Media Releases">
<a class="sidebar-nav__link sidebar-nav__link--in-sidebar-nav" href="/media-releases">
Media Releases
</a>
</li>
<li class="sidebar-nav__item" data-label="Photos">
<a class="sidebar-nav__link sidebar-nav__link--in-sidebar-nav" href="/photos">
Photos
</a>
</li>
<li class="sidebar-nav__item" data-label="Commercial Opportunities">
<a class="sidebar-nav__link sidebar-nav__link--in-sidebar-nav" href="/news/318971">
Commercial Opportunities
</a>
</li>
</ul>
</div>
</div>
</header>
</div>
<main class="js-body-content" id="main-content" tabindex="0">
<button class="scroll-to-top" data-script="icc_scroll-to-top" data-widget="scroll-to-top">
<svg class="scroll-to-top__icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-up-arrow" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<div aria-hidden="true" class="scroll-to-top__mask">
<svg class="scroll-to-top__icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-up-arrow" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</div>
<span class="u-screen-reader">Scroll to Top</span>
</button>
<header class="page-header page-header--rankings">
<div class="wrapper">
<div class="col-12">
<div class="page-header__banner">
<a class="page-logo" data-tracking-url="https://track.adform.net/adfserve/?bn=20093364;srctype=4;ord=%%ADFRND%%" data-widget="impression-tracker" href="http://track.adform.net/C/?bn=20093364" target="_blank">
<span class="icn icn-logo-mrf-rankings"></span>
</a>
</div>
<div class="share share-- share--vertical" data-widget="share">
<div class="share__container">
<div class="share__btn js-share-btn">
<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-share" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg>
<div class="share__title">Share</div>
</div>
<ul class="share__list">
<li class="share__item share__item--facebook js-social-option" data-social-service="facebook" role="button" tabindex="0">
<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-facebook" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg>
</li>
<li class="share__item share__item--twitter js-social-option" data-social-service="twitter" role="button" tabindex="0">
<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-twitter" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg>
</li>
<li class="share__item share__item--messenger u-show-tablet js-social-option" data-social-service="facebookMessenger" role="buttn" tabindex="0">
<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-facebook-messenger" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg>
</li>
<li class="share__item share__item--whatsapp u-show-tablet js-social-option" data-social-service="whatsapp" role="button" tabindex="0">
<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-whatsapp" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg>
</li>
<li class="share__item share__item--url u-hide-tablet js-copy-button" role="button" tabindex="0">
<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-url" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg>
<div class="share__copy-message js-copy-message">URL Copied</div>
</li>
</ul>
</div>
</div>
</div>
</div>
</header>
<div class="l-sticky-side-nav">
<div class="l-sticky-side-nav__nav">
<div class="rankings-menu" data-script="icc_rankings-menu" data-widget="rankings-menu">
<div class="drop-down-tablet js-drop-down">
<div class="drop-down__clickzone js-drop-down-trigger" role="button" tabindex="0"></div>
<div class="drop-down__label">
Women's
</div>
<div class="drop-down__current">
Player Rankings
<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-caret-down" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg>
</div>
<div class="drop-down__dropdown-list js-drop-down-options">
<div class="rankings-menu__tab-container u-hide-tablet">
<nav class="content-tabs">
<ul class="block-list-2 u-no-font-size" role="tablist">
<li class="u-no-padding u-no-margin">
<a class="content-tabs__tab" href="/rankings/mens/overview">Men's</a>
</li>
<li class="u-no-padding u-no-margin">
<a class="content-tabs__tab content-tabs__tab--active" href="/rankings/womens/overview">Women's</a>
</li>
</ul>
</nav>
</div>
<div class="tab-content">
<h3 class="rankings-menu__title">Men's</h3>
<ul class="rankings-menu__list">
<li class="rankings-menu__item">
<a class="rankings-menu__link" href="/rankings/mens/overview">Overview<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg></a>
</li>
<li class="rankings-menu__item">
<a class="rankings-menu__link" href="/rankings/mens/team-rankings">Team Rankings<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg></a>
</li>
<li class="rankings-menu__item">
<a class="rankings-menu__link" href="/rankings/mens/player-rankings">Player Rankings<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg></a>
</li>
<li class="rankings-menu__item">
<a class="rankings-menu__link" href="/rankings/mens/player-rankings/comparison">Player Comparison<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg></a>
</li>
<li class="rankings-menu__item">
<a class="rankings-menu__link" href="/rankings/mens/rankings-predictor/">Team Rankings Predictor<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg></a>
</li>
<li class="rankings-menu__item">
<a class="rankings-menu__link" href="/rankings/about">About the Rankings<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg></a>
</li>
<li class="rankings-menu__item">
<a class="rankings-menu__link" href="/rankings/faqs">Player Rankings FAQs<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg></a>
</li>
</ul>
</div>
<div class="active tab-content">
<h3 class="rankings-menu__title">Women's</h3>
<ul class="rankings-menu__list">
<li class="rankings-menu__item rankings-menu__item--user-selection js-team-btn">
<a class="rankings-menu__link js-fav-team-link" href="#">Select your team</a>
<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg>
<div class="rankings-menu__notch js-notch"></div>
<svg class="rankings-menu__notch-icon icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-star" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg>
<li class="rankings-menu__item">
<a class="rankings-menu__link" href="/rankings/womens/overview">Overview<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg></a>
</li>
<li class="rankings-menu__item">
<a class="rankings-menu__link" href="/rankings/womens/team-rankings">Team Rankings<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg></a>
</li>
<li class="rankings-menu__item">
<a class="rankings-menu__link" href="/rankings/womens/player-rankings">Player Rankings<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg></a>
</li>
<li class="rankings-menu__item">
<a class="rankings-menu__link" href="/rankings/about">About the Rankings<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg></a>
</li>
<li class="rankings-menu__item">
<a class="rankings-menu__link" href="/rankings/faqs">Player Rankings FAQs<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg></a>
</li>
<li class="rankings-menu__item">
<a class="rankings-menu__link" href="/rankings/womens-t20i-faq">T20I Team Rankings FAQs<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-right" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg></a>
</li>
</li></ul>
</div>
</div>
</div>
</div>
</div>
<div class="l-sticky-side-nav__content">
<section class="ranking-format-menu">
<div class="wrapper wrapper--sticky">
<div class="col-12">
<div class="content-tabs">
<ul class="inline-list">
<li class="ranking-format-menu__item">
<a class="content-tabs__tab content-tabs__tab--active" href="../odi">ODI</a>
</li>
<li class="ranking-format-menu__item">
<a class="content-tabs__tab" href="../t20i">T20i</a>
</li>
</ul>
</div>
</div>
</div>
</section>
<div class="wrapper wrapper--sticky">
<div class="col-12">
<section class="widget rankings-widget player-rankings-full-table" data-filter="RANKINGS_YEAR,RANKINGS_MONTH,RANKINGS_DAY" data-format="wodi" data-script="icc_rankings" data-widget="player-rankings-filtered">
<div class="rankings-filters">
<h5 class="rankings-filters__title">Look back through the MRF Tyres Rankings Archive using the date selector below:</h5>
<div class="rankings-filters__content">
<div class="rankings-filters__options" data-content-filter=""></div>
<div class="rankings-filters__btns">
<button class="rankings-filters__filter-button js-rankings-filter-button disabled">Apply</button>
<button class="rankings-filters__reset js-rankings-filter-reset u-hide">Reset</button>
</div>
</div>
</div>
<div class="rankings-block__title-container">
<div class="rankings-block__type t-wodi">wodi</div>
<h4>Women's ODI All-Rounder Rankings</h4>
<div class="share share-- share--vertical share--small" data-widget="share">
<div class="share__container">
<div class="share__btn js-share-btn">
<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-share" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg>
<div class="share__title">Share</div>
</div>
<ul class="share__list">
<li class="share__item share__item--facebook js-social-option" data-social-service="facebook" role="button" tabindex="0">
<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-facebook" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg>
</li>
<li class="share__item share__item--twitter js-social-option" data-social-service="twitter" role="button" tabindex="0">
<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-twitter" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg>
</li>
<li class="share__item share__item--messenger u-show-tablet js-social-option" data-social-service="facebookMessenger" role="buttn" tabindex="0">
<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-facebook-messenger" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg>
</li>
<li class="share__item share__item--whatsapp u-show-tablet js-social-option" data-social-service="whatsapp" role="button" tabindex="0">
<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-whatsapp" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg>
</li>
<li class="share__item share__item--url u-hide-tablet js-copy-button" role="button" tabindex="0">
<svg class="icon"><use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-url" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg>
<div class="share__copy-message js-copy-message">URL Copied</div>
</li>
</ul>
</div>
</div>
</div>
<div class="rankings-block__meta-container">
<div class="rankings-block__last-updated">Last Updated - 18. September 2022</div>
</div>
<div ,="" class="rankings-block__container full" data-cricket-role="all_round" data-cricket-scope="wodi" data-full="true" data-page-size="20" data-player-rankings-card="" data-title="Women's ODI All-Rounder Rankings">
<table class="table rankings-table">
<thead>
<tr class="table-head">
<th class="table-head__cell u-text-right">Pos</th>
<th class="table-head__cell">Player</th>
<th class="table-head__cell">Team</th>
<th class="table-head__cell table-head__cell--rating">Rating</th>
<th class="table-head__cell u-text-right u-hide-phablet">Career Best Rating</th>
</tr>
</thead>
<tr class="rankings-block__banner">
<td class="rankings-block__position">
<div class="rankings-block__pos-container">
<span class="rankings-block__pos-number">
1
</span>
<div class="ranking-pos up">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-up" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(1)</span>
<span class="ranking-pos__tooltip">This player has moved up in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="rankings-block__top-player-container">
<div class="u-flex-center u-text-left">
<div class="rankings-block__player-image-container rankings-block__player-image-container--large">
<a href="/rankings/womens/player-rankings/471">
<img alt="Player Image" class="rankings-block__player-image image-missing" data-error="true" data-player="471" data-size="130x150" data-widget="player-image" src="//resources.pulse.icc-cricket.com/players/130x150/Photo-Missing.png"/>
</a>
</div>
<div>
<a href="/rankings/womens/player-rankings/471"><div class="rankings-block__banner--name-large">Ellyse Perry</div></a>
</div>
</div>
</td>
<td>
<div class="rankings-block__banner--nationality">
<div class="flag-15 AUS"></div>
<span class="rankings-block__banner--nation"></span>AUS
</div>
</td>
<td class="u-text-left">
<div class="rankings-block__banner--rating">374</div>
</td>
<td class="u-text-right u-hide-phablet u-overflow-hidden">
<div class="rankings-block__career-best">
<span class="rankings-block__career-best-text">
548 v West Indies, 11/09/2019
</span>
<span class="circle-branding circle-branding--full-table circle-branding--top"></span>
<span class="circle-branding circle-branding--full-table circle-branding--bottom"></span>
</div>
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
2
</span>
<div class="ranking-pos down">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-down" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(1)</span>
<span class="ranking-pos__tooltip">This player has moved down in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/1800">Natalie Sciver</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo ENG"></span>
<span class="table-body__logo-text">ENG</span>
</td>
<td class="table-body__cell rating">372</td>
<td class="table-body__cell u-text-right u-hide-phablet">
395 v South Africa, 11/07/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
3
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/424">Marizanne Kapp</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo SA"></span>
<span class="table-body__logo-text">SA</span>
</td>
<td class="table-body__cell rating">349</td>
<td class="table-body__cell u-text-right u-hide-phablet">
419 v West Indies, 10/09/2021
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
4
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/3126">Hayley Matthews</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo WI"></span>
<span class="table-body__logo-text">WI</span>
</td>
<td class="table-body__cell rating">339</td>
<td class="table-body__cell u-text-right u-hide-phablet">
365 v India, 12/03/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
5
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/3756">Amelia Kerr</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo NZ"></span>
<span class="table-body__logo-text">NZ</span>
</td>
<td class="table-body__cell rating">336</td>
<td class="table-body__cell u-text-right u-hide-phablet">
339 v South Africa, 17/03/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
6
</span>
<div class="ranking-pos up">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-up" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(1)</span>
<span class="ranking-pos__tooltip">This player has moved up in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/3192">Deepti Sharma</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo IND"></span>
<span class="table-body__logo-text">IND</span>
</td>
<td class="table-body__cell rating">271</td>
<td class="table-body__cell u-text-right u-hide-phablet">
397 v South Africa, 09/10/2019
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
7
</span>
<div class="ranking-pos down">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-down" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(1)</span>
<span class="ranking-pos__tooltip">This player has moved down in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/4128">Ashleigh Gardner</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo AUS"></span>
<span class="table-body__logo-text">AUS</span>
</td>
<td class="table-body__cell rating">270</td>
<td class="table-body__cell u-text-right u-hide-phablet">
279 v West Indies, 30/03/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
8
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/468">Jess Jonassen</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo AUS"></span>
<span class="table-body__logo-text">AUS</span>
</td>
<td class="table-body__cell rating">246</td>
<td class="table-body__cell u-text-right u-hide-phablet">
308 v West Indies, 11/09/2019
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
9
</span>
<div class="ranking-pos up">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-up" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(2)</span>
<span class="ranking-pos__tooltip">This player has moved up in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/562">Jhulan Goswami</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo IND"></span>
<span class="table-body__logo-text">IND</span>
</td>
<td class="table-body__cell rating">219</td>
<td class="table-body__cell u-text-right u-hide-phablet">
308 v Australia, 02/02/2016
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
10
</span>
<div class="ranking-pos up">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-up" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(2)</span>
<span class="ranking-pos__tooltip">This player has moved up in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/3337">Sophie Ecclestone</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo ENG"></span>
<span class="table-body__logo-text">ENG</span>
</td>
<td class="table-body__cell rating">217</td>
<td class="table-body__cell u-text-right u-hide-phablet">
217 v South Africa, 31/03/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
11
</span>
<div class="ranking-pos down">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-down" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(2)</span>
<span class="ranking-pos__tooltip">This player has moved down in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/547">Katherine Brunt</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo ENG"></span>
<span class="table-body__logo-text">ENG</span>
</td>
<td class="table-body__cell rating">215</td>
<td class="table-body__cell u-text-right u-hide-phablet">
296 v Australia, 03/02/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
12
</span>
<div class="ranking-pos down">
<svg class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-chevron-down" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="ranking-pos__change-amount">(2)</span>
<span class="ranking-pos__tooltip">This player has moved down in the rankings since the previous rankings update</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/573">Stafanie Taylor</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo WI"></span>
<span class="table-body__logo-text">WI</span>
</td>
<td class="table-body__cell rating">207</td>
<td class="table-body__cell u-text-right u-hide-phablet">
559 v New Zealand, 10/10/2013
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
13
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/478">Sophie Devine</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo NZ"></span>
<span class="table-body__logo-text">NZ</span>
</td>
<td class="table-body__cell rating">202</td>
<td class="table-body__cell u-text-right u-hide-phablet">
305 v Australia, 05/10/2020
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
14
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/1830">Rumana Ahmed</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo BAN"></span>
<span class="table-body__logo-text">BAN</span>
</td>
<td class="table-body__cell rating">201</td>
<td class="table-body__cell u-text-right u-hide-phablet">
198 v South Africa, 05/03/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
15
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/636">Nida Dar</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo PAK"></span>
<span class="table-body__logo-text">PAK</span>
</td>
<td class="table-body__cell rating">200</td>
<td class="table-body__cell u-text-right u-hide-phablet">
206 v Sri Lanka, 03/06/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
16
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/1013">Chloe-Lesleigh Tryon</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo SA"></span>
<span class="table-body__logo-text">SA</span>
</td>
<td class="table-body__cell rating">197</td>
<td class="table-body__cell u-text-right u-hide-phablet">
197 v England, 18/07/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
17
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/1818">Salma Khatun</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo BAN"></span>
<span class="table-body__logo-text">BAN</span>
</td>
<td class="table-body__cell rating">178</td>
<td class="table-body__cell u-text-right u-hide-phablet">
170 v Australia, 25/03/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
18
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/600">Chamari Athapaththu</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo SL"></span>
<span class="table-body__logo-text">SL</span>
</td>
<td class="table-body__cell rating">178</td>
<td class="table-body__cell u-text-right u-hide-phablet">
187 v South Africa, 17/02/2019
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
19
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/428">Sune Luus</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo SA"></span>
<span class="table-body__logo-text">SA</span>
</td>
<td class="table-body__cell rating">171</td>
<td class="table-body__cell u-text-right u-hide-phablet">
223 v Ireland, 17/06/2022
</td>
</tr>
<tr class="table-body">
<td class="table-body__cell table-body__cell--position u-text-right">
<div class="rankings-table__pos-container">
<span class="rankings-table__pos-number">
20
</span>
<div class="ranking-pos no-change">
<span class="ranking-pos__no-change-line"></span>
<span class="ranking-pos__change-amount">(0)</span>
</div>
</div>
</td>
<td class="table-body__cell rankings-table__name name">
<a href="/rankings/womens/player-rankings/559">Harmanpreet Kaur</a>
</td>
<td class="table-body__cell nationality-logo rankings-table__team">
<span class="flag-15 table-body_logo IND"></span>
<span class="table-body__logo-text">IND</span>
</td>
<td class="table-body__cell rating">160</td>
<td class="table-body__cell u-text-right u-hide-phablet">
174 v South Africa, 14/03/2021
</td>
</tr>
</table>
</div>
</section>
</div>
</div>
</div>
</div>
</main>
<footer class="footer" role="contentinfo">
<section class="partners">
<div class="partners__top-level">
<section class="partners__container">
<div class="partners__list partners__list--large">
<div class="partners__item">
<a aria-label="Nissan" class="partners__link" href="http://track.adform.net/C/?bn=18235072" target="_blank" title="Nissan">
<img alt="Nissan" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/06/30/ceabcea6-36b3-40c5-ab00-7ad8b66ecd73/nissan-2.png?width=142&height=46">
</img></a>
</div>
<div class="partners__item">
<a aria-label="Oppo" class="partners__link" href="http://track.adform.net/C/?bn=18236015" target="_blank" title="Oppo">
<img alt="Oppo" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/06/30/ea209fd5-065d-47aa-8ba7-fe70a3bcf8aa/Frame-233.png?width=142&height=46">
</img></a>
</div>
<div class="partners__item">
<a aria-label="MRF Tyres" class="partners__link" href="http://track.adform.net/C/?bn=18235782" title="MRF Tyres">
<img alt="MRF Tyres" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/06/30/c1afea15-4875-4cba-9710-547729daa841/Frame-235.png?width=142&height=46"/>
</a>
</div>
<div class="partners__item">
<a aria-label="Booking" class="partners__link" href="https://www.booking.com/" target="_blank" title="Booking">
<img alt="Booking" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/06/30/8bb6e96d-2b69-4d8e-acc0-568602baba2d/Frame-234.png?width=142&height=46"/>
</a>
</div>
<div class="partners__item">
<a aria-label="BYJU" class="partners__link" href="https://byjus.com/" target="_blank" title="BYJU">
<img alt="BYJU" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/06/30/9b3ea6a2-25f4-478e-b8aa-0e1b7d3d0e2a/Frame-237.png?width=142&height=46"/>
</a>
</div>
<div class="partners__item">
<a aria-label="Emirates" class="partners__link" href="http://track.adform.net/C/?bn=18236184" title="Emirates">
<img alt="Emirates" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/06/30/d9fb726d-2cbd-41c8-9aaf-bd94f37a8e4a/Frame-236.png?width=142&height=46"/>
</a>
</div>
</div>
</section>
</div>
<div class="partners__block">
<section class="partners__container">
<div class="partners__list partners__list--medium">
<div class="partners__item">
<a aria-label="Bira 91" class="partners__link" href="https://www.bira91.com/" target="_blank" title="Bira 91">
<img alt="Bira 91" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/06/30/587180d3-1347-4152-93ab-318460743d55/Frame-239.png?width=95&height=31"/>
</a>
</div>
<div class="partners__item">
<a aria-label="Eatfit" class="partners__link" href="https://www.eatfit.in/" target="_blank" title="Eatfit">
<img alt="Eatfit" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/07/04/674c634d-7f3c-4dfc-989c-5d72fed70d79/eatfit.png?width=95&height=31"/>
</a>
</div>
<div class="partners__item">
<a aria-label="Coca Cola" class="partners__link" href="https://www.coca-colaindia.com/brands/thums-up" title="Coca Cola">
<img alt="Coca Cola" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/08/24/8f5e6ad2-0dfe-4e99-896c-20b034763dec/TU-Taste-The-Thunder-Logo.png?width=95&height=31"/>
</a>
</div>
<div class="partners__item">
<a aria-label="Upstox" class="partners__link" href="https://upstox.com/" target="_blank" title="Upstox">
<img alt="Upstox" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/06/30/70fab62f-38e2-47bb-8a3b-ffa437b1c6ac/Frame-240.png?width=95&height=31"/>
</a>
</div>
<div class="partners__item">
<a aria-label="PostPe" class="partners__link" href="https://ftx.com/" target="_blank" title="PostPe">
<img alt="PostPe" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/06/30/4c2e8d25-2744-4a26-9345-94cfafd132d3/Frame-243.png?width=95&height=31"/>
</a>
</div>
<div class="partners__item">
<a aria-label="FTX" class="partners__link" href="https://ftx.com/" target="_blank" title="FTX">
<img alt="FTX" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/06/30/8055a53b-e8d8-4622-9d0d-a833d86bff58/Frame-242.png?width=95&height=31"/>
</a>
</div>
<div class="partners__item">
<a aria-label="NIUM" class="partners__link" href="https://www.nium.com/" target="_blank" title="NIUM">
<img alt="NIUM" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/06/30/8eb1e98b-a9dc-4db8-84b0-4635582f96b0/nium.png?width=95&height=31"/>
</a>
</div>
</div>
</section>
<section class="partners__container">
<div class="partners__list partners__list--medium">
<div class="partners__item">
<a aria-label="Royal Stag" class="partners__link" href="https://www.pernod-ricard.com/en/brands/our-brands/royal-stag/" target="_blank" title="Royal Stag">
<img alt="Royal Stag" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/06/30/146eb588-7d36-4825-b06a-72a2533af1f0/Frame-250.png?width=95&height=31"/>
</a>
</div>
<div class="partners__item">
<a aria-label="Fantasy Cricket" class="partners__link" href="https://www.dream11.com/fantasy-cricket" target="_blank" title="Fantasy Cricket">
<img alt="Fantasy Cricket" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/06/30/d08b4b92-a224-4484-8269-22184d633d74/Frame-248.png?width=95&height=31"/>
</a>
</div>
<div class="partners__item">
<a aria-label="Jacobs Creek" class="partners__link" href="https://www.jacobscreek.com/en-gb" target="_blank" title="Jacobs Creek">
<img alt="Jacobs Creek" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/06/30/f44c1356-91b7-49c2-bb2a-8db9cd20133d/Jacobs-.png?width=95&height=31"/>
</a>
</div>
<div class="partners__item">
<a aria-label="FanCraze" class="partners__link" href="https://www.fancraze.com" title="FanCraze">
<img alt="FanCraze" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/06/30/51c3576a-0e91-4246-8d36-85fc5037cec6/Frame-249.png?width=95&height=31"/>
</a>
</div>
</div>
</section>
</div>
<div class="partners__block partners__block--inline">
<section class="partners__container">
<h3 class="partners__title">BROADCAST PARTNER</h3>
<div class="partners__list partners__list--large">
<div class="partners__item">
<a aria-label="Star Sports" class="partners__link" href="http://track.adform.net/C/?bn=18238489" target="_blank" title="Star Sports">
<img alt="Star Sports" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/06/30/6becb07e-9e85-4221-a4cf-43d1b58c5e46/star-sports.png?width=142&height=46"/>
</a>
</div>
</div>
</section>
<section class="partners__container">
<h3 class="partners__title">SOCIAL RESPONSIBILITY</h3>
<div class="partners__list partners__list--large">
<div class="partners__item">
<a aria-label="Cricket for Good" class="partners__link" href="https://www.icc-cricket.com/about/the-icc/cricket-for-good" target="_blank" title="Cricket for Good">
<img alt="Cricket for Good" class="partners__image" src="https://resources.pulse.icc-cricket.com/photo-resources/2022/06/30/66d0bd38-4492-4742-ae2f-a5a2f3ea7032/cricket4good.png?width=142&height=46"/>
</a>
</div>
</div>
</section>
</div>
</section>
<div class="footer__app-promo u-show-tablet">
<section class="app-promo">
<div class="app-promo__top">
<span class="app-promo__icon icn icn-app-icon"></span>
<span class="app-promo__text">Download the official ICC App today</span>
</div>
<div class="app-promo__bottom">
<a class="app-promo__cta icn icn-apple-badge" href="https://itunes.apple.com/gb/app/icc-world-twenty20-india-2016/id956440606?mt=8" target="_blank"></a>
<a class="app-promo__cta icn icn-android-badge" href="https://play.google.com/store/apps/details?id=com.pl.cwc_2015&hl=en_GB" target="_blank"></a>
</div>
</section>
</div>
<div class="footer__main">
<nav class="footer__links">
<a class="footer__link" href="http://www.icc-cricket.com/about/the-icc/legal-notices/website-terms-of-use">
Legal Notice
</a>
<a class="footer__link" href="http://www.icc-cricket.com/about/the-icc/legal-notices/privacy-policy">
Privacy Policy
</a>
</nav>
<div class="footer__social">
<nav class="social-follow">
<h6 class="social-follow__title">Follow Us</h6>
<a class="social-follow__item social-follow__item--facebook" href="https://www.facebook.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-facebook-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.facebook</span></a>
<a class="social-follow__item social-follow__item--twitter" href="https://twitter.com/ICC" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-twitter-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.twitter</span>
</a>
<a class="social-follow__item social-follow__item--instagram" href="https://www.instagram.com/icc/" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-instagram-new-hp" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.instagram</span>
</a>
<a class="social-follow__item social-follow__item--youtube" href="https://www.youtube.com/user/CricketICC?cbrd=1" target="_blank">
<svg aria-hidden="true" class="icon">
<use xlink:href="/resources/prod/v8.28.1/i/svg-output/icons.svg#icn-youtube-color" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
<span class="u-screen-reader">label.follow.youtube</span>
</a>
</nav>
<svg aria-hidden="true" focusable="false" style="width:0;height:0;position:absolute;">
<lineargradient gradienttransform="rotate(45)" id="instagram" x2="1" y2="1">
<stop offset="0%" stop-color="#4c68d6"></stop>
<stop offset="33%" stop-color="#b22d98"></stop>
<stop offset="65%" stop-color="#e85a50"></stop>
<stop offset="100%" stop-color="#fbbb59"></stop>
</lineargradient>
</svg>
</div>
</div>
<div class="footer__corporate">
<span class="footer__copyright">2022 © International Cricket Council FZ LLC</span>
</div>
</footer>
<script src="/resources/prod/v8.28.1/scripts/vendors.min.js"></script>
<script src="/resources/prod/v8.28.1/scripts/client.min.js"></script>
<script src="https://sso.fanaccount.icc-cricket.com/auth/js/keycloak.js"></script>
<!--[if IE]> -->
<script type="text/javascript">
svg4everybody();
</script>
<!-- <![endif]-->
</body>
</html>
Top_AllRounder=soup.find_all('div',class_="rankings-block__banner--name-large")
Top_AllRounder
All_Rounders=soup.find_all('td',class_="table-body__cell rankings-table__name name")[0:9]
All_Rounders
print(Top_AllRounder+All_Rounders)
print()
[<div class="rankings-block__banner--name-large">Ellyse Perry</div>, <td class="table-body__cell rankings-table__name name"> <a href="/rankings/womens/player-rankings/1800">Natalie Sciver</a> </td>, <td class="table-body__cell rankings-table__name name"> <a href="/rankings/womens/player-rankings/424">Marizanne Kapp</a> </td>, <td class="table-body__cell rankings-table__name name"> <a href="/rankings/womens/player-rankings/3126">Hayley Matthews</a> </td>, <td class="table-body__cell rankings-table__name name"> <a href="/rankings/womens/player-rankings/3756">Amelia Kerr</a> </td>, <td class="table-body__cell rankings-table__name name"> <a href="/rankings/womens/player-rankings/3192">Deepti Sharma</a> </td>, <td class="table-body__cell rankings-table__name name"> <a href="/rankings/womens/player-rankings/4128">Ashleigh Gardner</a> </td>, <td class="table-body__cell rankings-table__name name"> <a href="/rankings/womens/player-rankings/468">Jess Jonassen</a> </td>, <td class="table-body__cell rankings-table__name name"> <a href="/rankings/womens/player-rankings/562">Jhulan Goswami</a> </td>, <td class="table-body__cell rankings-table__name name"> <a href="/rankings/womens/player-rankings/3337">Sophie Ecclestone</a> </td>]
Team=soup.find_all('span',class_="rankings-block__banner--nation")
Team
Teams=soup.find_all('span',class_="table-body__logo-text")[0:9]
Teams
print(Team+Teams)
print()
[<span class="rankings-block__banner--nation"></span>, <span class="table-body__logo-text">ENG</span>, <span class="table-body__logo-text">SA</span>, <span class="table-body__logo-text">WI</span>, <span class="table-body__logo-text">NZ</span>, <span class="table-body__logo-text">IND</span>, <span class="table-body__logo-text">AUS</span>, <span class="table-body__logo-text">AUS</span>, <span class="table-body__logo-text">IND</span>, <span class="table-body__logo-text">ENG</span>]
Rating=soup.find_all('div',class_="rankings-block__banner--rating")
Rating
Ratings=soup.find_all('td',class_='table-body__cell rating')
Ratings
print(Rating+Ratings)
print()
[<div class="rankings-block__banner--rating">374</div>, <td class="table-body__cell rating">372</td>, <td class="table-body__cell rating">349</td>, <td class="table-body__cell rating">339</td>, <td class="table-body__cell rating">336</td>, <td class="table-body__cell rating">271</td>, <td class="table-body__cell rating">270</td>, <td class="table-body__cell rating">246</td>, <td class="table-body__cell rating">219</td>, <td class="table-body__cell rating">217</td>, <td class="table-body__cell rating">215</td>, <td class="table-body__cell rating">207</td>, <td class="table-body__cell rating">202</td>, <td class="table-body__cell rating">201</td>, <td class="table-body__cell rating">200</td>, <td class="table-body__cell rating">197</td>, <td class="table-body__cell rating">178</td>, <td class="table-body__cell rating">178</td>, <td class="table-body__cell rating">171</td>, <td class="table-body__cell rating">160</td>]